/* Header */
/*****************Navbar*********************/

.site-header {
  padding: 35px 0px;
}
.my-logo-style {
  height: 40px;
}
.main-menu {
  background-color: #82828226;
  padding: 15px 28px;
  border-radius: 10px;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 5px 28px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #f8fcf7;
}

.active-nav {
  position: absolute;
  bottom: 15px;
  height: 11px;
  background-color: #b7ff05;
  border-radius: 5px;
  z-index: 1;
  z-index: -1;
  transition: all 0.3s ease;
  width: 0;
  left: 0;
}
.navbar-toggle {
  display: none;
}
/* Footer */
.glass-footer {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  background-color: rgba(33, 37, 41, 0.5);
  box-shadow: inset 0 0 3vw 0vw #b7ff0538;
  border: 1px solid #b7ff0547;
  border-radius: 40px;
  margin: 35px auto;
}

.blur-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #b7ff05 32%, rgba(183, 255, 5, 0) 70%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  transition: transform 0.5s ease;
}

.footer-top-content {
  position: relative;
  z-index: 2;
  padding: 50px 40px;
}
footer ul {
  padding: 0px;
}

footer li {
  list-style: none;
  font-size: 18px;
  font-weight: 300;
  line-height: 60px;
}

.footer-top-content .footer-logo {
  height: 150px;
}

.footer-bottom-content {
  background-color: rgba(33, 37, 41, 0.7);
  border-top: 1px solid rgba(183, 255, 5, 0.4);
  margin-top: 30px;
  padding: 20px 40px;
}
.icon-1 {
  margin-right: 5px;
  color: #b7ff05;
}
.social-link .arrow {
  margin-left: 5px;
  display: inline-block;
  color: #b7ff05;
  transform: rotate(-45deg) translate(2px, -2px);

  transition: transform 0.3s ease;
}

.social-link:hover .arrow {
  transform: rotate(0deg);
}

.footer-bottom-content li a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
  text-decoration: none;
  font-weight: 500;
  margin-left: 20px;
  position: relative;
  transition: color 0.3s;
}
/*************Mobile menu**************/
@media (max-width: 991px) {
	.site-header {
    padding: 10px;
}
  /* Hamburger button styling */
  .navbar-toggle {
    position: relative;
    display: block;
    left: 0;
    z-index: 1051;
    background: none;
    border: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
  }
  .navbar-toggle .line {
    fill: none;
    transition-delay: 400ms, 0;
    transition-property: stroke, stroke-dasharray, stroke-dashoffset;
    transition-timing-function: ease;
    transition-duration: 400ms;
    stroke: #b7ff05;
    stroke-width: 5.5;
    stroke-linecap: round;
  }
  .navbar-toggle .line.top {
    stroke-dasharray: 40 139;
  }
  .navbar-toggle .line.bottom {
    stroke-dasharray: 20 180;
    stroke-dashoffset: -20px;
  }
  .navbar-toggle.active {
    transform: rotate(45deg);
  }
  .navbar-toggle.active .line {
    stroke: #171717;
  }
  .navbar-toggle.active .line.top {
    stroke-dashoffset: -98px;
  }
  .navbar-toggle.active .line.bottom {
    stroke-dashoffset: -138px;
  }
  .navbar-toggle:not(.active):hover .line.bottom {
    stroke-dasharray: 40 180;
    stroke-dashoffset: 0px;
  }

  /* Accompanying circle animation */
  #bg-circle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    background: #b7ff05;
    border-radius: 50%;
    transform: scale(0);
    z-index: 1;
  }
  .navbar-expand-lg .navbar-collapse {
    display: block !important;
  }
  .main-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 3rem 1rem;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    color: #171717;
    font-size: 24px;
    padding: 1rem 0;
    text-align: center;
  }
	.footer-top-content .footer-logo {
    height: 90px;
}
}
