.header{
    /* background: url('../img/bg.jpg'); */
    background: /* top, transparent red, faked with gradient */ 
    /* linear-gradient(
      rgba(0, 0, 0, 0.45), 
      rgba(0, 0, 0, 0.45)
    ), */
    /* bottom, image */
    url('../img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center; */
    width: 100%;
    height: 100vh;
    overflow: auto;
}

.overlay{
  position: absolute;
  max-height: 100%;
  min-width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%);
}


@media screen and (max-width:480px) {
    .header {
        height: 50%;
    }
}

.promo{
    /* background: url('../img/bg-promo.jpg'); */
    background: /* top, transparent red, faked with gradient */ 
    linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5)
    ),
    /* bottom, image */
    url('../img/bg-promo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-width: 100%;
    height: 120px;
    display: table;
}

.all-shoes{
    /* background: url('../img/bg-shoes.jpg'); */
    background: /* top, transparent red, faked with gradient */ 
    linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5)
    ),
    /* bottom, image */
    url('../img/bg-shoes.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-width: 100%;
    height: 20vh;
    overflow: auto;
    display: table;
}

.promo-content {
    display: table-cell;
    text-align: left;
    vertical-align: middle;
}

.promo-content h3 {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .promo, .all-shoes{
      height: 80px;
    }

    .promo-content {
        text-align: center;
    }

    .promo-content h3 {
        font-size: 18px;
    }
}

.description{
    position: absolute;
    top: 30%;
    margin: auto;
    padding: 2em;
}
.description h1{
    color:#fff ;
    font-size: 72px;
    font-weight: 600;
    width: 80%;
    margin-bottom: 1rem;
}

.description p{
    color: rgb(200, 205, 236);
    font-size: 20px;
    width: 50%;
    line-height: 1.5;
}

@media (max-width: 768px) {
  .description {
    top: 10%;
    text-align: center;
    bottom: 5%;
  }

  .description h1{
    text-align: center;
    font-size: 52px;
    width: 100%;
  }

  .description p {
    text-align: center;
    font-size: 18px;
    width: 100%;
  }
}


  .category-area .content {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }
  
  /* line 279, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
  .category-area .content .content-overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }
  
  /* line 292, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
  .category-area .content-overlay {
    margin: 20px;
  }
  
  /* line 296, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
  .category-area .content:hover .content-overlay {
    opacity: .8;
  }
  
  /* line 301, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
  .category-area .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .category-area .content-detailss {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  
  /* line 318, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
  .category-area .content-title {
    font-size: 45px;
    color: #fff;
    font-weight: 500;
  }
  
  /* line 324, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
  .category-area .content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  
  .category-area .content:hover .content-detailss {
    top: 50%;
    left: 50%;
    opacity: 0;
  }
  
  /* line 331, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
  .category-area .content-image {
    width: 100%;
  }
  
  /* line 335, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
  .category-area .content-details p {
    color: #fff;
    font-size: 0.8em;
  }
  
  /* line 340, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
  .category-area .fadeIn-bottom {
    top: 80%;
  }
  
  @media (max-width: 1024px) {
    /* line 345, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
    .category-area .category-bottom .mb-30 {
      margin-bottom: 22px;
    }
  }
  
  @media (max-width: 800px) {
    /* line 351, /Applications/MAMP/htdocs/1.monthy projects/29.Shop/scss/theme/_home.scss */
    .category-area .category-bottom .mb-30 {
      margin-bottom: 14px;
    }
  }