:root {
  --header-height: 72px;
  --color-logo-1: #f1592e;
}

html {
  scroll-behavior: smooth;
}

body {
  visibility: hidden;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  background: url('../images/body-bg.jpg') center;
}

.container-main {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.bg-gradient {
  background: linear-gradient(to bottom, #0e0529, #1e0b56);
}

.is-menu-active {
  transform: translateX(0) !important;
}

.nav-menu a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s linear;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #f1592e;
  transition: width 0.3s ease;
}
.nav-menu a.menu-active::after {
  width: 100%;
}

.glow-effect {
  animation: glow 2.5s ease-in-out infinite;
}
@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 6px #070789);
  }
  50% {
    filter: drop-shadow(0 0 20px #070789);
  }
}
@keyframes ringFade {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

.shadow-pop-br {
  /* box-shadow: 8px 8px #3e3e3e; */
  box-shadow: 8px 8px #fff;
}

.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}

.c-button {
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.c-button--gooey {
  border: 1px solid #f1592e;
  position: relative;
  transition: all 700ms ease;
}
.c-button--gooey .c-button__blobs {
  height: 100%;
  filter: url(#goo);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -3px;
  right: -1px;
  z-index: -1;
}
.c-button--gooey .c-button__blobs div {
  background-color: #f1592e;
  width: 34%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  transform: scale(1.4) translateY(125%) translateZ(0);
  transition: all 700ms ease;
}
.c-button--gooey .c-button__blobs div:nth-child(1) {
  left: -5%;
}
.c-button--gooey .c-button__blobs div:nth-child(2) {
  left: 30%;
  transition-delay: 60ms;
}
.c-button--gooey .c-button__blobs div:nth-child(3) {
  left: 66%;
  transition-delay: 25ms;
}
.c-button--gooey:hover .c-button__blobs div {
  transform: scale(1.4) translateY(0) translateZ(0);
}
