@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;800;900&display=swap");

:root {
  --primary: #f38838;
  --background: #121422;
  --dark1: #1e202d;
  --dark2: #0c1830;
  --dark3: #313340;
  --light1: #0f182e;
  --light2: #13213e;
  --container: 1300px;
}

* {
  /* box-sizing: content-box; */
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

body {
  background: var(--background);
  position: relative;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.container {
  overflow: hidden;
  display: flex;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
  gap: 25px;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.btn {
  padding: 5px 20px;
  border-radius: 8px;
  text-transform: uppercase;
  display: inline-block;
}

.btn-lg {
  padding: 10px 30px;
  border-radius: 8px;
}

.btn-primary {
  background: linear-gradient(90deg, #f38838, #ed6e33);
  color: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.6);
  transition: all 0.25s;
}
.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.7;
  transition: all 0.25s;
}

.btn-secondary {
  background: #fff;
  color: var(--dark1);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.6);
  transition: all 0.25s;
}
/* HEADER */
header {
  background-image: linear-gradient(
      to bottom,
      rgb(18, 20, 34, 0),
      rgba(18, 20, 34, 1)
    ),
    url(../img/headerbg.webp);
  background-size: 100% 50%, cover;
  background-position: bottom left, center;
  background-repeat: repeat-x, no-repeat;
  padding-bottom: 150px;
  position: relative;
}

header .headspin {
  position: absolute;
  width: 500px;
  top: -100px;
  left: -100px;
}

nav {
  /* border-top: 2px solid var(--primary); */
  position: fixed;
  width: 100%;
  top: 0;
  background-image: linear-gradient(
    to top,
    rgba(44, 25, 11, 0),
    rgba(44, 25, 11, 1)
  );
  background-size: cover;
  background-position: top right;
  backdrop-filter: blur(4px);
  z-index: 10;
}

nav.is-scrolled {
  background-image: linear-gradient(
    to top,
    rgba(18, 20, 34, 0.3),
    rgba(18, 20, 34, 0.3)
  );
  backdrop-filter: blur(10px);
}

.navbar {
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}

.navbar .logobrand {
  display: flex;
}

.navbar .logobrand img {
  height: 30px;
}

.navbar .logobrand p {
  line-height: 30px;
  margin: 0;
  margin-left: 20px;
  font-size: 17px;
  font-weight: 200;
  text-transform: uppercase;
}

.navbar .logobrand p span {
  font-weight: 600;
}

.navbar .nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar .nav > div {
  position: relative;
  cursor: pointer;
}

.navbar .nav a {
  line-height: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: all 0.25s;
}
.navbar .nav a:hover {
  color: rgba(255, 255, 255, 1);
  transition: all 0.25s;
}

.navbar .nav .btn {
  border-radius: 9rem;
  font-size: 0.8rem;
}

.navbar .nav > div .navdropdown {
  box-shadow: 0px 2px 15px rgba(2, 5, 18, 0.4);
  display: none;
  position: absolute;
  min-width: 100%;
  display: none;
  flex-direction: column;
  gap: 10px;
  top: 28px;
  right: 0px;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--light2);
}

.navbar .nav > div:hover .navdropdown {
  display: flex;
}

.navbar .nav .navdropdown a {
  width: 100%;
  white-space: nowrap;
  margin-bottom: 10px;
  border-radius: 5px;
}

.navbar .nav .navdropdown a > div {
  margin: 10px;
}

.navbar .nav .navdropdown a:last-of-type {
  margin-bottom: 0;
}

.navbar .nav .navdropdown a:hover {
  background-color: var(--light1);
}

.navbar .nav .navdropdown a p {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  font-size: 0.6rem;
  width: 100%;
  margin-bottom: 0;
  margin-top: 4px;
}

header .hero {
  /* max-width: 700px; */
  padding-top: 200px;
  bottom: 150px;
  gap: 60px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

header .hero h1 {
  font-weight: 700;
  font-size: 3.8rem;
  text-shadow: 0px 0px 50px #000;
  margin-bottom: 0px;
}

header .hero h2 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 5.8rem;
  background: -webkit-linear-gradient(0deg, #f38838, #ed6e33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header .hero p {
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.7rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  text-shadow: 0px 0px 10px #000;
}

header .hero .btn {
  margin: 10px;
}

header .hero img.downarrow {
  display: block;
  margin: auto;
  margin-top: 90px;
}

/* SECTION */
section {
  margin-top: 200px;
  margin-bottom: 200px;
}

section .sectionTitle {
  font-weight: 700;
  font-size: 2.1rem;
  text-shadow: 0px 0px 50px #000;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  margin-bottom: 50px;
}

section .sectionTitle:after {
  content: "";
  background-color: var(--primary);
  position: absolute;
  width: 25%;
  height: 5px;
  border-radius: 5rem;
  left: 0;
  bottom: -12px;
}

.text-center .sectionTitle:after {
  content: "";
  background-color: var(--primary);
  position: absolute;
  width: 25%;
  height: 5px;
  border-radius: 5rem;
  bottom: -12px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.sectiontitle {
  background-image: url(../img/featuresHead.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.sectiontitle h2 {
  letter-spacing: 5px;
  color: var(--primary);
  font-size: 1rem;
  margin: 0;
  margin-bottom: 5px;
}

.sectiontitle h3 {
  letter-spacing: 2px;
  margin: 0;
  color: #fff;
  font-size: 2rem;
  transition: opacity 0.3s ease;
}

/* PARTNERS */
#partners {
  margin-top: 100px;
  margin-bottom: 100px;
  overflow: hidden;
}

#partners .sectiontitle {
  background-image: url(../img/partnersHead.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.partnersSlider {
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(
    90deg,
    transparent 0%,
    transparent 15%,
    white 35%,
    white 65%,
    transparent 85%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(
    90deg,
    transparent 0%,
    transparent 15%,
    white 35%,
    white 65%,
    transparent 85%,
    transparent 100%
  );
}

.partnerName {
  text-align: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
  height: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partnersTrack {
  display: flex;
  animation: autoSlide 30s linear infinite;
  width: calc(100vw * 3);
}

.partnerSlide {
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
  pointer-events: all;
}

.partnerSlide a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  pointer-events: all;
}

@keyframes autoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-150px * 9 - 30px * 9));
  }
}

.partnersTrack:hover {
  animation-play-state: paused;
}

#partners .partnerLogo {
  max-height: 96px;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: opacity(0.7);
  transition: all 0.3s ease;
  flex-shrink: 0;
  pointer-events: all;
  cursor: pointer;
  border-radius: 12px;
}

#partners .partnerLogo:hover {
  filter: opacity(1);
}

@media (max-width: 768px) {
  .partnerSlide {
    min-width: 110px;
    margin-right: 20px;
  }
  
  #partners .partnerLogo {
    max-height: 90px;
    height: auto;
    width: auto;
  }
  
  .partnersSlider {
    mask: linear-gradient(
      90deg,
      transparent 0%,
      transparent 5%,
      white 20%,
      white 80%,
      transparent 95%,
      transparent 100%
    );
    -webkit-mask: linear-gradient(
      90deg,
      transparent 0%,
      transparent 5%,
      white 20%,
      white 80%,
      transparent 95%,
      transparent 100%
    );
  }
}

@media (max-width: 480px) {
  .partnerSlide {
    min-width: 100px;
    margin-right: 15px;
  }
  
  #partners .partnerLogo {
    max-height: 80px;
    height: auto;
    width: auto;
  }
  
  .partnersSlider {
    mask: linear-gradient(
      90deg,
      transparent 0%,
      white 10%,
      white 90%,
      transparent 100%
    );
    -webkit-mask: linear-gradient(
      90deg,
      transparent 0%,
      white 10%,
      white 90%,
      transparent 100%
    );
  }
}

/* FEATURES */
#features .featurebg {
  background: url(../img/features/featureBG.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

#features .featureCont {
  /* gap: 80px; */
}

#features .featureItem {
  background: var(--dark1);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  margin-top: 25px;
  padding: 40px;
  padding-top: 50px;
}

#features .featureIcon {
  background: linear-gradient(90deg, #f38838, #ed6e33);
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  transition: all 0.25s;
}
#features .featureItem:hover .featureIcon {
  top: -25px;
  transition: all 0.25s;
}
#features .featureIcon img {
  width: 35px;
}

#features .featureItem h4 {
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
}

#features .featureItem p {
  opacity: 0.4;
  margin-bottom: 0px;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.1rem;
}

/* PLANS */
.blob {
  background-image: url(../img/plans/grad.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}
.blob.b1 {
  width: 800px;
  height: 800px;
  left: -200px;
}
.blob.b2 {
  width: 500px;
  height: 500px;
  right: -200px;
  bottom: 500px;
}
#plans {
  margin-bottom: 80px;
}
#plans .sectiontitle {
  background-image: url(../img/plansHead.svg);
}

#plans .plansCont {
  justify-content: space-around;
}

#plans .planItem {
  display: inline-block;
  background: var(--dark1);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  margin-top: 25px;
  padding: 40px;
  min-width: 350px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  /* width: 100%; */
  box-sizing: border-box;
}

#plans .planItem::before {
  content: "";
  z-index: -1;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  position: absolute;
  border-width: 1px;
  border-style: solid;
  border-color: var(--primary);
  opacity: 0.2;
  top: 20px;
  left: 20px;
  transition: all 0.25s;
}

#plans .planItem:hover::before {
  top: 10px;
  left: 10px;
  transition: all 0.25s;
}

#plans .planItem .mostpopular {
  background-color: var(--primary);
  background: linear-gradient(90deg, #f38838, #ed6e33);
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  width: 80%;
  border-radius: 5px 5px 0px 0px;
  top: -22px;
  left: 10%;
  z-index: -1;
  text-align: center;
  padding: 5px;
  font-size: 0.7rem;
}

#plans .planItem h4 {
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 0px;
}

#plans .planItem p.price {
  text-transform: uppercase;
  font-weight: 200;
  opacity: 0.9;
  margin-top: 30px;
  font-size: 2.5rem;
}

#plans .planItem p.price span {
  font-size: 0.6rem;
}

#plans .planItem ul {
  margin-top: 30px;
  padding: 0;
}

#plans .planItem ul li {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0px;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.1rem;
  display: inline-block;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
}

#plans .planItem ul li img {
  margin-right: 5px;
  height: 1rem;
}

#plans .planItem .btn {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  box-shadow: none;
}

/* JOIN DISCORD */
#joinDiscord {
  margin-bottom: 0px;
  position: relative;
  margin-top: 80px;
}

#joinDiscord .container {
  padding: 7%;
  background: url(../img/joinCommunity/bg.webp),
    linear-gradient(90deg, #f38838, #ed6e33);
  background-position: right center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 15px;
  align-items: center;
}

.joinDiscordCont {
  flex: 2;
}

#joinDiscord h3 {
  margin-top: 0px;
  font-size: 1.7rem;
}

#joinDiscord p {
  margin-bottom: 0px;
}

.joinDiscordBtn {
  flex: 1;
  text-align: right;
}

.joinDiscordBtn .btn {
  box-shadow: none;
  color: var(--primary);
}

/* FOOTER */
footer {
  background-color: var(--dark1);
  margin-top: -100px;
  padding-top: 100px;
}

footer .footermain {
  padding-top: 80px;
  padding-bottom: 80px;
  justify-content: space-between;
}
footer .footermain .flex-col:first-of-type {
  max-width: 40%;
}
footer .footermain .logorow {
  align-items: center;
}
footer .footermain .logorow img {
  height: 40px;
}
footer .footermain .logorow p {
  line-height: 30px;
  margin: 0;
  margin-left: 10px;
  font-size: 1.3rem;
  font-weight: 200;
  color: #fff;
  text-transform: uppercase;
}

footer .footermain .logorow span {
  font-weight: 600;
}
footer .footermain h3 {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 23px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0px;
  color: var(--primary);
}
footer .footermain p {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7rem;
  color: rgba(255, 255, 255, 0.7);
}
footer .footermain a {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s;
}
footer .footermain a:hover {
  color: rgba(255, 255, 255, 1);
  transition: all 0.25s;
}

footer .footermain .social {
  justify-content: flex-start;
  align-items: flex-start;
}

footer .footermain .social .socialLinks a {
  display: flex;
  font-size: 17px;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: var(--primary);
  color: var(--dark1);
  padding: 2px;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: all 0.35s;
  overflow: hidden;
  margin: 5px;
}

footer .footermain .social .socialLinks a:last-of-type {
  margin-right: 0px;
}

footer .footermain .social .socialLinks a:hover {
  font-size: 80px;
  color: var(--primary);
  transition: all 0.35s;
}

footer .footermain .social img.paymentgateways {
  margin-top: 20px;
  filter: grayscale(1);
  opacity: 0.4;
  height: 15px;
}

footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

footer .copyright img {
  filter: grayscale(0.8);
  opacity: 0.1;
  height: 30px;
  margin-bottom: 15px;
}

footer .copyright p {
  font-size: 0.7rem;
  line-height: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 0px;
  margin-top: 0px;
}

/* RESPONSIVE */
@media only screen and (max-width: 850px) {
  #plans .plansCont {
    flex-direction: column;
  }
  header .hero h1 {
    font-size: 2rem;
  }
  header .hero h2 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 750px) {
  #features .featureCont {
    flex-direction: column;
  }
}
@media only screen and (max-width: 700px) {
  footer .footermain {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .footermain .flex-col:first-of-type {
    align-items: center;
    text-align: center;
  }
}
@media only screen and (max-width: 675px) {
  .navbar {
    flex-direction: column;
    gap: 40px;
  }
  #joinDiscord .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
  }
  header .hero h2 {
    font-size: 2.6rem;
  }
}

@media only screen and (max-width: 420px) {
  .navbar .nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}
