/**********************/
/******* content ******/
/**********************/
  
.content-menu {
    
}

.content-menu--item {
    list-style-type: none;
    padding: 0;
    margin: 0;
/*     font-family: 'sometimes-times-regular'; */
	font-size: 7.1rem;
	font-weight: 200;
	color: #2e2e2f;
	
}

.content-menu--spacer {
    display: inline-flex;
    border-top-style: solid;
    border-top-color: black;
    border-top-width: 2px;
}

.content-menu--item-content {
    cursor: pointer;
}

.content-menu--item-content:hover .content-menu--image,
.content-menu--item-content:active .content-menu--image {
    opacity: 1;
    padding-top: 0px;
}

.content-menu--item-super-text {
	font-size: 2.9rem;
}

.content-menu--no-break {
    white-space: nowrap;
}
  
.content-menu--image {
    position: absolute;
    display: block !important; /* Hate to use importnat but only way to get the images not showing on load */
    opacity: 0;
    transition: opacity 0.5s ease-in-out, padding-top 0.5s ease-in-out;
    z-index: -2;
    padding-top: 15px;
}
  

/* use the below to position the project menu hover images horizontally */

.content-menu-img--spontaneous {
    left: 18%;
}

.content-menu-img--okay-mann {
    left: 10%;
}

.content-menu-img--lor-brand {
    right: 5%;
}

.content-menu-img--ply-furniture {
    left: 5%;
}

.content-menu-img--sonnen-hill {
    right: 25%;
}

.content-menu-img--red-north-carpenty {
    left: 15%;
}

.content-menu-img--torque {
    right: 10%;
}


  
  /* ------------------ */
  /* ------mobile------ */
  /* ------------------ */
  
  @media only screen and (max-width: 550px) {

        
    .content-menu--item-content {
        font-size: 2.1rem;
        line-height: 2.3rem;
        font-weight: 300;
        /* font-size: 12vw;
        line-height: 12vw; */
    }

    .content-menu--item-super-text {
        font-size: 1.59rem;
    }

    .content-menu--spacer {
        width: 30px;
        height: 12px;
        border-top-width: 1px;
    }

    .content-menu--image {
        max-width: 300px;
        max-height: 300px;
    }
  }
  
  /* ------------------ */
  /* ------tablet------ */
  /* ------------------ */
  
  @media only screen and (min-width: 551px) and (max-width: 900px) {

    .content-menu--item-content {
        font-size: 4.3rem;
        /* font-size: 9vw;
        line-height: 9vw; */
    }

    .content-menu--item-super-text {
        font-size: 2.0rem;
    }

    .content-menu--spacer {
        width: 70px;
        height: 20px;
    }

    .content-menu--image {
        max-width: 500px;
        max-height: 500px;
    }
  }
  
  
  /* ------------------ */
  /* ------desktop----- */
  /* ------------------ */
  
  @media only screen and (min-width: 901px) {
    .content-menu--item-content {
        font-size: 5.7rem;
        /* font-size: 7.5vw;
        line-height: 7.5vw; */
    }

    .content-menu--item-super-text {
        font-size: 2.9rem;
    }

    .content-menu--spacer {
        width: 80px;
        height: 30px;
    }

    .content-menu--image {
        max-width: 600px;
        max-height: 600px;
    }
  }
  
  
/* ------------------ */
/* ----big desktop--- */
/* ------------------ */

@media only screen and (min-width: 1251px) {
    .content-menu--item-content {
        font-size: 6.1rem;
        /* font-size: 6vw;
        line-height: 6vw; */
    }
}
  
