/* Header */
.header#header {
  box-shadow: 0 6px 14px rgba(14, 52, 75, 0.25);
  min-height: 70px;
  position: fixed;
  z-index: 99;
}

.header .header-logo img {
  width: auto;
  max-width: 200px;
}

.header .header-menubar .menu-navigationbar {
  -webkit-column-gap: 1rem;
  column-gap: 1rem;
}

.header .header-menubar .menu-navigationbar li a {
  align-items: center;
  background: transparent;
  border-radius: 12px;
  display: flex;
  height: 40px;
  justify-content: center;
  line-height: 18px;
  min-width: 80px;
  padding: 0 1rem;
  transition: all 0.25s ease;
  font-size: 14px;
  font-weight: 500;
}

.header .header-menubar .menu-navigationbar li a.active,
.header .header-menubar .menu-navigationbar li a:hover {
  opacity: 100% !important;
}

.header .header-menubar .menu-navigationbar li a.active:after {
  background-color: var(--primary-color);
  border-radius: 12px;
  bottom: 0;
  content: "";
  height: 7px;
  position: absolute;
  width: 20px;
}

/* Toggle */
.header .header-menubar .toggle {
  cursor: pointer;
  display: flex;
}
.header .header-menubar svg {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--primary-color);
  border-radius: 50%;
}

.header .header-menubar .active svg {
  transform: rotate(90deg);
}

.header .header-menubar path {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header .header-menubar path:nth-child(1) {
  transform-origin: 36% 40%;
}

.header .header-menubar path:nth-child(2) {
  stroke-dasharray: 29 299;
}

.header .header-menubar path:nth-child(3) {
  transform-origin: 35% 63%;
}

.header .header-menubar path:nth-child(4) {
  stroke-dasharray: 29 299;
}

.header .header-menubar path:nth-child(5) {
  transform-origin: 61% 52%;
}

.header .header-menubar path:nth-child(6) {
  transform-origin: 62% 52%;
}

.header .header-menubar .active path:nth-child(1) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}

.header .header-menubar .active path:nth-child(2) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}

.header .header-menubar .active path:nth-child(3) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.header .header-menubar .active path:nth-child(4) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}

.header .header-menubar .active path:nth-child(5) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.header .header-menubar .active path:nth-child(6) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}

.mobile-menubar {
  top: 70px;
  transform: scale(0);
  background-color: var(--white-color);
  border-top: 2px solid var(--primary-color);
  transition: all 0.25s ease;
  box-shadow: 0 6px 14px rgba(14, 52, 75, 0.25);
}

.mobile-menubar.active {
  transform: scale(1);
}

.menubar-mobile a {
  align-items: center;
  display: flex;
  font-size: 14px;
}

.menubar-mobile .mobileCircle {
  align-items: center;
  background: rgba(32, 173, 228, 0.1);
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-right: 0.5rem;
  min-width: 40px;
  width: 40px;
}

.menubar-mobile a.active .mobileCircle {
  background: var(--primary-color);
}

.menubar-mobile a.active .mobileCircle svg [fill="var(--primary-color)"] {
  fill: #fff;
}

.menubar-mobile a.active .mobileCircle svg [stroke="var(--primary-color)"] {
  stroke: #fff;
}
/* Footer */
footer {
  font-size: 14px;
  box-shadow: 0px -8px 20px 0px rgba(0, 0, 0, 0.15);
}

.footer .footer-logo {
  max-height: 50px;
}

.footer .social-media li a {
  width: 34px;
  height: 34px;
  transition: all 0.5s ease;
  border: 1.5px solid transparent !important;
  font-size: 18px;
}

.footer .social-media li:hover a {
  border: 1.5px solid var(--primary-color) !important;
  background-color: transparent !important;
  color: var(--primary-color) !important;
}

.footer .back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-color);
  box-shadow: 0 0.6em 1em 0.2em rgba(32, 173, 228, 0.2);
  transform: translateY(0%);
  transition: ease-out 300ms;
  transition-property: transform, background-color, box-shadow opacity;
  opacity: 0;
}

.footer .back-to-top.active {
  opacity: 1;
  cursor: pointer;
}

.footer .back-to-top:hover {
  box-shadow: 0 0.6em 1em 0.2em rgba(32, 173, 228, 0.3);
}

.back-to-top i {
  -webkit-animation: slide-top-up 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    infinite alternate-reverse both;
  animation: slide-top-up 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
    alternate-reverse both;
}

@keyframes slide-top-up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-10px);
  }
}
/* Footer End */
