/* https://colorhunt.co/palettes/purple */
:root {
  --color-1: #442288;
  --color-2: #6ca2ea;
  --color-3: #b5d33d;
  --color-4: #fed23f;
  --color-5: #eb7d5b;
  --angle: 0deg;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background-image: linear-gradient(#624F82, #9F73AB);
  border-radius: 4px;
}

div::-webkit-scrollbar {
  background-color: #00000000;
}

div:hover::-webkit-scrollbar {
  background-color: #b5d4cd85;
}

div::-webkit-scrollbar-thumb {
  background-image: linear-gradient(#624f8200, #9f73ab00);
}

div:hover::-webkit-scrollbar-thumb {
  background-image: linear-gradient(#624f82, #9f73ab);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', 'Arial', sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
}

/* HEADINGS */

/* h1,
p {
  color: #fff;
  text-align: center;
  line-height: 1.4;
} */

h1 {
  font-size: 2.2rem;
}

h2 {
  color: #000;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* BASIC SETUP */

.page-wrapper {
  width: 100%;
  height: auto;
  background-color: #E9E8E8;
}

.nav-wrapper {
  width: 100%;
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1;
}

.grad-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  -webkit-animation: gradbar 15s ease infinite;
  -moz-animation: gradbar 15s ease infinite;
  animation: gradbar 15s ease infinite;
}

.container-fluid {
  background: linear-gradient(#624F82, #9F73AB);
}

/* NAVIGATION */

.navbar {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  height: 50px;
  overflow: unset;
  background-color: #3F3B6C;
}

.navbar img {
  height: 30px;
  width: auto;
  justify-self: start;
  margin-left: 20px;
  border-radius: 8px;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px
}

.nav-item {
  padding-left: 5px;
  padding-right: 5px;
  align-content: center;
}

.nav-item a {
  color: #FDFDBD;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease-out;
  font-family: 'patua One', cursive;
}

.nav-item a:hover {
  color: #fdcfbd;
  text-decoration: none;
  /* font-family: 'Courgette', cursive; */
}

.nav-item li:hover {
  cursor: pointer;
}

.dropdown-menu.show {
  background-color: #9F73AB;
}

.dropdown-item.active {
  background-color: #23D5AB;
}

/* SECTIONS */

.headline {
  width: 100%;
  height: 40vh;
  min-height: 30px;
  background: linear-gradient(#3F3B6C, #624F82);
  /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url('../Assets/headline.png'); */
  /* background-size: 100% 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  /* border-radius: 6px; */
}

.wip {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  background: linear-gradient(#3F3B6C, #624F82, #9F73AB);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.hquote {
  font-family: "Press Start 2P", cursive;
  font-size: 36px;
  word-spacing: 100vw;
  background: linear-gradient(var(--angle),
      var(--color-1) 19%,
      transparent 19%,
      transparent 20%,
      var(--color-2) 20%,
      var(--color-2) 39%,
      transparent 39%,
      transparent 40%,
      var(--color-3) 40%,
      var(--color-3) 59%,
      transparent 59%,
      transparent 60%,
      var(--color-4) 60%,
      var(--color-4) 79%,
      transparent 79%,
      transparent 80%,
      var(--color-5) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: 7s rotate linear infinite;
}

@keyframes rotate {
  to {
    --angle: 360deg;
  }
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.thof-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  background: linear-gradient(#645185, #6a5385);
}

.thof {
  font-family: "Press Start 2P", cursive;
}

/* Cards */

.row.row-gap {
  gap: 15px;
}

.card {
  /* background-color: #23d5ab8b!important; */
  background: #adddd075 !important;
  border-radius: 10px;
  box-shadow: 0 4px 30px #0000001a;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* box-shadow: 0 1px 20px 0 rgb(0 0 0 / 10%); */
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  border-radius: 0.2857rem;
  border: 1px solid #ffffff !important;
  overflow: hidden;
}

/* loader */

#preloader {
  background: #000 url(/Assets/finger.svg) no-repeat center center;
  background-size: 100%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}


/* MOBILE MENU & ANIMATION */

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-toggle {
  justify-self: end;
  margin-right: 25px;
  display: none;
}

.menu-toggle:hover {
  cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2) {
  opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@-moz-keyframes gradbar {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes gradbar {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

/* Media Queries */

/* Desktop */

@media only screen and (min-width: 1200px) {
  body {
    width: 100vw;
    height: 100vh;
  }
}

/* Mobile Devices - Phones/Tablets */

@media only screen and (max-width: 720px) {
  .features {
    flex-direction: column;
    padding: 50px;
  }

  /* MOBILE HEADINGS */

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1rem;
  }

  p {
    font-size: 0.8rem;
  }

  /* MOBILE NAVIGATION */

  .navbar ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: start;
    top: 55px;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 55px);
    transform: translate(-101%);
    text-align: center;
    overflow: hidden;
  }

  .navbar li {
    padding: 15px;
  }

  .navbar li:first-child {
    margin-top: 50px;
  }

  .navbar li a {
    font-size: 1rem;
  }

  .menu-toggle,
  .bar {
    display: block;
    cursor: pointer;
  }

  .mobile-nav {
    transform: translate(0%) !important;
  }

  /* SECTIONS */

  .headline {
    height: 20vh;
  }

  .feature-container p {
    margin-bottom: 25px;
  }

  .feature-container {
    margin-top: 20px;
  }

  .feature-container:nth-child(2) {
    order: -1;
  }

  /* SEARCH DISABLED ON MOBILE */

  #search-icon {
    display: none;
  }

  .search-input {
    display: none;
  }

}