:root {
  --primary: #FF6D00;
  --primary-rgb: 255, 109, 0;
}

html, body {
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6, .btn {
  font-family: "Clash Display", sans-serif;
  line-height: 1.2;
  letter-spacing: 1px;
}

.h3 {
  line-height: 1.4;
}

.fw-bold {
  font-weight: 600 !important;
}

.hero {
  min-height: 100vh;
}
@media screen and (max-width: 480px) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

.vh-100 {
  height: 100vh;
  min-height: 100vh;
}
@media screen and (max-width: 480px) {
  .vh-100 {
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
  }
}

.container-fluid {
  position: relative;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
  color: #000;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2;
}
.overlay.bg-primary {
  background: rgba(var(--primary-rgb), 0.6);
}

.overlayGradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(var(--primary-rgb), 1) 0%, rgb(0, 0, 0) 100%);
  z-index: 2;
}

.image-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../assets/tipster.jpg);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-pengwin {
  background-image: url(../assets/Kristian-Pengwin.jpg);
  background-position: left center;
}

.container {
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 480px) {
  .btn {
    width: 100%;
  }
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-primary:hover {
  background-color: rgba(var(--primary-rgb), 0.8);
}
.btn-primary:active {
  background-color: rgba(var(--primary-rgb), 0.9) !important;
}

.form-control {
  border: 1px solid #ccc;
  padding: 1em;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: 600;
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
  outline: none;
}

.bg-dark {
  background-color: #000 !important;
}

.stepNumber {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  padding: 1em;
  position: relative;
  color: #fff;
  margin-right: 0.5em;
}
.stepNumber::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translate(-50%, 100%);
  background: var(--primary);
}
.stepNumber.none::after {
  display: none;
}

.iconWrapper {
  padding: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 1) 0%, rgb(0, 0, 0) 100%);
  border-radius: 50%;
  min-width: 8em;
  width: 8em;
  max-width: 8em;
  min-height: 8em;
  height: 8em;
  max-height: 8em;
  color: #fff;
  margin: 0 auto;
}
.iconWrapper svg {
  transform: scale(2);
}

.iconWrapperSmall {
  padding: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  min-width: 3em;
  width: 3em;
  max-width: 3em;
  min-height: 3em;
  height: 3em;
  max-height: 3em;
  color: var(--primary);
  margin: 0 auto;
  text-decoration: none;
  font-weight: bold;
}
.iconWrapperSmall img {
  width: 1.4em;
  height: 1.4em;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(42%) sepia(67%) saturate(2486%) hue-rotate(4deg) brightness(106%) contrast(104%);
}

.navbar {
  height: 0;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease-in-out;
  transform: translate(-50%, -100%);
  left: 50%;
  top: 1em;
}

.navbar-top {
  position: fixed;
  top: 2em;
  height: auto;
  overflow: hidden;
  z-index: 999;
  width: 60%;
  left: 50%;
  padding: 0;
  transform: translate(-50%, 0%);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 0.5em;
}
@media screen and (max-width: 480px) {
  .navbar-top {
    width: 90%;
    top: auto;
    bottom: 2em;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  .navbar-top button {
    margin-top: 0.25em !important;
  }
}

@media screen and (max-width: 768px) {
  .inputCustom .form-control {
    border-top-right-radius: 0.5em !important;
    border-bottom-right-radius: 0.5em !important;
  }
  .inputCustom button {
    width: 100%;
    margin-top: 0.5em;
    border-radius: 0.5em !important;
  }
}

.footer {
  z-index: 999;
}

.modal {
  z-index: 999999;
}

@media screen and (max-width: 480px) {
  .closeBtn {
    display: none;
  }
  #signup {
    width: 100%;
  }
}
.tipsterCards {
  height: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(var(--primary-rgb), 0.2);
  color: #000;
}
.accordion-button:not(.collapsed):hover {
  background-color: rgba(var(--primary-rgb), 0.2);
}

.accordion-button:focus {
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.accordion-button {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.accordion-button:not(.collapsed)::after {
  filter: grayscale(100%) brightness(0%);
}

.heroBanner {
  padding-top: 1rem;
}
@media screen and (max-width: 480px) {
  .heroBanner {
    padding-top: 6rem;
  }
}

.bannerCta {
  box-shadow: 0 1rem 2rem rgba(var(--primary-rgb), 0.6);
}
.bannerCta:hover {
  cursor: pointer;
}
.bannerCta p {
  animation: pulse 1s infinite ease-in-out;
  animation-delay: 2s;
}
@media screen and (max-width: 480px) {
  .bannerCta p {
    font-size: 0.8em;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    @media screen and (max-width: 480px) {
      transform: scale(1.01);
    }
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) {
  .sticky-top {
    position: relative;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}/*# sourceMappingURL=style.css.map */