@font-face{
  font-family: myfont;
  src: url(./sign.ttf);
}

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem; /*56px*/

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --hue: 720;
  --first-color: rgb(115, 97, 74);
  --first-color-alt: rgb(119, 94, 65);
  --first-color-light: rgb(202, 165, 120);
  --first-color-lighten: rgb(179, 149, 121);
  --title-color: rgb(110, 91, 74);
  --text-color: rgb(221, 202, 183);
  --text-color-dark: rgb(214, 197, 170);
  --text-color-light: rgb(243, 217, 192);
  --body-color: rgb(45, 42, 39);
  --container-color: rgb(210, 184, 157);
  --container-color-dark: rgba(247, 202, 157, 0.504);
  --nav-menu: rgb(153, 130, 107);
  

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --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: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --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;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --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,
button,
input,
textarea{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body{
  margin: var(--header-height) 0 0 0;
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .4s; /*For animation dark mode*/
}

button{
  cursor: pointer;
  border: none;
  outline: none;
}

h1,h2,h3{
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

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

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

span{
  color: #fff;
}

input {
  outline: none;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
body.dark-theme{
  --first-color-dark: hsl(var(--hue), 8%, 20%);
  --title-color: hsl(var(--hue), 4%, 95%);
  --text-color: hsl(var(--hue), 4%, 75%);
  --body-color: hsl(var(--hue), 8%, 12%);
  --container-color: hsl(var(--hue), 8%, 16%);
}

/*========== Button Dark/Light ==========*/
.change-theme{
  color: var(--title-color);
  font-size: 1.15rem;
  cursor: pointer;
}

.nav__btns{
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}

/*========== 
Color changes in some parts of 
the website, in dark theme 
==========*/

.dark-theme .steps__bg,
.dark-theme .questions{
  background-color: var(--first-color-dark);
}

.dark-theme .product__circle,
.dark-theme .footer__subscribe{
  background-color: var(--container-color);
}

.dark-theme .scroll-header{
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 4%, .3);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section{
  padding: 5.5rem 0 1rem;
}

.section__title,
.section__title-center{
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  line-height: 140%;
}

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

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

.grid{
  display: grid;
}

.main{
  overflow: hidden; /*For animation*/
}

/*=============== HEADER ===============*/
.header{
  width: 100%;
  background-color: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: .4s; /*For animation dark mode*/
}

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

.nav__logo,
.nav__toggle,
.nav__close{
  color: var(--title-color);
}

.nav__logo{
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  transition: .3s;
}

.nav__logo-icon{
  font-size: 1.15rem;
  color: var(--first-color);
}

.nav__logo:hover{
  color: var(--first-color-light);
}

.nav__toggle{
  display: inline-flex;
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px){
  .nav__menu{
    position: fixed;
    background-color: var(--nav-menu);
    width: 80%;
    height: 100%;
    top: 0;
    right: -100%;
    box-shadow: -2px 0 4px rgba(24, 22, 15, 0.314);
    padding: 4rem 0 0 3rem;
    border-radius: 1rem 0 0 1rem;
    transition: .3s;
    z-index: var(--z-fixed);
  }
}

.nav__close{
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  cursor: pointer;
}

.nav__list{
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav__link{
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: .3s;
}

.nav__link:hover{
  color: var(--first-color-light);
}

/* Show menu */
.show-menu{
  right: 0;
}

/* Change background header */
.scroll-header{
  box-shadow: 0 1px 4px rgba(19, 23, 19, 0.737);
}

/* Active link */
.active-link{
  position: relative;
  color: var(--first-color);
}

.active-link::after{
  content: '';
  position: absolute;
  bottom: -.2rem;
  left: 0;
  width: 50%;
  height: 1px;
  background-color: var(--first-color-light);
}

/*=============== HOME ===============*/
.home{
  padding: 3.5rem 0 6rem;
  background: linear-gradient(
    to right,
    rgb(93, 81, 66) 0%,
    rgb(93, 81, 66) 73.5%,
    rgb(45, 42, 39) 73.5%,
    rgb(45, 42, 39) 100%
  );
}

.home__container{
  position: relative;
  row-gap: 2rem;
}

.home__img{
  width: 250px;
  justify-self: center;
  border-radius: 1rem 0rem 1rem 0rem;
}

.background_img{
  position: absolute;
  width: 20rem;
  z-index: 0;
  opacity: 0.4;
  top: 260px;
  right: 180px;
}

.corner_img{
  position: absolute;
  width: 8rem;
  z-index: 0;
  opacity: 0.3;
  bottom: 490px;
  left: 370px;
}

.home__title{
  font-size: var(--big-font-size);
  line-height: 140%;
  margin-bottom: var(--mb-1);
  color: var(--first-color-light);
}

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

.home__social{
  position: absolute;
  top: 2rem;
  right: -1rem;
  display: grid;
  justify-items: center;
  row-gap: 3.5rem;
}

.home__social-follow{
  font-weight: var(--font-medium);
  font-size: var(--smaller-font-size);
  color: var(--first-color-light);
  position: relative;
  transform: rotate(90deg);
}

.home__social-follow::after{
  content: '';
  position: absolute;
  width: 1rem;
  height: 2px;
  background-color: var(--first-color-light);
  right: -45%;
  top: 50%;
}

.home__social-links{
  display: inline-flex;
  flex-direction: column;
  row-gap: .25rem;
}

.home__social-link{
  font-size: 1rem;
  color: var(--first-color-light);
  transition: .3s;
}

.home__social-link:hover{
  transform: translateX(.25rem);
}

/*=============== BUTTONS ===============*/
.button{
  display: inline-block;
  background-color: transparent;
  color: rgb(196, 179, 164);
  padding: 1rem 1.75rem;
  border-radius: 0 .5rem 0 .5rem;
  font-weight: var(--font-medium);
  transition: .3s;
}

.button:hover{
  background-color: var(--first-color-alt);
  color: rgb(255, 236, 220);
}

.button__icon{
  transition: .3s;
}

.button:hover .button__icon{
  transform: translateX(.25rem);
  color: rgb(255, 236, 220);
}

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

.button--link{
  color: var(--first-color);
  font-weight: var(--font-medium);
}

.button--link:hover .button__icon{
  transform: translateX(.25rem);
}

/*=============== ABOUT ===============*/
.about__container{
  row-gap: 2rem;
  padding-bottom: 40px;
}

.about__img{
  width: 280px;
  justify-self: center;
}

.section_img{
  position: absolute;
  z-index: -1;
  opacity: 0.1;
  width: 20rem;
  top: 1px;
}

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

.about__description{
  margin-bottom: var(--mb-2);
  color: var(--text-color-dark);
}

.about__details{
  display: grid;
  row-gap: 1rem;
  margin-bottom: var(--mb-2-5);
  color: var(--text-color-dark);
}

.about__details-description{
  display: inline-flex;
  column-gap: .5rem;
  font-size: var(--small-font-size);
  color: var(--text-color-dark);
}

.about__details-icon{
  font-size: 1rem;
  color: var(--first-color);
  margin-top: .15rem;
}

/*=============== GALLERY ===============*/
.gallery__container {
  height: 100vh;
  display: grid;
  align-content: center;
  justify-content: center;
}

.gallery__card {
  position: relative;
  width: 208px;
  height: 268px;
  border-radius: 1rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.gallery__img, 
.gallery__card::after, 
.gallery__data {
  position: absolute;
}

.gallery__img {
  inset: 0;
  margin: auto;
  transition: transform .3s;
}

.gallery__card::after {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
              hsla(0, 0%, 100%, 0) 32%,
              hsla(0, 0%, 0%, .3) 100%);
  top: 0;
  z-index: 1;
}

.gallery__data {
  bottom: 1.5rem;
  left: 1.75rem;
  z-index: 10;
}

.gallery__title, 
.gallery__subtitle {
  color: var(--text-color);
  font-weight: 500;
}

.gallery__title {
  font-size: var(--h3-font-size);
}

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

.gallery__overflow {
  position: relative;
}

.gallery__thumbnail {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  transition: transform .3s;
}

.gallery__thumbnail-img {
  position: absolute;
  inset: 0;
  margin: auto;
}

/* Swiper class */
.gallery-cards,
.gallery-thumbs {
  width: 260px;
}

.gallery-cards:hover .gallery__img {
  transform: scale(1.1);
}

.gallery__container .swiper-wrapper {
  padding: 2.5rem 0;
}

.gallery-thumbs {
  height: 132px;
}

/* Active thumbnail */
.swiper-slide-active .gallery__thumbnail {
  transform: translateY(-1.25rem) scale(1.2);
}

/* Rotate thumbnail */
.swiper-slide-next .gallery__thumbnail {
  transform: rotate(15deg);
}

.swiper-slide-prev .gallery__thumbnail {
  transform: rotate(-15deg);
}

/* Sliding numbers */
.swiper-pagination-fraction {
  font-size: var(--small-font-size);
  letter-spacing: -1px;
  font-weight: 500;
  color: var(--first-color);
  bottom: 0;
}

/* Arrow buttons */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: '';
}

.swiper-button-next,
.swiper-button-prev {
  font-size: 1.5rem;
  color: var(--text-color-black);
  top: 5.5rem;
}

.swiper-button-next {
  right: -1.5rem;
  transform: rotate(15deg);
}

.swiper-button-prev {
  left: -1.5rem;
  transform: rotate(-15deg);
}

/* Other swiper settings */
.gallery-cards::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: initial;
}

/* Video Gallery */

.video__container{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  align-items: flex-start;
  padding: 5px 5%;
}

.video__container .main-video{
  background: rgba(75, 71, 66, 0.555);
  border-radius: 5px;
  padding: 10px;
}

.video__container .main-video video{
  width: 100%;
  border-radius: 5px;
}

.video__container .main-video .title{
  color: azure;
  font-size: 13px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.video__container .video-list{
  background: rgba(9, 10, 8, 0.555);
  border-radius: 5px;
  height: 520px;
  overflow-y: scroll;
}

.video__container .video-list::-webkit-scrollbar{
  width: 7px;
}

.video__container .video-list::-webkit-scrollbar-track{
  background: rgb(210, 185, 131);
  border-radius: 50px;
}

.video__container .video-list::-webkit-scrollbar-thumb{
  background: rgb(29, 27, 27);
  border-radius: 50px;
}

.video__container .video-list .vid video{
  width: 260px;
  border-radius: 5px;
  outline: none;
}

.video__container .video-list .vid:hover{
  background: rgb(77, 77, 77);
}

.video__container .video-list .vid.active{
  background: rgba(250, 200, 125, 0.22);
}

.video__container .video-list .vid.active .title{
  color: black;
}

.video__container .video-list .title{
  color: #ccc;
  font-size: 12px;
}

/*=============== PRODUCTS ===============*/
.product__description{
  text-align: center;
  color: var(--text-color-dark);
}

.product__container{
  padding: 3rem 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.product__card{
  display: grid;
  position: relative;
}

.product__img{
  position: relative;
  width: 120px;
  justify-self: center;
  margin-bottom: var(--mb-0-75);
  transition: .3s;
}

.product__title,
.product__price{
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.product__title{
  margin-bottom: .25rem;
}

.product__button{
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--first-color);
  color: #FFF;
  padding: .25rem;
  border-radius: .35rem;
  font-size: 1.15rem;
}

.product__button:hover{
  background-color: var(--first-color-alt);
}

.product__circle{
  width: 90px;
  height: 90px;
  background-color: var(--first-color-lighten);
  border-radius: 50%;
  position: absolute;
  top: 18%;
  left: 5%;
}

.product__card:hover .product__img{
  transform: translateY(-.5rem);
}

/*=============== FEATURED ===============*/
.featured_container {
  padding-top: 1rem;
}

.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 .75rem 0rem .75rem;
  background-color: var(--container-color-dark);
  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(--first-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: var(--container-color-dark);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1rem 0rem 1rem 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;
  color: var(--body-color);
}

.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);
  color: var(--body-color);
}

.featured_button {
  border: none;
  outline: none;
  padding: .75rem 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 1rem 0;
  cursor: pointer;
  background-color: var(--first-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(--first-color);
}

.active-featured span,
.active-featured img {
  opacity: 1;
}

/*=============== QUESTIONS ===============*/

.questions{
  background-color: var(--first-color-lighten);
}

.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-color: var(--container-color);
  border-radius: .25rem 0 .25rem 0;
}

.questions__item-title{
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.questions__title{
  color: var(--body-color);
}

.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;
}

.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: #FFF;
}

.accordion-open .questions__icon{
  transform: rotate(45deg);
}

/*=============== SUBSCRIBE ===============*/
.subscribe__bg {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.452), #0a0a0a),
  url(../img/sub.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 2.5rem 0;
}

.subscribe__title, 
.subscribe__description {
  color: var(--white-color);
  text-align: center;
}

.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);
}

/*=============== CONTACT ===============*/
.contact__container{
  row-gap: 3.5rem;
}

.contact__data{
  display: grid;
  row-gap: 2rem;
}

.contact__subtitle{
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color-dark);
  margin-bottom: var(--mb-0-5);
}

.contact__description{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.contact__icon{
  font-size: 1.25rem;
}

.contact__inputs{
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.contact__content{
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-color-dark);
}

.contact__input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none;

  color: var(--text-color-dark);

  
  border: none;
  outline: none;
  z-index: 1;
}

.contact__label{
  position: absolute;
  top: .75rem;
  width: 100%;
  font-size: var(--small-font-size);
  color: var(--text-color-dark);
  transition: .3s;
}

.contact__area{
  height: 7rem;
}

.contact__area textarea{
  resize: none;
}



/*Input focus move up label*/
.contact__input:focus + .contact__label{
  top: -.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*Input focus sticky top label*/
.contact__input:not(:placeholder-shown).contact__input:not(:focus) + .contact__label{
  top: -.75rem;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*=============== FOOTER ===============*/
.footer__container{
  row-gap: 3rem;
}

.footer__logo{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: var(--mb-2-5);
  transition: .3s;
}

.footer__logo-icon{
  font-size: 1.15rem;
  color: var(--first-color);
}

.footer__logo:hover{
  color: var(--first-color-light)
}

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

.footer__subscribe{
  background-color: var(--first-color-lighten);
  padding: .75rem;
  display: flex;
  justify-content: space-between;
  border-radius: .5rem;
}

.footer__input{
  width: 70%;
  padding: 0 .5rem;
  background: none;
  color: var(--text-color-dark);
  border: none;
  outline: none;
}

.footer__button{
  padding: 1rem;
}

.footer__data{
  display: grid;
  row-gap: .75rem;
  color: var(--text-color-dark);
}

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

.footer__social{
  display: inline-flex;
  column-gap: .75rem;
}

.footer__social-link{
  font-size: 1rem;
  color: var(--text-color-dark);
  transition: .3s;
}

.footer__social-link:hover{
  transform: translateY(-.25rem);
}

.footer__cards{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.footer__card{
  width: 35px;
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
  margin: 0rem 0 1rem;
}

.footer__terms-link {
  font-size: var(--smaller-font-size);
  color: var(--text-color-dark);
}

.footer__terms-link:hover {
  color: var(--text-color-dark);
}

.footer__copy{
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-dark);
  margin: 5rem 0 1rem;
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  background-color: var(--first-color);
  right: 1rem;
  bottom: -30%;
  display: inline-flex;
  padding: .5rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s;
}

.scrollup__icon{
  font-size: 1rem;
  color: #FFF;
}

.scrollup:hover{
  background-color: var(--first-color-alt);
  opacity: 1;
}

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

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background: var(--body-color);
}

::-webkit-scrollbar-thumb{
  background: rgb(172, 147, 120);
  
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px){
  .container{
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  .home{
    padding: 3.5rem 0 7rem;
    background: linear-gradient(
      to right,
      rgb(93, 81, 66) 0%,
      rgb(93, 81, 66) 73.5%,
      rgb(45, 42, 39) 73.5%,
      rgb(45, 42, 39) 100%
    );
  }
  .home__img{
    width: 220px;
    border-radius: 1rem 0rem 1rem 0rem;
  }
  .home__title{
    font-size: var(--h1-font-size);
  }
  .home__description{
    margin-bottom: var(--mb-2-5);
    font-size: .7rem;
  }

  .background_img{
   display: none;
  }
  .steps__bg{
    padding: 2rem 1rem;
  }
  .steps__card{
    padding: 1.5rem;
  }

  .product__container{
    grid-template-columns: .6fr;
    justify-content: center;
  }

  .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 .75rem 0rem .75rem;
    background-color: var(--container-color-dark);
    color: var(--white-color);
    font-size: var(--normal-font-size);
    cursor: pointer;
    transition: .3s;
  }

  .active-featured {
    background-color: var(--first-color);
  }
}

@media screen and (max-width: 375px){
  .background_img{
    display: none;
  }
}

@media screen and (max-width: 425px){
  .background_img{
    position: absolute;
    width: 220px;
    z-index: 0;
    opacity: 0.4;
    top: 300px;
    right: 170px;
  }
}


/* For medium devices */
@media screen and (min-width: 576px){
  .steps__container{
    grid-template-columns: repeat(2, 1fr);
  }
  .product__description{
    padding: 0 4rem;
  }
  .product__container{
    grid-template-columns: repeat(2, 170px);
    justify-content: center;
    column-gap: 5rem;
  }

  .featured_content{
    grid-template-columns: repeat(2, 228px);
    gap: 4rem;
  }

  .footer__subscribe{
    width: 400px;
  }
}

@media screen and (min-width: 767px){
  body{
    margin: 0;
  }

  .video__container{
    grid-template-columns: 1fr;

}

  .nav{
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 3rem;
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__list{
    flex-direction: row;
    column-gap: 3rem;
  }
  .nav__menu{
    margin-left: auto;
  }

  .home__container,
  .about__container,
  .questions__container,
  .contact__container,
  .footer__container{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home{
    padding: 10rem 0 9rem;
    background: linear-gradient(
      to right,
      rgb(93, 81, 66) 0%,
      rgb(93, 81, 66) 73.5%,
      rgb(45, 42, 39) 73.5%,
      rgb(45, 42, 39) 100%
    );
  }
  .home__container{
    align-items: center;
  }
  .home__img{
    width: 280px;
    order: 1;
  }
  .background_img{
    position: absolute;
    width: 19rem;
    z-index: 0;
    opacity: 0.6;
    top: 80px;
    right: 420px;
  }
  
  .corner_img{
    position: absolute;
    width: 8rem;
    z-index: 0;
    opacity: 0.3;
    bottom: 270px;
    left: 600px;
  }
  
  .home__social{
    top: 30%;
  }

  .questions__container{
    align-items: flex-start;
  }

  .subscribe__bg {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.452), #0a0a0a),
    url(../img/sub.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }

  .footer__container{
    column-gap: 3rem;
  }
  .footer__subscribe{
    width: initial;
  }
}

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

  .video__container{
    grid-template-columns: 1.5fr 1fr;
    padding: 10px;
}

  .section{
    padding: 8rem 0 1rem;
  }
  .section__title,
  .section__title-center{
    font-size: var(--h1-font-size);
  }

  .home{
    padding: 13rem 0 9rem;
    background: linear-gradient(
      to right,
      rgb(93, 81, 66) 0%,
      rgb(93, 81, 66) 73.5%,
      rgb(45, 42, 39) 73.5%,
      rgb(45, 42, 39) 100%
    );
  }
  .home__img{
    width: 350px;
  }
  .background_img{
    position: absolute;
    width: 25rem;
    z-index: 0;
    opacity: 0.4;
    top: 40px;
    right: 570px;
  }
  .corner_img{
    position: absolute;
    width: 10rem;
    z-index: 0;
    opacity: 0.3;
    bottom: 360px;
    left: 850px;
  }
  .home__description{
    padding-right: 7rem;
  }

  .about__img{
    width: 380px;
  }

  .steps__container{
    grid-template-columns: repeat(3, 1fr);
  }
  .steps__bg{
    padding: 3.5rem 2.5rem;
  }
  .steps__card-title{
    font-size: var(--normal-font-size);
  }
  .product__description{
    padding: 0 16rem;
  }
  .product__container{
    padding: 4rem 0;
    grid-template-columns: repeat(3, 185px);
    gap: 4rem 6rem;
  }
  .product__img{
    width: 160px;
  }
  .product__circle{
    width: 110px;
    height: 110px;
  }
  .product__title,
  .product__price{
    font-size: var(--normal-font-size);
  }

  .gallery__card {
    width: 220px;
    height: 290px;
  }
  .gallery__thumbnail {
    width: 65px;
    height: 65px;
  }
  .gallery-cards,
  .gallery-thumbs {
    width: 280px;
  }


  .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;
  }

  .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;
  }

  .contact{
    padding-bottom: 80px;
  }

  .footer__logo{
    font-size: var(--h3-font-size);
  }
  .footer__container{
    grid-template-columns: 1fr .5fr .5fr .5fr;
  }
  .footer__copy{
    margin: 7rem 0 2rem;
  }
}

@media screen and (min-width: 1200px){
  .home{
    padding: 13rem 0 9rem;
    background: linear-gradient(
      to right,
      rgb(93, 81, 66) 0%,
      rgb(93, 81, 66) 73.5%,
      rgb(45, 42, 39) 73.5%,
      rgb(45, 42, 39) 100%
    );
  }
  .home__social{
    right: -3rem;
    row-gap: 4.5rem;
  }
  .home__social-follow{
    font-size: var(--small-font-size);
  }
  .home__social-follow::after{
    width: 1.5rem;
    right: -60%;
  }
  .home__social-link{
    font-size: 1.15rem;
  }

  .about__container{
    column-gap: 7rem;
  }

  .subscribe__message {
    padding-left: 400px;
    padding-top: 20px;
    align-items: center;
    justify-content: center;
  }

  .scrollup{
    right: 3rem;
  }
}