@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Zen+Antique&display=swap");
:root {
  --bs-body-color-rgb: red;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: rgb(255, 255, 255);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

header {
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}
header .navbar-nav {
  text-align: center;
}

.background {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  opacity: 0.6;
}

/******** Epic Spinners ********/
#half-circle-spinner-area {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(138, 137, 255, 0.19);
  z-index: 999;
}

.half-circle-spinner,
.half-circle-spinner * {
  box-sizing: border-box;
}

.half-circle-spinner {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
}

.half-circle-spinner .circle {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 6px solid transparent;
}

.half-circle-spinner .circle.circle-1 {
  border-top-color: #ffff00;
  animation: half-circle-spinner-animation 1s infinite;
}

.half-circle-spinner .circle.circle-2 {
  border-bottom-color: #ffff00;
  animation: half-circle-spinner-animation 1s infinite alternate;
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* **************************** */
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  scroll-snap-align: start;
}
section .section-area, section .section-first-area {
  width: 100%;
  min-height: 88%;
  position: relative;
  top: 70px;
}
section .section-first-area {
  display: flex;
  justify-content: center;
  align-items: center;
}
section .section-area {
  background-color: rgba(19, 0, 64, 0.5);
  border-radius: 25px;
  border: 1px solid #7aff00;
  padding: 20px 30px;
}
section .section-area > h1 {
  margin-bottom: 30px;
}
section #contact-form button {
  position: absolute;
  right: 30px;
  bottom: 20px;
}

footer {
  width: 100%;
  height: 20px;
  position: fixed;
  z-index: 999;
  bottom: 0;
}/*# sourceMappingURL=style.css.map */