* {
  padding: 0;
  margin: 0;
}

body{
font-family: ,Helvetica,Arial,sans-serif;
    font-style: normal;
    font-weight: 200;
	  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100vh;
}




nav {
  margin: 20px;
  background: #f9f9f9;
  padding: 10px;
  }
  .topnav {
    list-style: none;
    display: flex;
	 }

      .topnav a {
      margin: 50px;
		}

     .topnav a {
        text-decoration: none;
        color: #8f8f8f;
        font-size: 24px;
        font-weight: 400;
        transition: all 0.5s ease-in-out;
        position: relative;
        text-transform: uppercase;

        &::before {
          content: attr(data-item);
          transition: 0.5s;
          color: #8254ff;
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          width: 0;
          overflow: hidden;
        

        &:hover {
          &::before {
            width: 100%;
            transition: all 0.5s ease-in-out;
          }
        }
      }
		}
  
	  #hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px;
  margin-top: 5px;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}


.mobile-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu li {
  margin-bottom: 10px;
}

a {
        text-decoration: none;
        color: #8f8f8f;
        font-size: 24px;
        font-weight: 400;
        transition: all 0.5s ease-in-out;
        position: relative;
        text-transform: uppercase;
		  }


header-area{

}

.card-img{
max-width: 400px;

}
.product-text{
  width:50%;
}

p {
  margin: 16px;
  font-size: 16px;
  color: #5c5a5a;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 1s ease-in-out;
  position: relative;
  }
  
  .product-review{
      margin-left: 14px;
  }
  .checked {
  color: orange;
  }


footer {
  position: absolute;
   
    bottom: 0;
    width: 100%;
    height: 35px;
    line-height: 40px;
    font-size: 17px;
    background-color: #f1f1f1;
    color: #000000;
    text-align: center;
  }

 footer a {
    text-decoration: none;
    color: inherit;
    

    &:hover {
      border-bottom: 1px transparent;
    }
  }
}
.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
  display: inline-block;
  word-spacing: 15px;
}

.social-icon__link {
  font-size: 2rem;
  color: #82818e;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}
