*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: sans-serif;
    }
    body {
        background-color: #f8d3fd;
        
    }
    .sidebar{
    position: fixed;
    width: 240px;
    left: -240px;
    height: 100%;
    background: #1e1e1e;
    transition: all .5s ease;
    }
    
    .sidebar a{
    display: block;
    height: 65px;
    width: 100%;
    color: white;
    line-height: 65px;
    padding-left: 30px;
    box-sizing: border-box;
    border-bottom: 1px solid black;
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 5px solid transparent;
    font-family: 'Open Sans', sans-serif;
    transition: all .5s ease;
    }
    a.active,a:hover{
    border-left: 5px solid #f5c7fc;
    color: #f5c7fc;
    transition: 0.2s;
    }
    .sidebar a i{
    font-size: 23px;
    margin-right: 16px;
    }
    .sidebar a span{
    letter-spacing: 1px;
    text-transform: uppercase;
    }
    #check{
    display: none;
    }
    label #btn,label #cancel{
    position: absolute;
    cursor: pointer;
    color: white;
    border-radius: 5px;
    border: 1px solid #262626;
    margin: 15px 30px;
    font-size: 29px;
    background: #262626;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    transition: all .5s ease;
    }
    label #cancel{
    opacity: 0;
    visibility: hidden;
    }
    #check:checked ~ .sidebar{
    left: 0;
    }
    #check:checked ~ label #btn{
    margin-left: 245px;
    opacity: 0;
    visibility: hidden;
    }
    #check:checked ~ label #cancel{
    margin-left: 245px;
    opacity: 1;
    visibility: visible;
    }
    @media(max-width : 860px){
    .sidebar{
      height: auto;
      width: 70px;
      left: 0;
      margin: 100px 0;
    }
    header,#btn,#cancel{
      display: none;
    }
    span{
      position: absolute;
      margin-left: 23px;
      opacity: 0;
      visibility: hidden;
    }
    .sidebar a{
      height: 60px;
    }
    .sidebar a i{
      margin-left: -10px;
    }
    a:hover {
      width: 200px;
      background: inherit;
    }
    .sidebar a:hover span{
      opacity: 1;
      visibility: visible;
    }
    }
    
    .heading{
    background: #f5c7fc;
    border-style: inherit;
    }
    
    .heading ul{
    padding: 30px;
    text-align: center;
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    color: white;
    }
    .list-picture {
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap:15px;
    }
    .pic {
        position: relative;
        height: 230px;
        border-radius: 10px;
        box-shadow: 3px 3px 5 px lightpink;
        cursor: pointer;
        overflow: hidden;
    
    }
    .pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
    .caption {
        position: absolute;
        color: white;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.5);
        transform: translateY(100%);
        transition: transform 0.3s;
    }
    .pic:hover .caption {
        transform: translateY(0%);
    }
    .promotion{
    background: grey;
    margin-top: 140px;
    color: white;
    }
    
    .promotion i{
    margin: 15px;
    color: red;
    margin-top: 140px;
    }
    
    .promotion span{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
    font-weight: bold; 
    font-size: 30px;
    margin-top: 300px;
    }
    
    .promotion p{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
    font-weight: bold; 
    font-size: 25px;
    margin-left: 240px;
    }
    
    .feats{
    margin-top: 30px;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    }
    .footer {
      background-color: #0c0c0c !important;
      color: #FFFFFF !important;
      font-style: normal !important;
      padding-top: 2.35vw !important;
      padding-bottom: 1vw !important;
      margin-top: 10px !important;
  }
  .footer br {
  line-height:22px;
  }