* {
  margin: 0px;
  padding: 0px;
}

body {
  background-color: black;
  color: white;
  font-family: "Nunito";
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  background-color: #111111;
}

.container {
  height: 40rem;
}
nav {
  position: fixed;
  z-index: 9;
}

nav > #logo {
  height: 5rem;
  width: 12rem;
  position: relative;
  top: 2rem;
  left: 3rem;
}

nav > #logo > img {
  width: 100%;
}

.content {
  display: inline-block;
  width: 45rem;
  position: relative;
  top: 17rem;
  left: 6rem;
}

.content > #heading {
  padding: 1.5rem;
}

.content > #data {
  padding: 1.5rem;
}

.content1 {
  width: 20rem;
  position: relative;
  left: 66rem;
  top: 3rem;
}

.content1 > img {
  width: 100%;
}

.search > #target {
  height: 2rem;
  width: 9rem;
  color: white;
  background-color: rgb(183, 38, 202);
}

/* Download Button */

button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-family: "Roboto", Arial;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  left: 50%;
  outline: none;
  overflow: hidden;
  padding: 0 10px;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  z-index: 1;
  margin-top: 7rem;
}

button::before {
  background: rgb(183, 38, 202);
  box-shadow: 20px 20px 48px #0e0e0e, -20px -20px 48px #141414;
  border-radius: 50px;
  content: "";
  display: block;
  height: 100%;
  margin: 0 auto;
  position: relative;
  transition: width 0.2s cubic-bezier(0.39, 1.86, 0.64, 1) 0.3s;
  width: 100%;
  font-family: "Nunito";
}

button.ready .submitMessage i {
  opacity: 1;
  top: 1px;
  transition: top 0.4s ease 600ms, opacity 0.3s linear 600ms;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    cy: 10;
  }

  25% {
    cy: 3;
  }

  50% {
    cy: 10;
  }
}

button.loading::before {
  transition: width 0.3s ease;
  width: 80%;
}

button.loading .loadingMessage {
  opacity: 1;
}

button.loading .loadingCircle {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: loading;
}

button.complete .submitMessage i {
  top: -30px;
}

button.complete .loadingMessage {
  top: 80px;
}

button.complete .successMessage .button-text span {
  left: 0;
  opacity: 1;
  animation: fadeIn 1s linear;
}

button.complete .successMessage i {
  display: inline-block;
}

.button-text span {
  opacity: 0;
  position: relative;
}

.message {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.submitMessage i {
  color: #111;
  margin-left: -1px;
  opacity: 0;
  position: relative;
  top: 30px;
  transition: top 0.4s ease, opacity 0.3s linear;
  width: 14px;
}

.loadingMessage {
  opacity: 0;
  transition: opacity 0.3s linear 0.3s,
    top 0.4s cubic-bezier(0.22, 0, 0.41, -0.57);
}

.loadingMessage svg {
  fill: #111111;
  margin: 0;
  width: 22px;
}

.successMessage i {
  color: #111;
  display: none;
  transition: 0.3s ease-in-out;
  width: 14px;
}

.successMessage .button-text {
  display: none;
  animation: fadeIn 1s linear;
}

.loadingCircle:nth-child(2) {
  animation-delay: 0.1s;
}

.loadingCircle:nth-child(3) {
  animation-delay: 0.2s;
}

#default {
  animation: fadeIn 1s linear;
}

/* Navbar */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  left: 35rem;
  top: -3rem;
}
ul li a {
  --c: rgb(183, 38, 202);
  color: var(--c);
  font-size: 16px;
  border-radius: 0.5em;
  width: 12em;
  height: 3em;
  text-transform: uppercase;
  font-weight: bold;
  font-family: sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 3em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
  margin: 1em;
  float: left;
  text-decoration: none;
}
ul li span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: var(--c);
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
ul li a:hover {
  color: white;
}
ul li a:hover span {
  transform: translateY(0) scale(2);
}
ul li a span:nth-child(1) {
  --n: 1;
}
ul li a span:nth-child(2) {
  --n: 2;
}
ul li a span:nth-child(3) {
  --n: 3;
}
ul li a span:nth-child(4) {
  --n: 4;
}

/* border hover effect */

.btn.effect {
  color: white;
}

.btn.effect.effect::after,
.btn.effect.effect::before {
  content: "";
  display: block;
  position: absolute;
  width: 20%;
  height: 20%;
  border: 3px solid rgb(183, 38, 202);
  transition: all 0.6s ease;
  border-radius: 2px;
}

.btn.effect.effect::after {
  bottom: 0;
  right: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: rgb(183, 38, 202);
  border-right-color: rgb(183, 38, 202);
}

.btn.effect.effect::before {
  top: 0;
  left: 0;
  border-top-color: rgb(183, 38, 202);
  border-left-color: rgb(183, 38, 202);
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.btn.effect.effect:hover::after,
.btn.effect.effect:hover::before {
  width: 100%;
  height: 100%;
}


.container1 {
  height: 45rem;
}

#about h1 {
  position: relative;
  top: 8rem;
  text-align: center;
  text-decoration: underline;
  color: rgb(183, 38, 202);
  font-family: "Nunito";
}

#about h3 {
  position: relative;
  top: 17rem;
  left: 27.5rem;
  text-decoration: underline;
  color: rgb(183, 38, 202);
  font-family: "Nunito";
}

#about #content {
  position: relative;
  top: 18rem;
  width: 50rem;
  font-size: 1.5rem;
  font-family: "Nunito";
  left: 27.5rem;
  text-align: justify;
}

#about i {
  position: relative;
  font-size: 10rem;
  top: 31rem;
  left: 12rem;
  color: rgb(183, 38, 202);
}

#about1 i {
  position: relative;
  font-size: 10rem;
  top: 32rem;
  left: 68rem;
  color: rgb(183, 38, 202);
}

#about1 #content1 {
  position: relative;
  top: 18rem;
  width: 50rem;
  font-size: 1.5rem;
  font-family: "Nunito";
  left: 12.5rem;
  text-align: justify;
}

#about1 h3 {
  position: relative;
  top: 17rem;
  left: 54.5rem;
  text-decoration: underline;
  color: rgb(183, 38, 202);
  font-family: "Nunito";
}

.swiper-container {
  width: 100%;
  height: 90%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.slide-container {
  padding: 11px 32px;
}

.slide-card {
  background-color: #111;
  box-shadow: 0 8px 30px -7px #000;
  margin: 0 20px;
  padding: 9px 33px;
  border-radius: 20px;
  border: 0;
  cursor: grab;
}

.slide-card .slide-card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: 15px auto 0;
  box-shadow: 0 8px 20px -4px #000;
  width: 100px;
  height: 100px;
}

.slide-card h5 {
  color: #01b0f8;
  font-size: 21px;
  line-height: 1.3;
}

.slide-card h5 span {
  font-size: 18px;
  color: #fff;
}

.slide-card p {
  font-size: 18px;
  color: rgb(240, 222, 222);
  padding-bottom: 15px;
}

.swiper-slide.swiper-slide-active {
  transform: scale(1.2);
}

.autoplay {
  position: absolute;
  color: #000;
  font: 100px/100% arial, sans-serif;
  right: 15px;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  top: 15px;
  width: auto;
  height: auto;
  z-index: 999;
  opacity: 0.4;
  transition: opacity 0.1s ease-in, transform 0.1s ease-out;
  animation: fade_close 3s ease-out;
}

@media (max-width: 800px) {
  .slide-container {
    padding: 0px 0px;
  }

  .swiper-slide {
    width: 360px;
  }
}

.container3 {
  position: relative;
  top: 60rem;
  margin-bottom: 30rem;
  height: 55rem;
}