* {
    border: 0px;
    outline: none !important;
  }


section{
    background-image: url(../image/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    display:flex;
    justify-content:center;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 100px;
}
.logo{
    margin-bottom: 70px;
}
ul{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    max-width: 1042px;
    padding-left: 0 !important;
    justify-content: center;
}

li{
    width:260px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    transition: 0.3s;
    background-size: 100%;
}
.hoverColor{
    background-color: red;
}
li:nth-child(even){
    background-blend-mode: #e9c9c6;
}
li:first-child{
    background-image: url(../image/logo-thumb.png);
    background-repeat: no-repeat;
}
li:nth-child(2){
    background-image: url(../image/brand-book.png);
    background-repeat: no-repeat;
}
li:nth-child(3){
    background-image: url(../image/website-design.png);
    /* background-size: cover; */
    background-repeat: no-repeat;
}
li:nth-child(4){
    background-image: url(../image/Corporate-Stationary.png);
    background-repeat: no-repeat;
}
li:nth-child(5){
    background-image: url(../image/social-post.png);
    background-repeat: no-repeat;
}
li:nth-child(6){
    background-image: url(../image/menu-card.png);
    background-repeat: no-repeat;
}
li:nth-child(7){
    background-image: url(../image/Merchandise.png);
    background-repeat: no-repeat;
}
li:nth-child(8){
    background-image: url(../image/event-poster.png);
    background-repeat: no-repeat;
}
li a{
    display: flex;
   /* position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;*/
    justify-content: center;
    align-items: center;
    margin: 0px;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    height: 100%;
    letter-spacing: 1px;
}
li a:nth-child(even){
    color:#000 !important;
}
li:hover {
    background-size: 110%;
}
a:hover{
 color:#fff !important;

}
img {
    max-width: 100%;
  }
  .mobile-screen{
    display:none;
  }
  #black-text{
    color:#000;
  }
  #black-text:hover{
    color:#000 !important;
  }

  @media(max-width:1200px){
    li{
        width:220px;
        height: 220px;
    }
  }
  @media(max-width:991px){
    li{
        width:200px;
        height: 200px;
    }
  }
  @media(max-width:900px){
    li{
        width:180px;
        height: 180px;
    }
  }
  @media(max-width:767px){
    li{
        width:260px;
        height: 260px;
    }
    section{
        height: 100%;
    }
    li:first-child{
        order: 1;
    }
    li:nth-child(2){
        order: 2;
    }
    li:nth-child(3){
        order: 4;
    }
    li:nth-child(4){
        order: 3;
    }
    li:nth-child(5){
        order: 6;
    }
    li:nth-child(6){
        order: 5;
    }
    li:nth-child(7){
        order: 7;
    }
    li:nth-child(8){
        order: 8;
    }
  }
  @media(max-width:640px){
    ul{
        width: 90%;
    }
    li{
        width:50%;
        height: 260px;
        background-size: cover !important;
    }
    .mobile-screen{
        display:block;
    }
    .big-screen{
        display:none;
    }
  }
  @media(max-width:520px){
    li{
        height: 180px;
    }
  }