* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: #F9F3DF;
}
/* The side navigation menu */
.company{
  font-family: 'Yanone Kaffeesatz', sans-serif;
  text-align: center;
  margin-top:10px;
  margin-bottom:10px;
}
.company-mob{
  display:none;
}
div.ex1 {
  background-color:  #F9F3DF;
  width: 150px;
  height: 110px;
  overflow-x: scroll;
  overflow-y:hidden;
  margin-left: 800px;
  margin-top: -60px;
  white-space:nowrap;
}
.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #C1FFD7;
  position: fixed;
  height: 100%;
  overflow: auto;
}

/* Sidebar links */
.sidebar a {
  display: block;
  color: black;
  padding: 16px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

/* Active/current link */
.sidebar a.active {
  background-color: #64C9CF;
  color: white;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
  background-color: #FF7171;
  color: white;
}
#toggle {
    display: none;
}
label {
    margin: 0 40px 0 0;
    font-size: 26px;
    line-height: 70px;
    display: none;
    width: 26px;
    float: left;
}


/* Page content. with cards*/
div.content {
  margin-left: 200px;
  padding: 1px 16px;
  height: 1000px;
}

/* cart button*/
.btn-cart {
  background-color: #B97A95; 
  border: none; 
  color: white; 
  padding: 8px 35px; 
  font-size: 16px; 
  cursor: pointer; 
   border-radius: 16px;
  font-family: 'Oswald', sans-serif;
  margin-left:50px;
  margin-top:50px;
  margin-bottom:50px;
}

.container {
  width: 90%;
  margin: 50px auto;
}
.heading {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  font-family: 'Yanone Kaffeesatz', sans-serif;
  padding-right: 250px;
}
.heading p{
  font-size: 15px;
  font-family:  sans-serif;
  font-weight:200;
  font-style: italic;
}
.row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-flow: wrap;
}

.card {
  width: 20%;
  background: #fff;
  border: 1px solid #ccc;
  margin-bottom: 50px;
  transition: 0.3s;
  border-radius: 25px;
}
image{
  border-radius: 25px;
  
}

.card-body {
  padding: 30px 20px;
  text-align: center;
  font-size: 18px;
  font-family: 'Yanone Kaffeesatz', sans-serif;
}

.card-body .btn {
  display: block;
  color: #fff;
  text-align: center;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  margin-top: 30px;
  text-decoration: none;
  padding: 10px 5px;
  border-radius: 25px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.25);
}
.footer{
  display:none;
}

@media screen and (max-width: 1000px) {
  .card {
    width: 40%;
  }
}

@media screen and (max-width: 620px) {
  .container {
    width: 100%;
  }

  .heading {
    padding: 20px;
    font-size: 20px;
  }

  .card {
    width: 80%;
  }
}

@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
}

/* MOBILE VIEW */
@media screen and (max-width: 400px) {
  label {
        display: block;
        cursor: pointer;
        float: left;
    }
    .menu {
        text-align: center;
        width: 100%;
        display: block;
    }
  
    .menu a {
        display: block;
        border-bottom: 1px solid #EAEAEB;
        margin: 0;
     
    }
    #toggle:checked + .menu {
        display: block;
      padding-left:20px;
    }
  #toggle:checked +.menu a{
    display:none;
  }
  .burger{
    padding-left:20px;
  }
  .btn-cart{
    display:none;
    
  }
}
/* Title of mobile View */
@media screen and (max-width: 400px) {
  .company-mob{
  font-family: 'Yanone Kaffeesatz', sans-serif;
  text-align: center;
  padding-right:50px;
  padding-left:75;
  padding-top:20px;
  display:block;  
}
  .icon{
    float:right;
    cursor: pointer;
  }
  .company{
    display:none;
  }
  div.ex1{
    display:none;
  }
  .footer{
  display:block;
  
}
  div.ex2 {
  background-color:  #F9F3DF;
  width: 85%;
  height: 100px;
  overflow-x: scroll;
  overflow-y:hidden;
  margin:auto;
    display: block;
  margin-left: 30px;
  position: fixed;
  white-space:nowrap;
    bottom:0px;
   z-index:0px;
    position:fixed;
  }
  div .ex2 p{
  font-size: 15px;
  font-family:  sans-serif;
  font-weight:200;
  font-style: italic;
  }

}