* {box-sizing: border-box;}

body {
    margin:0;
    min-height: 100%;
    display:flex;
    justify-content: space-between;
    flex-direction: column;
    font-family: 'Poppins';
    position: relative;
}
h1{
    text-align: center;
    margin:10px;
}

@media screen and (max-width: 700px){
    h1{font-size:1.5em;}
}

.nav_item { 
    text-align: center;
    padding:10px;
    width:15%;
    cursor: pointer;
}
.nav_pic{
    width:-webkit-fill-available;
    border-radius: 5px;
}

.nav_item_collab { 
    padding:10px;
}
a{
    color:black;
    text-decoration: none;
    transition: color 0.5s;   
}
a:hover{
    color:gray;
}
.hovergray:hover{
    color:lightgray;
}
.hoverblack:hover{
    color:black;
}
.hoverdarkgray:hover{
    color:gray;
}

.drop_nav_item{
    text-align: center;
    position:relative;  
}

.flex_left{
    justify-content: flex-start;
}
.flex_right{
    justify-content: flex-end;
}
.flex_evenly{
    justify-content: space-evenly;
}
.flex_space_between{
    justify-content:space-between;
}
.flex_space_around{
    justify-content:space-around;
}
.flex_center{
    justify-content: center;
}

.row {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.inner_row{
    display:flex;
    align-items: center;
    width: 100%;  
    justify-content: space-evenly;      
}
.bigRow{
    height:65vh;
    width:100%;
}
@media screen and (max-width: 700px){
    .bigRow{min-height:80vh;}
}
.inner_row_stayrow{
    display:flex;
    align-items: center;
    width: 100%;  
    justify-content: space-evenly;      
}
.row_item { 
    display: flex;
    flex-direction: column;
    width: 35%;
    font-size: 15px;
    min-height: 250px;
    position:relative;
    justify-content: center;
}

@media screen and (max-width: 700px){
    .inner_row{flex-direction: column; justify-content: center;}
    .row_item{width:90% !important;}
}
@media screen and (max-width: 1050px){
    .crunch{flex-direction: column; justify-content: center;}
}
.hiddenItem{
    opacity:0;
}

.showLeft{
    position:relative;
    animation: fadeInLeft 1.5s;
}
@keyframes fadeInLeft {
    from {opacity:0; left:-2%;}
    to {opacity:1; left:0;}
}
.showRight{
    position:relative;
    animation: fadeInRight 1.5s;
}
@keyframes fadeInRight {
    from {opacity:0; right:-2%;}
    to {opacity:1; right:0;}
}

.showRightBackToTop{
    position:relative;
    animation: fadeInRightBackToTop 2s;
}
@keyframes fadeInRightBackToTop {
    from {opacity:0; right:20%;}
    to {opacity:1; right:30%;}
}

.lightgray{
    background-color: lightgray;
}
.lightskyblue{
    background-color: lightskyblue;
}
.lightyellow{
    background-color: lightyellow;
}
.black{
    background-color: black;
}
.lightblack{
    background-color: rgb(88,88,88);
}
.lightred{
    background-color: #cf6363;
}
.grey_words{
    color:grey;
}

.white_words{
    color:white !important;
}
.burlywood{
    background-color: burlywood;
}

.center_img{
    height: 250px;
    object-fit: cover;
    border-radius: 3px;
}
.center_logo{
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
}
.sagePic{
    background-image: url("images/WW-Dexter-less-opaque.jpg");
    background-size:cover;
    background-position: 30% 50%;
}

@media screen and (min-width: 700px){
    .show_small{display:none;}
}
@media screen and (max-width: 700px){
    .show_big{display:none !important;}
}

.collabDropdown{
    visibility: hidden;
    background-color: rgba(211, 211, 211, 0.845);
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    text-align: center;
    border-radius: 5px;
    z-index: 1;
    width:60%;
    position: relative;
    top:0;
}

.dropdown_content {
    visibility:hidden;
    text-align: right;
    padding-right: 20%;
    border-radius: 5px;
    z-index: 999;
    width:100%;
    height: 100%;
    position: fixed;
    top: 17%;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
}

.show_dropdown{
    visibility:visible;
    animation: slideUp 0.5s;
}
@keyframes slideUp {
    from   {opacity:0; right:-20%;}
    to  {opacity:1; right:0;}
}

.hideaway_dropdown{
    animation:hideaway 0.5s;
}
@keyframes hideaway{
    from   {opacity:1; right:0; visibility:visible;}
    to  {opacity:0; right:-20%; visibility:hidden;}  
}

.show_dropdown_collab{
    visibility:visible;
    animation: slideUpCollab 0.5s;
}
@keyframes slideUpCollab {
    from   {opacity:0; top:3vh;}
    to  {opacity:1; top:0;}
}

.stop_scroll{
    overflow:hidden !important;
}
.bigRow_words{
    position:relative; 
    top:25%; 
    left:10%; 
    width:70%; 
    /* color:white;  */
    font-size:2em;
    text-shadow: 1px 1px 2px #000000;
}
@media screen and (max-width: 700px){
    .bigRow_words{top:12%;font-size:1.5em;}
}
.bigRow_learnmore{
    position:relative; 
    top:35%; 
    left:10%; 
    width:fit-content; 
    padding:10px;
    cursor: pointer;
    border-radius: 2px;
}
@media screen and (max-width: 700px){
    .bigRow_learnmore{top:20%;}
}
.slide_over{
    animation: slideOver 1.5s;
}
@keyframes slideOver {
    from {opacity:0;left:0;}
    to {opacity:1;left:10%;}
}

.learn_more{
    padding:5px;
    cursor: pointer;
    width:fit-content;
    border-radius: 2px;
}

.backToTop{
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    z-index: 999;
    bottom:20px;
    right:30%;
    width:fit-content;
    position: absolute;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    cursor: pointer;
}

.height105{
    min-height:105vh;
}
.height75{
    min-height:75vh;
}
.height45{
    min-height:45vh;
}
@media screen and (max-width: 700px){
    .height75{min-height:110vh;}
}

.drop_width{
    width:12%;
}