/*=============== GOOGLE FONTS =============== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&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%);
  --lightgrey-color:#D1D1CF;
  --white-color:#FFF;
  --yellow-color:#FFDD00;
  --body-color:#161616;
  --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%);
  /*========== Font and typography ========== */
  --body-font:"new-science-extended", sans-serif;
  --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;
  /*========== 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:2.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 =============== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

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

button {
  cursor: pointer;
}

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

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

.section__title {
  font-size: var(--bigger-font-size);
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.section__title-gradient {
  background: var(--text-gradient);
  color: transparent;
  -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: transparent;
}

/*=============== NAV =============== */
.nav {
  height: var(--header-height);
  box-sizing: content-box;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  width: 200px;
}

.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);
    top: -100%;
    left: 0;
    width: 100%;
    padding: 4rem 0 3rem;
    transition: 0.4s;
  }
}
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.nav__link {
  color: var(--lightgrey-color);
  font-size: var(--h2-font-size);
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
  transition: 0.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: 1rem;
  right: 1rem;
  color: var(--white-color);
  cursor: pointer;
}

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

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

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

/*=============== HOME =============== */
.home {
  height: 100svh;
  padding: 0 !important;
  position: relative;
}
.home__slide {
  height: 100svh;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.home__slide ::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 100px;
  background: rgb(22, 22, 22);
  background: linear-gradient(0deg, rgb(22, 22, 22) 0%, rgba(22, 22, 22, 0) 100%);
}
.home__slide--flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 160px;
}
.home__slide--pleca {
  width: 200px;
  height: 16px;
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .home__slide--pleca {
    width: 80px;
  }
}
.home__slide--cycle {
  background-image: url("../img/smart-think-training-cover-cycle.jpg");
  background-position: center center;
  background-size: cover;
}
.home__slide--kranking {
  background-image: url("../img/smart-think-training-cover-kranking2.jpg");
  background-position: center center;
  background-size: cover;
}
.home__slide--body {
  background-image: url("../img/smart-think-training-cover-body.jpg");
  background-position: center center;
  background-size: cover;
}
.home__slide--tit {
  font-family: new-science, sans-serif;
  font-size: 4rem;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .home__slide--tit {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .home__slide--tit {
    font-size: 2.2rem;
  }
}
.home__overlay {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 30%;
  height: auto;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .home__overlay {
    width: 50%;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .home__overlay {
    width: 80%;
  }
}
.home__overlay img {
  width: 100%;
  margin-bottom: 20px;
}

.pleca__cycle {
  background-color: #C5FF02;
}
.pleca__kranking {
  background-color: #F28E28;
}
.pleca__body {
  background-color: #DA3381;
}

.title__cont {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
.title__cont--planes {
  position: relative;
  width: 100%;
}
.title__cont--planes ::before {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 10px;
  background-image: url("../img/svg/icon-planes.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width: 640px;
  height: 140px;
  z-index: -1;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .title__cont--planes ::before {
    width: 100%;
    height: 90px;
  }
}
.title__planes {
  font-family: "new-science", sans-serif;
  font-weight: 700;
  font-size: 7rem;
  color: var(--yellow-color);
}
@media screen and (max-width: 768px) {
  .title__planes {
    font-size: 4rem;
  }
}
.title__app {
  font-family: "new-science", sans-serif;
  flex-wrap: bolder;
  font-size: 5rem;
  color: var(--yellow-color);
}
@media screen and (max-width: 768px) {
  .title__app {
    font-size: 2.6rem;
  }
}
.title__card {
  font-family: "new-science", sans-serif;
  color: var(--white-color);
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.text__base {
  font-family: "new-science-extended", sans-serif;
  font-size: 2rem;
  flex-wrap: 500;
  color: var(--yellow-color);
}

.planes {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  padding: 6rem 60px !important;
}
@media screen and (max-width: 768px) {
  .planes {
    padding: 3rem 20px !important;
  }
}

.card__content {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .card__content {
    flex-direction: column;
    gap: 30px;
  }
}
.card__item {
  border-radius: 10px;
  border: 1px solid var(--white-color);
  padding: 40px;
  text-align: center;
  width: 33%;
}
@media screen and (max-width: 768px) {
  .card__item {
    width: 100%;
  }
}
.card__caption {
  font-family: "new-science", sans-serif;
  font-size: 1rem;
  color: var(--lightgrey-color);
  margin-bottom: 0;
  line-height: 1;
}
.card__precio {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "new-science", sans-serif;
  font-weight: bold;
  font-size: 4rem;
  color: var(--yellow-color);
  line-height: 1;
  margin-bottom: 10px;
}
.card__descripcion {
  font-family: "new-science-extended", sans-serif;
  font-size: 1.4rem;
  color: var(--white-color);
  line-height: 1.3;
  margin-top: 30px;
  margin-bottom: 30px;
}

.btn__cont--center {
  width: 100%;
  text-align: center;
}
.btn__cont--mt {
  margin-top: 60px;
}
.btn__cont--card {
  width: 100%;
}
.btn__principal {
  font-family: "new-science", sans-serif;
  color: var(--lightgrey-color);
  font-size: 1.2rem;
  padding: 6px 20px 8px 20px;
  border-radius: 50px;
  transition: all 0.3s;
}
.btn__principal--amarillo {
  border: 1px solid var(--yellow-color);
}
.btn__principal--amarillo:hover {
  background-color: var(--yellow-color);
  color: #161616;
}
.btn__principal--pink {
  border: 1px solid #DA3381;
}
.btn__principal--pink:hover {
  background-color: #DA3381;
  color: #161616;
}

.app__full {
  width: 100%;
}
.app__full--center {
  text-align: center;
}
.app__img {
  width: 200px;
}
.app__flex {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .app__flex {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.app__flex--item {
  width: 260px;
  text-align: center;
}
.app__flex--item img {
  height: 80px;
}

/* __BTN_WHATSAPP */
#btn_whatsApp {
  position: fixed;
  bottom: 24px;
  right: 64px;
  z-index: 99;
}

#btn_whatsApp img {
  width: 60px;
  height: auto;
  transform: scale(1);
  transition: all 0.3s ease;
}

#btn_whatsApp img:hover {
  transform: scale(1.1);
}

.home__img {
  width: 250px;
  position: absolute;
  top: -16rem;
  right: 1.5rem;
}

.home__data {
  padding-top: 5rem;
}

.home__header {
  position: relative;
}

.home__title {
  position: absolute;
  top: -4rem;
  left: 1rem;
  line-height: 6rem;
  font-size: var(--biggest-font-size);
  background: var(--text-gradient);
  color: transparent;
  -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);
}

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

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

/*=============== BUTTONS =============== */
.button {
  display: inline-block;
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  transition: 0.3s;
}
.button:hover {
  background-color: var(--black-color-alt);
}

.button__icon {
  font-size: 1.2rem;
}

.button--flex {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

/*=============== SPONSOR =============== */
.sponsor__img {
  width: 90px;
}

.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  row-gap: 5rem;
  justify-items: center;
  align-items: center;
}

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

.specs__content {
  row-gap: 1.5rem;
}

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

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

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

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

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

.specs__img {
  width: 250px;
  position: absolute;
  top: 2rem;
  right: -4rem;
}

/*=============== CASE =============== */
.case__container {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
}

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

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

/*=============== DISCOUNT =============== */
.discount__container {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
}

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

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

.discount__img {
  width: 300px;
  position: absolute;
  top: 4rem;
  right: -11rem;
}

/*=============== PRODUCTS =============== */
.products__line {
  line-height: 4rem;
}

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

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

.products__content {
  align-self: flex-end;
}

.products__title {
  font-size: var(--small-font-size);
}

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

.products__button {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.35rem;
}

/*=============== FOOTER =============== */
.footer {
  padding: 0 !important;
  padding-bottom: 80px !important;
}

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

.footer__logo {
  width: 2rem;
}

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

.footer__links {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

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

.footer__form {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  background-color: var(--container-color);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: var(--mb-2);
}

.footer__input {
  background-color: var(--container-color);
  width: 90%;
  color: var(--white-color);
}
.footer__input::-moz-placeholder {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
}
.footer__input::placeholder {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
}

.footer__social {
  display: flex;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.footer__social-link {
  display: inline-flex;
  color: var(--white-color);
  background-color: var(--container-color);
  padding: 0.5rem;
  border-radius: 0.25rem;
  font-size: 1rem;
}
.footer__social-link:hover {
  background-color: var(--black-color);
}

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

.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(--container-color);
  border-radius: 0.25rem;
  padding: 0.45rem;
  opacity: 9;
  z-index: var(--z-tooltip);
  transition: 0.4s;
}
.scrollup:hover {
  background-color: var(--black-color);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.35rem;
}

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

/*=============== SCROLL BAR =============== */
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
}

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

/*=============== MEDIA QUERIES =============== */
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  .section__title {
    font-size: var(--big-font-size);
  }
  .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: 200px;
  }
  .case__container {
    grid-template-columns: 0.6fr 1fr;
  }
  .case__img {
    width: 220px;
    top: -2rem;
    left: -9rem;
  }
  .products__container {
    grid-template-columns: 142px;
    justify-content: center;
  }
}
/* For medium devices */
@media screen and (min-width: 576px) {
  .home__container {
    grid-template-columns: 0.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__container {
    grid-template-columns: max-content 250px;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 2rem;
         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;
  }
}
@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }
  .section {
    padding: 6rem 0 2rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__logo {
    width: 200px;
  }
  .nav__list {
    flex-direction: row;
    -moz-column-gap: 3.5rem;
         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);
  }
  .home__img {
    top: -9rem;
    left: 4rem;
  }
  .home__data {
    padding-top: 8rem;
  }
  .specs__img {
    width: 300px;
  }
  .case__container {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .case__img {
    width: 300px;
  }
  .case__description {
    margin-bottom: var(--mb-2);
  }
  .discount__container {
    grid-template-columns: 250px max-content;
    justify-content: center;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
    padding: 3rem 0;
  }
  .discount__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
  }
  .discount__description {
    margin-bottom: var(--mb-2);
  }
  .products__container {
    grid-template-columns: repeat(3, 162px);
    gap: 6rem 3rem;
    padding-top: 5rem;
  }
  .products__img {
    width: 95px;
  }
  .footer__container {
    grid-template-columns: 0.4fr 0.7fr 0.7fr 1fr;
  }
}
/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__img {
    width: 300px;
    top: -15rem;
  }
  .home__title {
    top: -5rem;
    left: 3.5rem;
  }
  .home__description {
    padding-right: 5rem;
  }
  .sponsor__img {
    width: 100px;
  }
  .discount__img {
    width: 350px;
  }
  .footer__container {
    padding-top: 3rem;
  }
  .footer__copy {
    margin-top: 9rem;
  }
}/*# sourceMappingURL=style.css.map */