/* Projects container */
.project-container-outer{
    display: flex;
    flex-direction: column;
    
}
.project-container{
    display: flex;
    flex-direction: row;

    width: 90%;
  
    align-self: center;
}
.project-item{
    position: relative;
    width: 32%;
    overflow: hidden;
    transition: .3s ease;
}
.project-image{
    display: block;
    width: 100%;
    height: auto;
}
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #101010;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .3s ease;
}
.project-item:hover .project-overlay {
  height: 100%;
}
.copy-container {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.copy-brand-container{
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
    
    
}
.copy-brand{
    font-size: 70%;
    border: 1.5px solid rgba(100,100,100,.5);
    border-radius: 10px;
    padding: 7px 15px 7px 15px;
    margin-bottom: 10px;
    
}
.copy-title{
    font-size: 200%;
    font-weight: 600;
    line-height: 100%;
}
.copy-see{
    opacity: .1;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 300;
    line-height: 100%;
    transition: 1.5s ease;
}
.project-item:hover .copy-see{
    letter-spacing: 1.5px;
    opacity: 1;
}
.proj-cog{
    margin: 1%;
}


/* SCROLLING WORK BY SEAN. */
.scroller-container{
    overflow: hidden;
}
.scrate-top {
    width: 5000%;
    color: white;
    background-color: none;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: -4px;
    animation: scrate 10s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}
.scrate-bottom {
    width: 5000%;
    background-color: none;
    margin-top: -30px;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: -4px;
    animation: scrate-b 10s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-iteration-count: 1;
    animation-fill-mode: both;
   
  text-shadow:
   -1px -1px 0 #ffffff,  
    1px -1px 0 #ffffff,
    -1px 1px 0 #ffffff,
     1px 1px 0 #ffffff;
}
@keyframes scrate {
   from {
       transform: translateX(-7000px);
 }
 to {
     transform: translate(1000px);
 }
}
@keyframes scrate-b {
   from {
       transform: translateX(0px);
 }
 to {
     transform: translate(-7000px);
 }
}


.teams-container-outer{
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
}

.teams-container{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.team{
    font-size: 50px;
    font-weight: 700;
    color: white;
    margin-bottom: 2%;
    transition: .2s ease-in-out;
}
.team:nth-child(1):hover{
    color: #E6FF01;
}
.team:nth-child(2):hover{
    color: #FE4802;
}
.team:nth-child(3):hover{
    color: #7F4EFF;
}
.team:nth-child(4):hover{
    color: #1B9AA9;
}
.team:nth-child(5):hover{
    color: #04A96C;
}
.team:nth-child(6):hover{
    color: #489EB5;
}
.team:nth-child(7):hover{
    color: #C2652F;
}
.team:nth-child(8):hover{
    color: #0CADDE;
}



@media only screen and (max-width: 1000px){
    .header-container{
        flex-direction: column;
    }
    .box{
        width: auto;
        padding: 3%;
    }
    .content-container{
        padding: 2%;
    }
    
    .name-container{
        margin-top: 15px;
    }
    .based-container{
        margin-top: 20px;
    }
    
    .three-item-container{
        padding: 6% 4% 6% 4%;
    }
    
    

    
}
@media only screen and (max-width: 900px){
    .three-item-container{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .three-item:nth-child(1), .three-item:nth-child(2) {
        margin-bottom: 5%;
        margin-right: 0;
}

    .project-container-outer{
        flex-direction: row;
    }
    
    .project-container{
        flex-direction: column;
    }
    .project-item{
        width: 100%;
    }
    .proj-cog{
        margin: 2%;
    }
    .copy-title{
        font-size: 170%;
    }
    
}