/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600&family=DM+Serif+Display&display=swap');
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;
  /*========== Colors ==========*/
  --hue-color: 206;
  --black-color: hsl(var(--hue-color), 4%, 4%);
  --black-color-alt: hsl(var(--hue-color), 4%, 8%);
  --title-color: hsl(var(--hue-color), 4%, 95%);
  --text-color: hsl(var(--hue-color), 4%, 75%);
  --text-color-light: hsl(var(--hue-color), 4%, 65%);
  --white-color: #FFF;
  --body-color: hsl(var(--hue-color), 4%, 6%);
  --body-color-2: #000;
  --container-color: hsl(var(--hue-color), 4%, 10%);
  --text-gradient: linear-gradient(hsl(var(--hue-color), 4%, 24%), hsl(var(--hue-color), 4%, 8%));
  --scroll-thumb-color: hsl(var(--hue-color), 4%, 16%);
  --scroll-thumb-color-alt: hsl(var(--hue-color), 4%, 20%);
  --lionheart-basic-color: rgb(224, 184, 42);
  /*========== Font and typography ==========*/

  --biggest-font-size: 5rem;
  --bigger-font-size: 3.5rem;
  --big-font-size: 2.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --text-line-height: 2rem;
  --body-font: 'Poppins', sans-serif;
  --body-font-2: 'DM Serif Display', serif;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== Margenes Bottom ==========*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 3.5rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 7.5rem;
    --bigger-font-size: 4.5rem;
    --big-font-size: 4rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  background-color: #000;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: url(/assets/img/background.png);
  background-position: top;
  background-size: inherit;
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--lionheart-basic-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button,
input {
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 6rem 0 2rem;
}

.section__title {
  font-size: var(--bigger-font-size);
  text-align: center;
  margin-bottom: var(--mb-2-5);
  stroke-opacity: var(--body-color-2) 2px;
  opacity: 100%;
}

.section__title-gradient {
  background: var(--text-gradient);
  color: var(--lionheart-basic-color);
  -webkit-background-clip: text;
  background-clip: text;
}

/*=============== LAYOUT ===============*/
.main {
  overflow: hidden;
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background: #000;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.nav__logo {
  display: flex;
  width: 8rem;
}

.nav__toggle {
  font-size: 1.2rem;
  color: var(--white-color);
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color-2);
    top: -100%;
    left: 0;
    width: 100%;
    padding: 4rem 0 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.nav__link {
  color: var(--white-color);
  font-size: var(--h2-font-size);
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
  background: var(--text-gradient);
  color: #FFF;
  -webkit-background-clip: text;
  background-clip: text;
  transition: .4s;
}

.nav__link:hover {
  background: var(--white-color);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.nav__close {
  position: absolute;
  font-size: 1.5rem;
  top: 2rem;
  right: 1rem;
  color: var(--white-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  top: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color-2);
}

/* Active link */
.active-link {
  background: var(--lionheart-basic-color);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

ul li ul.dropdown li {
  display: block;
}

ul li ul.dropdown {
  width: 100%;
  background: #000;
  position: absolute;
  z-index: 999;
  display: none;
  padding-top:1rem;
}

.dropdown {
  background-color: #000;
}

ul li ul.dropdown li a {
  padding: 10px 25px;
  background-color: black;
  display: inline-block;
  margin-left: -2rem;
}

ul li  a:hover {
  background-color: #000;
}

ul li:hover ul.dropdown {
  display: block;
}

ul li {
  display: inline-block;
  position: relative;
}

ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}

/*=============== HOME ===============*/

.mySlides {
  display:none;
  align-items: center;
  text-align: center;
}

.carousel__img {
  border-radius:2rem;
}

.carousel__title {
  font-family: var(--body-font-2);
  font-weight: 400;
  font-size: 90px;
}

.home__img,
.home__img_2 {
  width: 250px;
  position: absolute;
  top: 3.5rem;
  right: -3rem;
  z-index: var(--z-tooltip);
}

.home__data {
  padding-top: 5rem;
}

.home__header {
  position: relative;
}

.home__title {
  position: absolute;
  top: -7rem;
  left: 0rem;
  line-height: 6rem;
  font-size: 3rem;
  background: var(--text-gradient);
  color: #FFF;
  -webkit-background-clip: text;
  background-clip: text;
}

.home__subtitle {
  font-size: var(--big-font-size);
  margin-bottom: var(--mb-2-5);
}

.home__title-description {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
  margin-top: -19px;
}

.home__description {
  margin-bottom: 2.5rem;
  line-height: var(--text-line-height);
  font-weight: 500;
}

.home__price {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-left: var(--mb-0-75);
}

.carousel__img {
  border-radius: 2rem;
  width: 70rem;
}

.carousel__img {
  text-transform: uppercase;
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--lionheart-basic-color);
  color: var(--body-color-2);
  padding: 0.5rem 1rem;
  border-radius: .5rem;
  transition: .3s;
  border: 2px solid;
}

.button:hover {
  background-color: var(--body-color-2);
  color: var(--lionheart-basic-color);
  stroke: var(--lionheart-basic-color 7px);
  border-color: var(--lionheart-basic-color);
}

.button__icon {
  font-size: 1rem;
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: .75rem;
  justify-content: center;
  font-weight: 500;
}

/*=============== SPONSOR ===============*/

.sponsor {
  padding: 2.5rem 0 2rem;
}

.sponsor__img {
  width: 90px;
}

.sponsor__container {
  grid-template-columns: repeat(4, 1fr);
  gap: 15rem 1.5rem;
  padding-top: 12rem;
}

/*=============== GALLERY =================*/
.gallery__line {
  line-height: 4rem;
  color: var(--lionheart-basic-color);
  margin-top: 5rem;
}

article.gallery__card {
  text-align: center;
}

a.gallery__description {
  text-align: center;
  text-decoration: none;
  color: var(--white-color);
  font-weight: 500;
  font-size: .9rem;
  padding: 10px 10px;
}

.gallery__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 0.5rem;
  padding-top: 2rem;
}

img {
  border-radius: 1rem;
}

.section__title {
  font-family: var(--body-font-2);
  font-weight: 400;
  font-size: 70px;
}

/*=============== SPECS ===============*/
.specs__container {
  position: relative;
}

.specs__content {
  row-gap: 2.5rem;
}

.specs__data {
  display: grid;
  row-gap: .25rem;
}

.specs__icon {
  font-size: 1.2rem;
  color: var(--white-color);
}

.specs__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--lionheart-basic-color);
}

.specs__subtitle {
  font-size: var(--smaller-font-size);
}

.specs__data:nth-child(1) {
  margin-left: 3.5rem;
}

.specs__data:nth-child(2) {
  margin-left: 3rem;
}

.specs__data:nth-child(3) {
  margin-left: 1.5rem;
}

.specs__data:nth-child(4) {
  margin-left: 1.5rem;
}

.specs__img {
  width: 175px;
  position: absolute;
  top: -3rem;
  right: 1rem;
}

/*=============== CUSTOM ===============*/
.discount__container {
  position: relative;
  background-color: var(--body-color-2);
  backdrop-filter: blur(90%);
  padding: 2rem 1.5rem;
  border-radius: .75rem;
  text-align: center;
}

.discount__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-0-75);
  font-weight: 600;
}

.discount__description {
  margin-bottom: var(--mb-1);
}

.discount__img {
  width: 600px;
  position: absolute;
  top: 13rem;
  right: 0rem;
}

/*=============== PRODUCTS ===============*/
.products__line {
  line-height: 4rem;
  color: var(--lionheart-basic-color);
  padding-top: 5rem;
}

.products__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 15rem 1.5rem;
  padding-top: 12rem;
}

.products__card {
  position: relative;
  height: 132px;
  background-color: var(--body-color-2);
  padding: .75rem;
  border-radius: .5rem;
  display: grid;
}

.products__title {
  margin-bottom: .5rem;
}

.products__img {
  width: 125px;
  position: absolute;
  inset: 0;
  margin-right: auto;
  margin-left: auto;
  top: -9rem;
}

.products__content {
  align-self: flex-end;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
}

.products__title, .products__price {
  font-size: var(--small-font-size);
  color: #FFF;
}

.products__price {
  font-weight: var(--font-semi-bold);
}

.products__button {
  right: 0.2rem;
  bottom: 0.2rem;
  padding: .5rem;
  border-radius: .35rem;
}

/*=============== CASE ===============*/
.case {
  display: none;
}

.case__container {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  display: none;
}

.case__data {
  padding: 5rem 0 3rem;
}

.case__img {
  width: 250px;
  position: absolute;
  left: -7rem;
}

.case__description {
  margin-bottom: var(--mb-1-5);
  line-height: var(--text-line-height);
}

/*=============== FOOTER ===============*/
.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__logo {
  width: 8rem;
  display: none;
}

.footer__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

.footer__links {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  justify-content: center;
  font-size: 30px;
}

.footer__link {
  color: var(--text-color);
}

.footer__link:hover {
  color: var(--white-color);
}

.footer__form {
  display: flex;
  column-gap: .5rem;
  background-color: var(--body-color-2);
  padding: .5rem .75rem;
  border-radius: .5rem;
}

.footer__input {
  background-color: var(--body-color-2);
  width: 90%;
  color: var(--white-color);
}

.footer__input::placeholder {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
}

.footer__social {
  text-align: center;
}

.footer__social-link {
  display: inline-flex;
  color: var(--white-color);
  background-color: var(--container-color);
  padding: .5rem;
  border-radius: .25rem;
  font-size: 1rem;
  margin: 0rem 1rem 0rem 1rem;
}

.footer__social-link:hover {
  background-color: var(--black-color);
}

.footer__copy {
  margin-top: 5rem;
  text-align: center;
}

.footer__copy__2 {
  text-align: center;
  padding: 1rem 0rem;
}

.footer__copy-link-2 {
  font-weight: 600;
  color: #FFF;
}

.footer__copy-link-2:hover {
  color: var(--lionheart-basic-color);
}

.footer__copy-link {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  background-color: var(--lionheart-basic-color);
  border-radius: .25rem;
  padding: 0.4rem 0.4rem;
  opacity: 9;
  z-index: var(--z-tooltip);
  transition: .4s;
  border: 2px transparent;
}

.scrollup:hover {
  background-color: var(--body-color-2);
  opacity: 1;
}

.scrollup__icon {
  color: var(--body-color-2);
  font-size: 1.7rem;
}

.scrollup__icon:hover {
  color: var(--lionheart-basic-color);
  border-color: var(--lionheart-basic-color);
  border: 2px;
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-thumb-color-alt);
}

/*=============== MEDIA QUERIES ===============*/
/*=============== DO NOT EDIT!! ===============*/

/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .section {
    padding: 4rem 0.5rem;
  }

  .products__title, .products__price {
    font-family: var(--body-font);
    font-size: 10px;
  }

  .products__price {
    display: none;
  }

  .products__line {
    line-height: 3rem;
    color: var(--lionheart-basic-color);
    padding-top: 4rem;
  }

  .section__title {
    font-size: var(--big-font-size);
  }

  .carousel__title {
    font-size: 30px;
    padding-bottom: 1rem;
  }

  .home__img {
    width: 200px;
    top: -13rem;
  }
  .home__title {
    top: -4rem;
    font-size: var(--bigger-font-size);
  }
  .home__data {
    padding-top: 1rem;
  }
  .home__description {
    font-size: var(--small-font-size);
  }
  .specs__img {
    width: 140px;
    top: 1rem;
    right: 0rem;
  }
  .specs__content {
    row-gap: 2rem;
  }

  .case__container {
    grid-template-columns: .6fr 1fr;
  }
  .case__img {
    width: 220px;
    top: -2rem;
    left: -9rem;
  }
  .case__data {
    padding: 0;
  }

  .products__button {
    font-size: 11px;
  }

  .products__container {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }

  .sponsor__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    padding-top: 12rem;
  }
}

@media screen and (min-width: 341px) {

  body { 
    background-position: top;
    background-size: inherit;
    background-repeat: repeat-y;
  }
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .section {
    padding: 4rem 0.5rem;
  }

  .products__title, .products__price {
    font-family: var(--body-font);
    font-size: 10px;
  }

  .products__price {
    display: none;
  }

  .products__line {
    line-height: 2rem;
    color: var(--lionheart-basic-color);
    padding-top: 4rem;
  }

  .section__title {
    font-size: var(--big-font-size);
  }

  .carousel__title {
    font-size: 20px;
    letter-spacing: 5px;
    padding-bottom: 1rem;
    text-transform: uppercase;
  }

  .home__img {
    width: 200px;
    top: -13rem;
  }
  .home__title {
    top: -4rem;
    font-size: var(--bigger-font-size);
  }
  .home__data {
    padding-top: 1rem;
  }
  .home__description {
    font-size: var(--small-font-size);
  }
  .specs__img {
    width: 140px;
    top: 1rem;
    right: 3rem;
  }
  .specs__content {
    row-gap: 2rem;
  }

  .case__container {
    grid-template-columns: .6fr 1fr;
  }
  .case__img {
    width: 220px;
    top: -2rem;
    left: -9rem;
  }
  .case__data {
    padding: 0;
  }

  .products__button {
    font-size: 11px;
  }

  .products__container {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }

  .sponsor__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    padding-top: 12rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .home__container {
    grid-template-columns: .8fr 1fr;
  }
  .home__data {
    padding-top: 2rem;
  }
  .home__img {
    top: -7rem;
    left: 0;
  }
  .specs__img {
    position: initial;
  }
  .specs__container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
  }
  .case__img {
    position: initial;
  }
  .case__data {
    padding: 0;
  }
  .case__container {
    grid-template-columns: max-content 250px;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
  }
  .discount__img {
    position: initial;
  }
  .discount__container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
  }
  .products__container {
    grid-template-columns: repeat(3, 142px);
    justify-content: center;
  }

  .gallery__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem 1.5rem;
    padding-top: 12rem;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }
  .section {
    padding: 0rem 2rem;
  }

  .home {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }

  .specs {
    padding-bottom: 5rem;
  }

  .discount {
    padding-bottom: 5rem;
  }

  .container {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__logo {
    width: 10rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }
  .nav__link {
    font-size: var(--normal-font-size);
    text-transform: initial;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .home__container {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
  }

  .products__price {
    margin-bottom: .5rem;
    margin-top: .2rem;
  }

  .home__img {
    top: -9rem;
    left: 4rem;
  }
  .home__data {
    padding-top: 8rem;
    padding-left: 8rem;
  }
  .specs__img {
    width: 160px;
    margin-right: 10rem;
  }

  .specs__container {
    align-items: stretch;
  }

  .specs__content {
    row-gap: 2rem;
    padding-left: 7rem;
  }

  .case__container {
    column-gap: 5rem;
  }
  .case__img {
    width: 300px;
  }
  .case__description {
    margin-bottom: var(--mb-2);
  }
  .discount__container {
    grid-template-columns: 250px max-content;
    justify-content: flex-start;
    column-gap: 0rem;
    padding: 3rem 3rem;
  }

  .discount__img {
    width: 400px;
  }

  .discount__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
  }
  .discount__description {
    margin-bottom: var(--mb-2);
  }

  .products__title {
    font-size: 13px;
  }

  .products__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 3rem;
    padding-top: 15rem;
  }
  .products__card {
    height: 190px;
    padding: 1rem;
  }

  .footer__social {
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
  }

  .gallery__container {
    padding-top: 0rem;
  }
  .products__img {
    width: 178px;
    top: -13rem;
  }
  .footer__container {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .carousel__title {
    font-size: 50px;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1rem;
  }

  .sponsor {
    padding: 4rem 0 2rem;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__img_2 {
    display: none;
  }

  .home {
    padding-bottom: 8rem;
    margin-top: 4rem;
  }

  .products__line {
    line-height: normal;
  }

  .specs__img {
    width: 245px;
    margin-right: 10rem;
  }

  .nav__logo {
    width: 165px;
  }

  .home__img {
    width: 600px;
    top: -60rem;
    left: -10rem;
    display: 100%;
  }

  .home__title span {
    position: absolute;
    top: -7rem;
    left: 0rem;
    line-height: 6rem;
    font-size: 1rem;
    background: var(--text-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 30%;
  }

  .home__title {
    top: -5rem;
    opacity: 80%;
  }

  .home__title-description {
    margin-top: 0;
  }
  .home__subtitle {
    margin-bottom: 1rem;
  }

  .home__description {
    padding-right: 5rem;
  }
  .sponsor__img {
    width: 100px;
  }
  .discount__img {
    width: 900px;
    position: absolute;
    top: -2rem;
    rotate: 0deg;
    right: -14rem;
  }

  .specs__content {
    row-gap: 7rem;
  }

  .footer__container {
    padding-top: 3rem;
    align-items: center;
  }
  .footer__copy {
    margin-top: 9rem;
  }

  .gallery__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 3rem;
    padding-top: 2rem;
  }
}
