:root {
  --bg: #000000;
  --color: #b4bcd0;
  --accent: #5c67ff;
  --accent-muted: rgba(92, 103, 255, 0.2);
  --border-muted: rgba(92, 103, 255, 0.3);
  --text-gradient: linear-gradient(
    125deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.69) 40%,
    rgba(255, 255, 255, 0.2) 100%
  );

  --shadow-size: 75;
  --shadow-left: -80px;
  --shadow-top: -80px;
}

::-moz-selection {
  color: var(--accent);
}

::selection {
  color: var(--accent);
}

.accent {
  color: var(--accent)
}

.cursor {
  pointer-events: none;
  position: fixed;
  display: block;
  border-radius: 0;
  transform-origin: center center;
  mix-blend-mode: difference;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-filter: url("#goo");
          filter: url("#goo");
}
.cursor span {
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 20px;
  background-color: #fff;
  transform-origin: center center;
  transform: translate(-50%, -50%);
}

a,
a:hover {
  text-decoration: none;
}

body {
  position: relative;
  background-color: var(--bg);
  color: var(--color);
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  text-rendering: optimizelegibility;
  -moz-text-size-adjust: none;
  overflow-x: hidden;
  max-width: 100vw;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.custom-toast {
  position: fixed;
  width: 350px;
  max-width: 100%;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #232339;
  padding: 1rem 1rem 1rem 3rem;
  color: var(--color);
  border-radius: 12px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  animation: fadeOut 2.5s both ease-out;
  animation-delay: 1s;
  z-index: 10;
}

.custom-toast:before {
  position: absolute;
  content: '';
  top: calc(50% - 0.75rem);
  left: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.custom-toast.success:before {
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' fill='none' stroke='%235c67ff' stroke-width='1.5' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}

.custom-toast.error:before {
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' fill='none' stroke='%23ff234c' stroke-width='1.5' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}

.btn {
  display: block;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  border: 1px solid transparent;
}

@-webkit-keyframes arrow {
  0% {
    transform: translate(-100%, -50%) scale(1, 0) rotate(50deg) skewY(-10deg);
  }

  33% {
    transform: translate(-60%, -50%) scale(1, 0) rotate(50deg) skewY(-10deg);
  }

  100% {
    transform: translate(0, -50%) scale(1) rotate(50deg) skewY(-10deg);
  }
}

@keyframes arrow {
  0% {
    transform: translate(-100%, -50%) scale(1, 0) rotate(50deg) skewY(-10deg);
  }

  33% {
    transform: translate(-60%, -50%) scale(1, 0) rotate(50deg) skewY(-10deg);
  }

  100% {
    transform: translate(0, -50%) scale(1) rotate(50deg) skewY(-10deg);
  }
}

@-webkit-keyframes arrow-reverse {
  0% {
    transform: translate(0, -50%) scale(1) rotate(50deg) skewY(-10deg);
  }
  33% {
    transform: translate(0, -50%) scale(1, 0.67) rotate(50deg) skewY(-10deg);
  }
  100% {
    transform: translate(-100%, -50%) scale(1, 0) rotate(50deg) skewY(-10deg);
  }
}

@keyframes arrow-reverse {
  0% {
    transform: translate(0, -50%) scale(1) rotate(50deg) skewY(-10deg);
  }
  33% {
    transform: translate(0, -50%) scale(1, 0.67) rotate(50deg) skewY(-10deg);
  }
  100% {
    transform: translate(-100%, -50%) scale(1, 0) rotate(50deg) skewY(-10deg);
  }
}

.btn-main {
  background-color: var(--accent-muted);
  color: var(--color);
  border-color: var(--border-muted);
  position: relative;
  transition: all 0.3s ease-in-out;
}

.btn-main:after,
.btn-main:before, .portfolio-btn:after, .portfolio-btn:before  {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
}

.btn-main:before, .portfolio-btn:before {
  -webkit-animation: arrow-reverse 0.3s both ease-out;
          animation: arrow-reverse 0.3s both ease-out;
  border-top: 2px solid var(--color);
  border-right: 2px solid var(--color);
  border-radius: 0 1px 0 0;
  width: 0.5em;
  height: 0.5em;
  transform: translate(-100%, -50%) scale(1, 0) rotate(50deg) skewY(-10deg);
}

.btn-main:after, .portfolio-btn:after {
  background-color: var(--color);
  border-radius: 0.15em;
  height: 2px;
  width: 18px;
  transform: translateY(-50%) scale(0, 1);
  transform-origin: 0 0;
  transition: transform 0.3s 0.1s ease-out;
}

.btn-main:hover {
  color: var(--color);
  padding-right: 3rem;
  transition: padding 0.3s ease-out;
  text-shadow: rgba(0, 0, 0, 0.56) 0px 3px 12px;
}

.btn-main:hover:before, .portfolio-btn:hover:before {
  -webkit-animation: arrow 0.3s both ease-out;
          animation: arrow 0.3s both ease-out;
}

.btn-main:hover:after, .portfolio-btn:hover:after {
  transform: translateY(-50%) scale(1);
  transition: transform 0.3s ease-out;
}

.btn-second {
  color: var(--color);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.btn-second:hover {
    color: var(--color);
    text-shadow: rgba(0, 0, 0, 0.56) 0px 3px 12px;
}

a:hover + .cursor {
  display: none;
}

.hero {
  background-image: url("/assets/imgs/hbg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
}

.sidebar {
  position: fixed;
  left: 0;
  display: block;
  margin: 0 auto;
  width: 80px;
  height: 100%;
  background-color: rgba(18, 19, 36, 0.25);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-right: 1px solid rgba(92, 103, 255, 0.15);
  overflow: hidden!important;
  transition: 0.5s;
  z-index: 10;
}

input[type=checkbox]:checked~.sidebar {
  width: 560px;
}

.sidebar-content {
  position: relative;
  top: 0;
  left: 80px;
  height: 100%;
  width: 480px;
  background-color: rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 2.5rem;
  border-left: 1px solid rgba(92, 103, 255, 0.15);
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 99;
}

.sidebar-tabs {
  margin-top: 2.5rem;
}

.nav-tabs .nav-link {
  color: var(--color);
  text-transform: uppercase;
  border: none;
  border-right: 0;
  padding: 0;
}

.nav-tabs .nav-link:not(:first-child) {
  margin: 0 0 0 2rem;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: var(--accent);
  background-color: transparent;
}

.nav-tabs .nav-link::after {
  content: '';
  display: block;
  position: relative;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 1;
  transition: .3s all ease-in-out,0s z-index ease-in-out,0s border ease-in-out;
}

.nav-tabs .nav-link:hover::after, .nav-tabs .nav-link.active::after {
  width: 100%;
}

.tab-content {
  margin-top: 2.5rem;
}

.tab-content h2 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 70px;
  letter-spacing: 10px;
  color: var(--accent);
  font-family: rubik,sans-serif;
  position: relative;
  display: inline-block;
}

.tab-content h2::-moz-selection {
  background-color: var(--accent-muted)
}

.tab-content h2::selection {
  background-color: var(--accent-muted)
}

.nav-tabs {
  border-bottom: none;
}

.current-session {
  padding: 1em;
  border: 2px dashed var(--accent);
  border-radius: 12px;
  margin-top: 1.25rem;
  background-color: rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.current-session img {
  border-radius: 8px;
}

.current-session img.file-img {
  width: 78px;
}

.current-session img.editor {
  bottom: -9px;
  right: -9px;
  width: 31px;
  border-radius: 50%;
  border: 3px solid #000;
}

.session-stats h4 {
  font-size: 18px;
  margin-bottom: .25rem;
}

.session-stats p {
  font-size: 16px;
  margin-bottom: .25rem;
}

.session-stats p:last-child {
  font-size: 14px;
}

.sidebar-wrapper input[type="checkbox"] {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}

.sidebarIconToggle.norm {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  position: fixed;
  z-index: 99;
  top: 50%;
  left: 27.5px;
  height: 22px;
  width: 22px;
}

.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #5c67ff;
}

.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}

.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 7px;
}

.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 7px;
}

.sidebar-wrapper input[type=checkbox]:checked~.sidebarIconToggle>.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
}

.sidebar-wrapper input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
}

.sidebar-wrapper input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -9px;
}

.navbar-dark .navbar-nav .nav-link {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 200;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.hero-text {
  padding: 7.5rem 5rem;
  z-index: 2;
  position: relative;
}

@-webkit-keyframes lights {
  0% {
    color: hsl(230, 40%, 80%);
    text-shadow: 0 0 1em hsla(236, 100%, 68%, 0.1),
      0 0 0.125em hsla(236, 100%, 60%, 0.2),
      -1em -0.125em 0.5em hsla(262, 100%, 50%, 0),
      1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }

  30% {
    color: hsl(230, 80%, 90%);
    text-shadow: 0 0 1em hsla(236, 100%, 68%, 0.4),
      0 0 0.125em hsla(236, 100%, 60%, 0.4),
      -0.5em -0.125em 0.25em hsla(262, 100%, 50%, 0.1),
      0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.3);
  }

  40% {
    color: hsl(230, 100%, 95%);
    text-shadow: 0 0 1em hsla(236, 100%, 68%, 0.4),
      0 0 0.125em hsla(236, 100%, 90%, 0.4),
      -0.25em -0.125em 0.125em hsla(262, 100%, 50%, 0.1),
      0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.3);
  }

  70% {
    color: hsl(230, 80%, 90%);
    text-shadow: 0 0 1em hsla(236, 100%, 68%, 0.5),
      0 0 0.125em hsla(236, 100%, 60%, 0.5),
      0.5em -0.125em 0.25em hsla(262, 100%, 50%, 0.1),
      -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.3);
  }

  100% {
    color: hsl(230, 40%, 80%);
    text-shadow: 0 0 1em hsla(236, 100%, 68%, 0.1),
      0 0 0.125em hsla(236, 100%, 60%, 0.2),
      1em -0.125em 0.5em hsla(262, 100%, 50%, 0),
      -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
}

@keyframes lights {
  0% {
    color: hsl(230, 40%, 80%);
    text-shadow: 0 0 1em hsla(236, 100%, 68%, 0.1),
      0 0 0.125em hsla(236, 100%, 60%, 0.2),
      -1em -0.125em 0.5em hsla(262, 100%, 50%, 0),
      1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }

  30% {
    color: hsl(230, 80%, 90%);
    text-shadow: 0 0 1em hsla(236, 100%, 68%, 0.4),
      0 0 0.125em hsla(236, 100%, 60%, 0.4),
      -0.5em -0.125em 0.25em hsla(262, 100%, 50%, 0.1),
      0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.3);
  }

  40% {
    color: hsl(230, 100%, 95%);
    text-shadow: 0 0 1em hsla(236, 100%, 68%, 0.4),
      0 0 0.125em hsla(236, 100%, 90%, 0.4),
      -0.25em -0.125em 0.125em hsla(262, 100%, 50%, 0.1),
      0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.3);
  }

  70% {
    color: hsl(230, 80%, 90%);
    text-shadow: 0 0 1em hsla(236, 100%, 68%, 0.5),
      0 0 0.125em hsla(236, 100%, 60%, 0.5),
      0.5em -0.125em 0.25em hsla(262, 100%, 50%, 0.1),
      -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.3);
  }

  100% {
    color: hsl(230, 40%, 80%);
    text-shadow: 0 0 1em hsla(236, 100%, 68%, 0.1),
      0 0 0.125em hsla(236, 100%, 60%, 0.2),
      1em -0.125em 0.5em hsla(262, 100%, 50%, 0),
      -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
}

.hero-text h4 {
  position: relative;
  font-size: 3.75rem;
  font-weight: 400;
  padding-bottom: 4px;
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

.text-underline {
  -webkit-text-decoration: underline wavy var(--accent);
          text-decoration: underline wavy var(--accent);
}

.word {
  position: absolute;
  opacity: 0;
  width: 100%;
  left: 0;
  text-align: center;
  justify-content: space-evenly;
  display: flex;
  margin: 1rem 0;
  -webkit-animation: lights 4s 750ms linear infinite;
          animation: lights 4s 750ms linear infinite;
}

.hero-text hr {
  margin: 0.75rem 0;
  height: 0px;
}

.letter {
  display: inline-block;
  position: relative;
  float: left;
  transform: translateZ(25px);
  transform-origin: 50% 50% 25px;
}

.letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  transform: rotateX(-90deg);
}

.letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-text p {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2.25rem;
}

.arrow_right {
  position: absolute;
  bottom: -52.5px;
  right: 0;
}

.card-bg {
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.bg {
  position: absolute;
  height: 1339px;
  inset: 0;
  top: 40vh;
  left: -50rem;
  -webkit-filter: blur(64px);
          filter: blur(64px);
  transform: translate3d(0,0,0) scaleX(1) scaleY(1);
  overflow: hidden;
  z-index: 0;
}

.bg svg {
  position: relative;
  left: calc(50% - 30rem);
  height: 42.375rem;
  transform: translate(-50%, 0) rotate(30deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
  z-index: 0;
}

.section {
  position: relative;
  margin-top: 5rem;
  z-index: 1;
}

.section-title h4 {
  font-size: 50px;
  font-weight: 900;
}

.services {
  margin-top: 7rem;
}

.services .container {
  perspective: 2000px;
}

.service-container {
  background-color: var(--bg);
  height: 300px;
  transform: rotateX(25deg) translateY(-20rem);
  transition: transform 0.3s ease-out 0s;
}

.service {
  background-color: rgba(0,0,0, 0);
  padding: 1.5rem 1.5rem 0 1.5rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all .4s ease-in-out;
}

.service.active {
  background-color: rgba(0,0,0, 0.5);
  padding-bottom: 1.5rem;
}

.service-title p {
  font-size: 3.5rem;
  color: var(--accent);
  font-weight: 900;
}

.service-title h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.service-description {
  max-height: 0;
  color: #fff;
}

.service.active .service-description {
  max-height: 250px;
}

.reviews {
  background-color: #0f0f1a;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  margin-top: 7.5rem;
  transform: skewY(3deg);
  transform-origin: top left;
}

.reviews .before {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 30px;
  background-color: #2f2e41;
}

.reviews .after {
  position: absolute;
  bottom: 0;
  right: -50%;
  width: 50%;
  height: 30px;
  background-color: #2f2e41;
}

.reviewz:before {
  position: absolute;
  content: '';
  top: 15%;
  width: 100%;
  height: 70%;
  border-radius: 50%;
  box-shadow: 0 0 250px var(--accent);
  z-index: -1;
}

.reviews .container {
  transform: skewY(-3deg);
  transform-origin: top left;
}

.portfolio {
  margin-top: 12.5rem;
}

.portfolio-card .preview svg {
  width: 100%;
}

.portfolio-card .preview svg #overlay {
  transition: all .3s ease-in-out;
}

.portfolio-card:hover .preview svg #overlay {
  fill: rgba(0,0,0,0.5);
}

.portfolio-card .preview .preview-btns {
  inset: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-card .preview .preview-btn {
  padding: 0.5rem;
  background-color: rgba(0,0,0,0.5);
  border: 2px solid #82868B;
  border-radius: 6px;
  transform: scale(0);
  transition: all .3s ease-in-out;
  color: white;
}

.portfolio-card:hover .preview .preview-btn {
  transform: scale(1);
}

.portfolio-card:hover .preview .preview-btn:hover {
  background-color: #fff;
  color: black;
  border-color: white;
}

.portfolio-card .portfolio-body h6 {
  font-weight: 800;
  color: white;
  margin-bottom: .75rem;
}

.portfolio-card .portfolio-body p {
  margin-top: 5px;
  font-size: 10px;
  margin-bottom: .5rem;
}

.portfolio-btn {
  position: relative;
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.portfolio-btn:hover {
  color: white;
  padding-right: 2.3rem;
}

.portfolio-btn::after {
  height: 1px;
  width: 14px;
}

.portfolio-btn::before {
  -webkit-animation: arrow-reverse 0.3s both ease-out;
          animation: arrow-reverse 0.3s both ease-out;
  border-top: 1px solid var(--color);
  border-right: 1px solid var(--color);
}

.stats {
  margin-top: 7.5rem;
}

.footer {
  position: relative;
  background-color: #0f0f1a;
  padding-top: 15rem;
  padding-bottom: 2.5rem;
  margin-top: 7.5rem;
  transform: skewY(3deg);
  transform-origin: top left;
}

.footer .footer-before {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 30px;
  background-color: #2f2e41;
}

.footer .container {
  transform: skewY(-3deg);
  transform-origin: top left;
}

.form-control {
  background: rgb(19, 19, 32);
  border: 1px solid #27273e;
  border-radius: 12px;
  padding: 0.5rem 1.25rem;
  color: var(--color);
  font-size: 14px;
}

.form-control:focus {
  background: rgb(19, 19, 32);
  color: inherit;
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 0 .25rem var(--accent-muted);
}

.footer-copyright {
  position: absolute;
  background-color: #0f0f1a;
  border-top: 1px solid #2e364e;
  top: 100%;
  width: 100%;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright h4 {
  font-size: 14px;
}

@media only screen and (max-width: 770px) {
  .sidebarIconToggle.norm {
    top: 29px;
    left: 29px;
  }

  .sidebar {
    width: 100%;
    height: 80px;
    position: relative;
    touch-action: none;
-ms-touch-action: none;
  }

  .sidebar-content {
    top: 80px;
    left: 0;
    height: 100%;
    width: 100vw;
  }

  input[type="checkbox"]:checked ~ .sidebar {
    width: 100%;
    height: 100%;
  }

  .tab-content h2 {
    font-size: 60px;
  }

  .nav-tabs .nav-link:not(:first-child) {
    margin: 0 0 0 1rem;
  }

  .hero-text {
    padding: 7.5rem 1rem;
  }

  .hero-text h4 {
    font-size: 30px;
    line-height: 3rem;
  }

  .word {
    margin: 0;
  }

  .wrapper-text hr {
    display: none;
  }

  .services {
    display: none;
  }

  .reviews {
    text-align: center;
  }

  .reviews svg.ms-auto {
    display: none;
  }

  .section-title h4 {
    font-size: 40px;
  }

  .footer-copyright {
    padding: 2.5rem;
    text-align: center;
  }

  #cursor {
    display: none;
  }

  #reviews {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .service-container {
    height: auto;
    background-size: cover;
  }

  .service {
    background-color: rgba(0,0,0, 0.5);
    padding-bottom: 1.5rem;
  }

  .service .service-description {
    max-height: 250px;
  }

  body {
    cursor: auto!important;
  }
}

.form-text {
  color: #eae9ff;
}

