@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu&display=swap');

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
}
html {
    font-size: 62.5%;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg);
    font-size: 1.6rem;
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root {
    --bg: #f7f7f7;
    --card-bg: #FBFBFB;
    --black: #1E2021;
  --primary: #E50914;
  --white: #ffffff;

}
.navbar{
  background:#f7f7f7;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
} 
.nav_logo{
  font-weight: bold;
  font-size: 20px;
  margin: 10px;
  color: white;
}

.nav_items a.active{
  background: var(--primary);
  color: var(--white);
  opacity: 1;
  cursor:pointer;
  border-radius: 2rem;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  padding: 1rem;
  transition: all 0.5s ease-in;
}


.nav_items a{
  margin: 15px;
  color: black;
  position: relative;
  text-decoration: none;
}

.nav_items a::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #E50914;
  transition: all 0.5s ease-in;

}
.nav_items a:hover::before{
  width: 100% !important;
}
.nav_toggle{
  display: none;
}
@media (max-width: 768px) {
  
  .nav_items{
      position: absolute;
      z-index: 3;
      top: 100px;
      left: 0;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      flex-direction: column;
      width: 100%;
      height: -webkit-fill-available;
      transform: translateX(-100%);
      transition: 0.3s ease all;
  }
  span{
    cursor: pointer;
  }
  .nav_items a{ 
    color: #f7f7f7;
    text-align: center;
  
  }
  .nav_toggle{
      display: flex !important;
      flex-direction: column;                
      margin: 15px;
  }
  .nav_toggle span{
      width: 30px;
      height: 4px;
      background: black;
      margin-bottom: 5px;
      border-radius: 2px;             
      transform-origin: 5px 0px;
      transition: all 0.2s linear;
  }
  .close span{
  
      transform: rotate(45deg) translate(0px, 0px);
  }
  .close span:nth-child(2){
      display: none;
  }
  .close span:nth-child(3){
      transform: rotate(-45deg) translate(-5px, 1px);
  }
  .open{ transform: translateX(0) !important}
}

/*redes sociales*/
.icon-bar {
  position: fixed;
  top: 70%;
  z-index: 2;
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.icon-bar a:hover {
  background-color:white;
  color: black;
}

.facebook,
.instagram,
.linkedin,
.youtube {
  background: black;
  color: white;
}


.content {
  margin-left: 75px;
  font-size: 30px;
}

/*footer*/

footer .container{
    background-color: black;
}

.row{
    display: flex;
    justify-content: space-between;
    padding: 40px 100px;
}
.footer-col ul{
    list-style: none;
}

.footer-col p{
  padding: 10px 0;
  color:white;
  font-family: 'Ubuntu', sans-serif;

}
.footer-col h4{
    color: white;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    font-family: 'Ubuntu', sans-serif;
}

.footer-col h4::before{
    content: '';
    width: 80%;
    height: 2px;
    position: absolute;
    background-color:#E50914;
    bottom: -10px;
}

.footer-col ul li{
    padding: 10px 0;
}
.footer-col ul li a{
    color: white;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7;
    transition: 0.5s;
}
.footer-col ul li a:hover{
    opacity: 1;
}
.footer-col input{
    border: none;
    width: 250px;
    height: 45px;
    display: block;
    padding-left: 20px;
    margin: 14px 0;
}

.footer-col .inputSubmit{
    padding: 0px 20px;
    background-color:#E50914;
    border: none;
    color: white;
    cursor: pointer;
}
.footer-col .inputSubmit:hover{
    box-shadow: 0 0 2rem 0.5rem rgba(175, 175, 175, 0.5);
  
  }
.col p{
    color: white;
}
.row hr{
    opacity: 0.7;
}


@media (max-width: 800px){
    footer .row{
        flex-direction: column;
        padding-top: 5px;
        
        padding-left: 55px;
    }

    footer .footer-col ul{
      top:10%;
        margin-left: 50px;
        margin-bottom: 20px;
    }
    .footer-col input{
        width: 100%;
    }
}



.containers {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-filter-btns {
    padding: 3rem 0 2rem 0;
    display: flex;
    gap: 1.7rem;
    flex-wrap: wrap;
}

.btn-filter {
    display: inline-flex;
    padding: 0.7rem 2rem;
    border-radius: 2.7rem;
    cursor: pointer;
    border: 0.2rem solid #E50914;
    color: var(--black);
    font-weight: 500;
    transition: all 0.5s ease-in;
}

.btn-filter.mixitup-control-active {
    transition: all 0.5s ease-in;
    background: #E50914;
    color: var(--white);
}

.btn-filter.mixitup-control-active:hover {
    
        box-shadow: 0 0 2rem 0.5rem rgba(175, 175, 175, 0.5);
      
      
}
.product-filter-items {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40rem, 1fr));
    gap: 2rem;
}

.mix {
    background: var(--card-bg);
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.item-top {
    padding: 2rem 0 0.5rem 0;
}

.item-top img {
    width:100%;
}

.item-bottom {
    padding: 2rem 2rem 1.5rem 2rem;
}

.item-heading {
    font-size: 2.5rem;
    color: var(--black); 
    cursor: pointer;
}

.item-heading:hover {
    color: #E50914;
}

@keyframes down {
    0% {
        transform: translateY(2rem);
    }
    100% {
        transform: translateY(0rem);
    }
}