body  {
    margin: 0;
    padding: 0;
    background: var(--black);
    font-family: 'DM Sans Regular', sans-serif;
}

.container {
    height: auto;
}

.options {
    padding: 125px 80px 50px;
}

.options > ul {
    display: flex;
    padding-left: 0;
}

.options > ul > li {
    list-style: none;
    padding: 10px 20px;
    color:#FFF;
    border: 1px solid #FFF;
    margin-right: 15px;
    text-transform: uppercase;
    cursor: pointer;
}

.options li:hover,
.active {
    background-color: var(--white);
    color: var(--black);
}

#filter-options {
    width: 100%;
    height: 42px;
    border: 1px solid var(--white);
    padding: 10px 15px;
    font-size: 16px;
    box-shadow: none;
    background-color: var(--black);
    color: var(--white);
    border-radius: 0;

    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
}

label { 
    position: relative;
    display: none;
}

label:after {
    content: '>';
    font-size: 22px;
    color: var(--white);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 20px; 
    top: -5px;
    padding: 0 0 2px;
    border-bottom: 1px solid var(--white);
    position: absolute;
    pointer-events: none;
}

.portfolio-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    justify-content: space-between;
    margin: 0 80px;
    height: 100%;
}

.box {
    background-color: var(--darkgrey);
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    margin: 15px 0;
    transition: all .5s;
    color: var(--white);
}

.box:hover {
    transform: scale(1.05);
}

.box > a {
    color: var(--white);
    text-decoration: none;
}

.box > a > .picture > img {
    width: 100%;
}

.box > a > h3 {
    font-size: 20px;
    margin: 5px 0;
}

.tags {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    color: var(--lightgrey2);
    font-size: 12px;
    text-transform: uppercase;
}

.tags > span {
    border: 1px solid var(--lightgrey2);
    padding: 2px 5px;
    margin-right: 5px;
}



/*
 * MEDIA QUERY
 */ 

 @media (min-width: 1920px) {

    .portfolio-items {
        grid-template-columns: repeat(auto-fill, 19%);
    }
 }

 /* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1680px) and (max-width: 1919px) {

    .portfolio-items {
        grid-template-columns: repeat(auto-fill, 23%);
    }
}


/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) and (max-width: 1679px) {

    .portfolio-items {
        grid-template-columns: repeat(auto-fill, 32%);
    }
}


/* 
##Device = Laptops, Desktops
##Screen = B/w 1025px to 1280px
*/  
@media (min-width: 1025px) and (max-width: 1280px) {

    .portfolio-items {
        grid-template-columns: repeat(auto-fill, 32%);
    }
}


/* 
##Device = Tablets, Ipads (portrait)
##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {

    .options {
        padding: 100px 80px 25px;
    }

    .options > ul {
        display: none;
    }
    
    .custom-arrow {
        display: inline;
    }

    .portfolio-items {
        grid-template-columns: repeat(auto-fill, 48%);
    }

    .box {
        max-height: 450px;
    }
}


/* 
##Device = Low Resolution Tablets, Mobiles (Portrait)
##Screen = up to 767px
*/
@media screen and (max-width: 767px) {

    .options {
        padding: 100px 25px 25px;
    }

    .options > ul {
        display: none;
    }
    
    .custom-arrow {
        display: inline;
    }

    .portfolio-items {
        margin: 0 25px;
    }
    
    .portfolio-items {
        grid-template-columns: repeat(auto-fill, 100%);
    }
}