@media (min-width: 768px) {
  nav {
    width: 80%;
    > figure {
      width: 15%;
    }
    > ul {
      display: flex;
      width: 65%;
      > li {
        padding: 0px 5px;
      }
    }
    > span {
      display: none;
    }
  }
  #features {
    .row {
      > div {
        width: 100%;
        &:nth-of-type(1) {
          width: 48%;
        }
        &:nth-of-type(2) {
          width: 48%;
        }
        &:nth-of-type(3) {
          width: 48%;
        }
        &:nth-of-type(4) {
          width: 48%;
        }
      }
    }
  }
  main {
    #sectionTrending {
      > div {
        &:nth-of-type(3) {
          display: flex;
          /* border: 1px solid black; */
          > div {
            &:nth-of-type(1) {
              width: 46%;
              height: 346px;
            }
            &:nth-of-type(2) {
              width: 46%;
              height: 346px;
            }
            &:nth-of-type(3) {
              width: 46%;
              height: 346px;
            }
            &:nth-of-type(4) {
              width: 46%;
              height: 346px;
            }
          }
        }
      }
    }
    #sectionCategories {
      /*------------ cards ----------------*/
      > div {
        justify-content: space-between;
        > div {
          height: 379px;
          width: 48%;
        }
      }
    }
  }
}
