/* ROOT */
:root {
  --white: #fff;
  --black: #000;
  --pricing: #00c7f8;
  --deep_pink: #ff1493;
  --background: #0E0E11;
  --btn_color_1: #1c1c22;
  --mobile_nav_back: #1c1c22;
}

/* DEFAULT */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

a {
  color: var(--white);
  text-decoration: none;
}

/* FONTS */
@font-face {
  font-family: "Unbounded";
  src: url(../fonts/Unbounded.ttf);
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter.ttf);
}
/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--btn_color_1);
}

/* BODY */
body {
  width: 100%;
  min-height: 100vh;
  color: var(--white);
  font-family: "Inter";
  background: var(--background);
}

/* HEADER */
.header {
  margin: auto;
  display: flex;
  width: 1200px;
  padding: 20px;
  align-items: center;
  font-family: "Unbounded";
  justify-content: space-between;
  animation: header 1s;
}
.header .navbar a {
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 20px;
  position: relative;
  display: inline-block;
}
.header .navbar a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.header .navbar a:hover::after {
  left: 0;
  width: 100%;
}
.header .btn_layout_1 {
  display: flex;
  transition: 0.4s;
  padding: 14px 25px;
  align-items: center;
  border-radius: 50px;
  background: var(--btn_color_1);
}
.header .btn_layout_1 i {
  font-size: 18px;
  margin-right: 8px;
}
.header .btn_layout_1:hover {
  background: var(--white);
  color: var(--btn_color_1);
}
.header .burger,
.header .overlay {
  display: none;
}

/* HERO */
.hero {
  gap: 50px;
  margin: auto;
  width: 1200px;
  display: flex;
  padding: 80px 0px;
  align-items: center;
  justify-content: center;
}
.hero .hero_left {
  width: 50%;
}
.hero .hero_left .section_title {
  font-size: 64px;
  margin-bottom: 20px;
  font-family: "Unbounded";
}
.hero .hero_left .section_description {
  font-size: 16px;
  margin-bottom: 30px;
}
.hero .hero_left .btn_layout_1 {
  width: 250px;
  display: flex;
  font-size: 18px;
  transition: 0.4s;
  padding: 14px 25px;
  align-items: center;
  border-radius: 50px;
  justify-content: center;
  background: var(--btn_color_1);
  text-align: center;
  text-transform: uppercase;
  font-family: "Unbounded";
}
.hero .hero_left .btn_layout_1:hover {
  background: var(--white);
  color: var(--btn_color_1);
}
.hero .hero_right {
  width: 50%;
  display: flex;
  overflow-y: hidden;
  align-items: center;
  justify-content: center;
}

/* FEATURES */
.features {
  margin: auto;
  width: 1300px;
  padding: 80px 0px 0px;
}
.features .section_title {
  font-size: 48px;
  padding: 0px 20px;
  margin-bottom: 25px;
  font-family: "Unbounded";
}
.features .features_section {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  min-height: 450px;
  padding: 0px 20px;
}
.features .features_section .features_card {
  width: 300px;
  height: 335px;
  padding: 32px;
  border-radius: 30px;
  background: var(--mobile_nav_back);
}
.features .features_section .features_card .card_title {
  font-size: 22px;  
  margin: 10px 0px 15px;
  font-family: "Unbounded";
}

/* PRODUCTS */
.pricing {
  margin: auto;
  width: 1300px;
  padding: 0px 0px 80px;
}
.pricing .section_title {
  font-size: 48px;
  padding: 0px 20px;
  margin-bottom: 25px;
  font-family: "Unbounded";
}
.pricing .pricing_category {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
  padding: 0px 20px;
  margin-bottom: 30px;
}
.pricing .pricing_category .btn_layout_2 {
  cursor: pointer;
  font-size: 18px;
  background: none;
  padding: 12px 32px;
  color: var(--white);
  border-radius: 100px;
  font-family: "Unbounded";
  border: 1px solid #cfcfcf;
}
.pricing .pricing_category .active {
  background: var(--btn_color_1);
  border: 1px solid var(--btn_color_1);
}
.pricing #nitro,
.pricing #members,
.pricing #reseller,
.pricing #lifetime,
.pricing #tree_months,
.pricing #aged_accounts {
  display: none;
}
.pricing .pricing_section {
  gap: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pricing .pricing_section .pricing_card {
  border: none;
  width: 350px;
  height: 550px;
  padding: 28px;
  transition: 0.7s;
  border-radius: 10px;
  background: var(--mobile_nav_back);
  border: 2px solid var(--mobile_nav_back);
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.pricing .pricing_section .pricing_card:hover {
  background: #1c1c22;
  border: 2px solid #fff;
}
.pricing .pricing_section .pricing_card .card_prize {
  font-size: 32px;
  margin-bottom: 30px;
}
.pricing .pricing_section .pricing_card .card_prize strong {
  font-size: 64px;
}
.pricing .pricing_section .pricing_card .card_title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Unbounded";
}
.pricing .pricing_section .pricing_card .card_list li {
  display: flex;
  margin: 20px 0;
  font-size: 18px;
  align-items: center;
}
.pricing .pricing_section .pricing_card .card_list li i {
  margin-right: 10px;
}
.pricing .pricing_section .pricing_card .btn_layout_1 {
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.4s;
  padding: 14px 25px;
  border-radius: 50px;
  color: var(--white);
  font-family: "Unbounded";
  background: var(--btn_color_1);
  position: absolute;
  bottom: 50px;
}
.pricing .pricing_section .pricing_card .btn_layout_1:hover {
  background: var(--white);
  color: var(--btn_color_1);
}

/* CONTACT */
.contact {
  width: 1000px;
  margin: auto;
  padding: 50px 0px;
}
.contact .contact_section {
  text-align: center;
  padding: 80px 48px;
  border-radius: 5px;
  background: var(--mobile_nav_back);
}
.contact .contact_section .section_title {
  font-size: 40px;
  font-family: "Unbounded";
}
.contact .contact_section .section_description {
  margin: 15px 0;
  font-size: 18px;
}
.contact .contact_section .channels {
  gap: 20px;
  display: flex;
  justify-content: center;
}
.contact .contact_section .channels .btn_layout_3 {
  display: flex;
  transition: 0.4s;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 25px;
  align-items: center;
  border-radius: 50px;
  background: var(--btn_color_1);
}
.contact .contact_section .channels .btn_layout_3 i {
  font-size: 18px;
  margin-right: 8px;
}
.contact .contact_section .channels .btn_layout_3:hover {
  background: var(--white);
  color: var(--btn_color_1);
}

/* FOOTER */
.footer {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.footer span {
  margin: 8px 0;
}

/* KEY FRAMES */
@keyframes header {
  0% {
    transform: translateY(-3em);
  }
  100% {
    transform: translateY(0em);
  }
}
/* MEDIA QUERIES */
@media screen and (max-width: 1400px) {
  .pricing {
    width: 95%;
  }
}
@media screen and (max-width: 1300px) {
  .header {
    width: 100%;
  }
  .features {
    width: 100%;
  }
  .features .section_title {
    text-align: center;
  }
  .features .features_section {
    justify-content: center;
  }
}
@media screen and (max-width: 1250px) {
  .hero {
    width: 100%;
    flex-direction: column;
  }
  .hero .hero_left {
    width: 600px;
    text-align: center;
  }
  .hero .hero_left .btn_layout_1 {
    margin: auto;
  }
  .hero .hero_right {
    width: 100%;
  }
  .contact {
    width: 95%;
  }
}
@media screen and (max-width: 900px) {
  .header .navbar,
  .header .btn_layout_1 {
    display: none;
  }
  .header .burger {
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: all 250ms ease-out;
  }
  .header .burger:hover {
    cursor: pointer;
  }
  .header .burger::before, .header .burger::after {
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    background: var(--white);
    transition: all 250ms ease-out;
  }
  .header .burger::before {
    transform: translateY(-3px);
  }
  .header .burger::after {
    transform: translateY(3px);
  }
  .header .active.burger::before {
    background: var(--black);
    transform: translateY(0) rotate(45deg);
  }
  .header .active.burger::after {
    background: var(--black);
    transform: translateY(0) rotate(-45deg);
  }
  .header .overlay {
    top: 0;
    right: 0;
    width: 0;
    z-index: 1;
    height: 100%;
    display: block;
    position: fixed;
    transition: 0.5s;
    overflow-x: hidden;
    font-family: "Unbounded";
    background-color: var(--white);
  }
  .header .overlay .overlay-content {
    height: 100%;
    padding-top: 150px;
    text-align: center;
  }
  .header .overlay .overlay-content a {
    display: block;
    font-size: 30px;
    transition: 0.3s;
    padding: 20px 10px;
    color: var(--black);
  }
  .header .overlay .overlay-content a:hover {
    color: var(--btn_color_1);
  }
  .header .overlay .overlay-content .socials {
    left: 50%;
    bottom: 2%;
    display: flex;
    position: absolute;
    align-items: center;
    flex-direction: row;
    transform: translate(-50%, -50%);
  }
  .header .overlay .overlay-content .socials a {
    padding: 0 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 650px) {
  .hero .hero_left,
  .hero .hero_right {
    width: 95%;
    margin: auto;
  }
}
@media screen and (max-width: 400px) {
  .hero .hero_left .section_title {
    font-size: 48px;
  }
  .hero .hero_right img {
    width: 300px;
    height: 200px;
  }
  .pricing .pricing_category .btn_layout_2 {
    width: 100%;
  }
  .contact .contact_section .channels {
    align-items: center;
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */