
/*--------------- VARIABLES CSS ---------------*/
:root {
  --header-height: 3rem;

  /*---------- Colors ----------*/

  /* HSL color mode */
  --first-color: hsl(37, 29%, 52%);
  --first-color-second: rgb(218, 183, 132)
  --first-color-alt: hsl(270, 2%, 18%);
  --title-color: hsl(33, 76%, 92%);
  --text-color: hsl(31, 43%, 79%);
  --text-color-light: hsl(33, 75%, 89%);
  --input-color: hsl(36, 91%, 91%);
  --body-color: hsl(0, 0%, 0%);
  --white-color: rgb(231, 231, 231);
  --scroll-bar-color: hsl(0, 0%, 0%);
  --scroll-thumb-color: hsl(35, 16%, 41%);

  /*---------- Fonts and typography ----------*/
  --body-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --title-font:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*---------- Font weight ----------*/
  --font-medium: 200;
  --font-semi-bold: 400;

  /*---------- Margenes Bottom ----------*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*---------- z index ----------*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*---------- Hover overlay ----------*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --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);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

i {
  cursor: pointer;
}

/*---------- REUSABLE CSS CLASSES ----------*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*---------- HEADER ----------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*---------- NAV ----------*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo, .nav__toggle {
  color: var(--white-color);
}

.nav__logo {
  font-weight: var(--font-semi-bold);
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(63, 56, 14, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 1px;
  bottom: -.75rem;
  left: 0;
}

/*---------- HOME ----------*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
  filter: brightness(50%);
}

#sliderImg{
  animation: zoom 20s linear;
}

@keyframes zoom{
  0%{
    transform: scale(1.5);
  }
  15%{
    transform: scale(1);
  }
  85%{
    transform: scale(1);
  }
  100%{
    transform: scale(1);
  }
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.home__data-subtitle,  
.home__social-link, 
.home__info {
  color: var(--white-color);
}

.home__data-title {
  color: hsl(0, 0%, 100%)
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

.home__info {
  background: linear-gradient(180deg,
            hsl(41, 20%, 22%) 0%,
            hsla(36, 6%, 15%, 0) 70%);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  overflow: var(--img-hidden);
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
  filter: saturate(0%);
}

.home__info-img:hover {
  transform: var(--img-scale);
}

/*---------- BUTTONS ----------*/
.button {
  display: inline-block;
  background: linear-gradient(180deg,
            hsl(41, 20%, 22%) 8%,
            hsla(288, 6%, 15%, 0) 90%);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button:hover {
  background: linear-gradient(180deg,
            hsl(0, 0%, 23%) 8%,
            hsla(288, 6%, 15%, 0) 90%);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

/*---------- ABOUT ----------*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about__img-overlay {
  overflow: var(--img-hidden);
}

.about__img-one {
  width: 130px;
}

.about__img-two {
  width: 180px;
}

.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}

/*=============== QUESTIONS ===============*/

.questions{
  background:hsl(35, 15%, 22%);
}

.question__description{
  text-align: center;
  color: var(--text-color);
}

.questions__container{
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.questions__group{
  display: grid;
  row-gap: 1.5rem;
}

.questions__item{
  background:hsl(40, 18%, 13%);
  border-radius: .25rem 0 .25rem 0;
}

.questions__item-title{
  font-size: small;
  font-weight: lighter;
  color: hsl(39, 26%, 53%);
}

.questions__title{
  color: var(--body-color);
  padding-bottom: 20px;
}

.questions__icon{
  font-size: 1.25rem;
  color: var(--title-color);
}

.questions__description{
  font-size: var(--smaller-font-size);
  padding: 0 1.25rem 1.25rem 2.5rem;
  color: hsl(39, 26%, 53%);
}

.questions__header{
  display: flex;
  align-items: center;
  column-gap: .5rem;
  padding: .75rem .5rem;
  cursor: pointer;
}

.questions__content{
  overflow: hidden;
  height: 0;
}

.questions__item,
.questions__header,
.questions__item-title,
.questions__icon,
.questions__description,
.questions__content{
  transition: .3s;
}

.questions__item:hover{
  box-shadow: 0 2px 8px hsla(var(--hue), 4%, 15%, .15);
}

/*Rotate icon, change color of titles and background*/
.accordion-open .questions__header,
.accordion-open .questions__content{
  background-color: var(--first-color);
}

.accordion-open .questions__item-title,
.accordion-open .questions__description,
.accordion-open .questions__icon{
  color: rgb(255, 255, 255);
}

.accordion-open .questions__icon{
  transform: rotate(45deg);
}

/*---------- EXPERIENCE ----------*/
.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
}

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one, 
.experience__img-two {
  transition: var(--img-transition);
}

.experience__img-one:hover, 
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: var(--img-hidden);
}

.experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 4rem;
  right: 0;
}

/*---------- STYLES ----------*/
.style__card, .style__img {
  height: 230px;
  
}

.style__container {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
}

.style__card {
  position: relative;
  overflow: var(--img-hidden);
}

.style__card:hover .style__img {
  transform: var(--img-scale);
  
}

.style__img {
  transition: var(--img-transition);
  filter: opacity(50%);
}


.style__content, .style__title {
  color: rgb(211, 190, 190);
  font-weight: bold;
}

.style__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .75rem .75rem 1rem;
}

.style__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.style__rating-icon {
  font-size: .75rem;
  margin-right: var(--mb-0-25);
}

.style__rating-number {
  font-size: var(--small-font-size);
}

.style__subtitle, .style__price {
  display: block;
}

.style__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.style__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1-25);
}

.style__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem;
}

/*=============== FEATURED ===============*/
.featured_container {
  padding-top: 1rem;
}

.product__description{
  text-align: center;
  color: var(--text-color);
}

.featured_filters {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  margin-bottom: 3.5rem;
}

.featured_item {
  width: 48px;
  height: 48px;
  border: none;
  outline: none;
  padding: .75rem;
  border-radius: 0rem .4rem 0rem .4rem;
  background-color: rgba(33, 33, 33, 0.722);
  color: var(--white-color);
  font-size: var(--normal-font-size);
  cursor: pointer;
  transition: .3s;
}

.featured_item img {
  width: 1.5rem;
}

.featured_item span,
.featured_item img {
  opacity: .3;
  transition: .3s;
}

.featured_item:hover {
  background-color: var(--container-color);
}

.featured_item:hover span,
.featured_item:hover img {
  opacity: 1;
}

.featured_content {
  grid-template-columns: 228px;
  row-gap: 2.5rem;
  justify-content: center;
}

.featured_card {
  position: relative;
  background-color: rgba(47, 47, 47, 0.313);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: .4rem 0rem .4rem 0rem;
}

.featured_card .shape_smaller {
  position: absolute;
  inset: 0;
  margin: auto;
}

.featured_title,
.featured_subtitle,
.featured_img {
  position: relative;
}

.featured_title {
  font-size: var(--h1-font-size);
  margin-bottom: .25rem;
}

.featured_subtitle {
  font-size: var(--small-font-size);
  color: var(--text-color-dark);
}

.featured_img {
  width: 180px;
  margin: 1.5rem 0;
  transition: .3s;
}

.featured_price {
  font-size: var(--h3-font-size);
}

.featured_button {
  border: none;
  outline: none;
  padding: .75rem 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 .8rem 0;
  cursor: pointer;
  background-color: var(--bg-color);
}

.featured_button i {
  font-size: 1.25rem;
  color: #fff;
}

.featured_card:hover .featured_img {
  transform: translateX(-.25rem);
}



/* Active link featured */
.active-featured {
  background-color: var(--container-color);
}

.active-featured span,
.active-featured img {
  opacity: 1;
}

/*---------- SUBSCRIBE ----------*/
.subscribe__bg {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.452), #0a0a0a),
  url(../images/sub2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50rem;
  background-attachment: fixed;
  padding: 2.5rem 0;
}

.subscribe__title, 
.subscribe__description {
  color: var(--white-color);
}

.subscribe__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.subscribe__form {
  background-color: var(--body-color);
  padding: .5rem;
  display: flex;
  justify-content: space-between;
}

.subscribe__input {
  width: 70%;
  padding-right: .5rem;
  background-color: var(--body-color);
  color: var(--text-color);
}

.subscribe__message {
  color: #ccc;
}

.subscribe__input::placeholder {
  color: var(--text-color);
}

/*---------- SPONSOR ----------*/
.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center;
  row-gap: 3.5rem;
}

.sponsor__content:hover .sponsor__img {
  filter: invert(0.5);
}

.sponsor__img {
  width: 90px;
  filter: invert(0.7);
  transition: var(--img-transition);
}

/*---------- FOOTER ----------*/
.footer__container {
  row-gap: 5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__title, 
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title {
  margin-bottom: var(--mb-0-5);
}

.footer__description {
  margin-bottom: var(--mb-2);
}

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: var(--text-color);
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
}

.footer__copy, .footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

.footer__terms-link:hover {
  color: var(--text-color);
}

/*---------- SCROLL UP ----------*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background: linear-gradient(180deg,
  hsl(39, 42%, 40%) 18%,
            hsla(288, 6%, 15%, 0) 90%);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background: linear-gradient(180deg,
  hsl(300, 1%, 21%) 18%,
  hsla(288, 6%, 15%, 0) 90%);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*---------- SCROLL BAR ----------*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*---------- MEDIA QUERIES ----------*/
/* For small devices */
@media screen and (max-width: 340px) {
  .style__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .experience__img {
    padding: 0;
  }

  .items span{
    padding: 14px 13px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    color: #7a6951;
    border-radius: 0px;
    border: 1px solid #7a6951;
    transition: all 0.3s ease;
    margin: .5rem;
  }

  .featured_filters {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .2rem;
    margin-bottom: 3.5rem;
  }

  .featured_item {
    width: 38px;
    height: 38px;
    border: none;
    outline: none;
    padding: .75rem;
    border-radius: 0rem .4rem 0rem .4rem;
    background-color: rgba(33, 33, 33, 0.722);
    color: var(--white-color);
    font-size: var(--normal-font-size);
    cursor: pointer;
    transition: .3s;
  }

  .active-featured {
    background-color: var(--container-color);
  }
  
  .active-featured span,
  .active-featured img {
    opacity: 1;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .style__container {
    grid-template-columns: repeat(2, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }

.wrapper__container{
  margin: 30px auto;
}
.wrapper__container .nav__items .items{
  flex-wrap: wrap;
  justify-content: center;
}
.nav__items .items span{
  margin: 5px;
}
.gallery .image{
  width: 100%;
}

}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }
  .home__data {
    align-self: flex-end;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    bottom: 3rem;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__data, .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .questions__container{
    grid-template-columns: repeat(2, 1fr);
  }
  .questions__container{
    align-items: flex-start;
  }
  .discover__container {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
  .discover__container,
  .style__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.452), #0a0a0a),
    url(../images/sub2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }

  .wrapper__container .nav__items .items{
    max-width: 600px;
  }
  .nav__items .items span{
    padding: 7px 15px;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr .5fr;
  }
  .home__img {
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 140vh;
    object-fit: cover;
    object-position: 83%;
  }
  #sliderImg{
    position: absolute;
    width: 100%;
    animation: zoom 20s linear;
  }
  
  @keyframes zoom{
    0%{
      transform: scale(1.5);
    }
    15%{
      transform: scale(1);
    }
    85%{
      transform: scale(1);
    }
    100%{
      transform: scale(1);
    }
  }
  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-img {
    width: 240px;
  }
  .about__img-one {
    width: 230px;
  }
  .about__img-two {
    width: 290px;
  }
  .questions__container{
    padding: 1rem 0 6rem;
  }
  .questions__title{
    text-align: initial;
  }
  .questions__group{
    row-gap: 2rem;
  }
  .questions__header{
    padding: 1rem;
  }
  .questions__description{
    padding: 0 3.5rem 2.25rem 2.75rem;
  }
  .discover__card {
    width: 237px;
  }
  .discover__container {
    width: 700px;
  }
  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 4rem;
  }

  .featured_container{
    padding-bottom: 9.5rem;
  }

  .featured_filters{
    column-gap: 2rem;
    margin-bottom: 4.5rem;
  }

  .featured_item{
    width: 52px;
    height: 52px;
  }

  .featured_item img{
    width: 2rem;
  }

  .featured_content{
    grid-template-columns: repeat(3,248px);
    gap: 4rem;
  }

  .featured_title{
    font-size: 1.5rem;
  }

  .featured_subtitle{
    font-size: .9rem;
  }

  .style__container {
    gap: 3rem 2rem;
  }
  .style__card, .style__img {
    height: 263px;
  }
  .footer__content {
    justify-items: center;
    padding-top: 22px;
  }

}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }

  .subscribe__message {
    padding-left: 400px;
    padding-top: 20px;
    align-items: center;
    justify-content: center;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container, .home__img {
    height: 640px;
  }
}

