/* external css: flickity.css */

* { box-sizing: border-box; }
::selection, ::-webkit-selection{
    background-color: #80746c;
    color: white;
}
body, html{
    padding:0;
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 20px;
    min-height: 100%;
}
.carousel {
    background: #ffffff;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    transition: height ease 1s;
}
.svg-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: black;
    fill: black;
}
.slider-button{
    position: absolute;
    font-size: 150px;
    height: 200px;
    margin-top: -100px;
    top: 50%;
    color: white;
    z-index: 100;
    font-weight: 100;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: 0.5s ease all;
    opacity: 0;
     transform:  scale(.8,1);
    -webkit-transform:  scale(.8,1);
    -moz-   transform:  scale(.8,1);
    -ms-    transform:  scale(.8,1);
    -o-     transform:  scale(.8,1);
}
.researchbox{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    clear: both;
    justify-content: space-between;
}
.researchbox--content {
    flex-basis: 60%;
}
.researchbox--pic {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
}
.researchbox--pic, .researchbox--content {
    flex-grow: 1;
    flex-shrink: 1;
    padding: 30px 30px 30px 0;
    min-width: 280px;
}
.researchbox--pic img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    max-width:  500px;
    margin: auto;
}
.researchbox--pic .caption {
    width: 100%;
    text-align: center;
    padding-top: 15px;
    font-weight: 600;
    font-size: 85%;
    max-width: 450px;
    margin: auto;
    color: #80746c;
}
@media only screen and (max-width: 900px){
	.researchbox{
		flex-direction: column-reverse;
  	}
  	.researchbox--pic, .researchbox--content{
    	padding: 30px 0;
  	}
}
.jump-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    
}


.flickity-viewport {
    transition: height ease 1s;
}
.button-prev{
    left: -200px;
}
.button-next{
    right: -200px;
}
.carousel-cell {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.flickity-viewport{
    height: 100vh;
}
.carousel-image {
    display: block;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}
.progress-bar {
    height: 7px;
    width: 0;
    background: #80746c;
    position: absolute;
    bottom:0;
    z-index: 100;
}
.cell-title{
    font-size: 40px;
    font-family: 'Raleway', sans-serif;
    color: black;
    max-width: 85%;
    background-color: white;
    box-sizing: border-box;
    padding: 10px 20px;
    font-weight: 900;
    z-index: 100;
    position: absolute;
    display: inline-block;
    bottom: 34%;
    left: 10%;
    mix-blend-mode: screen;
}
.cell-subtitle{
    font-size: 29px;
    font-family: 'Raleway', sans-serif;
    color: white;
    box-sizing: border-box;
    font-weight: 600;
    z-index: 100;
    position: absolute;
    top: 66%;
    left: 10%;
    padding: 10px 0 0 20px;
    transition: 0.5s ease all;
    -ms-transform: translate(100px, 0);
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
    opacity: 0;
    transition-delay: 1s;
    max-width: 35%;
    border-left: 3px solid white;
}
.is-selected .cell-subtitle{
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}
.brand-name{
    vertical-align: middle;
    border-bottom: none !important;
    display: flex;
    align-items: center;
    transition: 0.3s ease all;
}
.brand-name:hover{
    letter-spacing: 1.5px;
}
.advice{
    font-size: 18px;
    position: absolute;
    bottom: 14px;
    width: 150px;
    margin-left: -75px;
    left: 50%;
    z-index: 109;
    color: white;
    -webkit-animation: pulse 2s infinite ease-in-out;
    -o-animation: pulse 2s infinite ease-in-out;
    -ms-animation: pulse 2s infinite ease-in-out; 
    -moz-animation: pulse 2s infinite ease-in-out; 
    animation: pulse 2s infinite ease-in-out;
    cursor: pointer;
}
.advice:hover{
    text-decoration: underline;
}
@-webkit-keyframes pulse{
    0% {opacity: 0.3}
    50% {opacity: 1}
    100% {opacity: 0.3}
}
@keyframes pulse{
    0% {opacity: 0.3}
    50% {opacity: 1}
    100% {opacity: 0.3}
}

/*Navigation*/
nav{
    height: 90px;
    width: 100%;
    position: fixed;
    z-index: 120;
    font-family: 'Raleway', sans-serif;
    color: white;
    box-sizing: border-box;
    padding: 20px 20px;
    top:0;
    left: 0;
}
nav.solid{
    padding: 15px 20px;
}
nav .link.link-home{
    display: none;
}
nav .brand{
    font-weight: 900;
    font-size: 30px;
    padding: 15px;
    text-transform: uppercase;  
    float: left;
    transition: 0.3s ease all;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav.solid .brand{
    font-size: 23px;
}
.background{
    background-color: #80746c;
    width: 100%;
    position: fixed;
    top:0;
    left:0;
    height:0;
    transition: 0.2s ease all;
    z-index: 110;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
@supports (backdrop-filter: blur(10px)){
    .background{
        background-color: rgba(52, 44, 21, 0.6);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(35px);
    }
}
nav .links{
    float: right;
}
a:not(.noA){
    color: inherit;
    text-decoration: none;
    border-bottom: dotted 1px;
}
a:not(.noA):hover{
    filter: brightness(85%);
}
nav a, a.noA{
    color: inherit;
    text-decoration: none;
}
.link {
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    font-size:20px;
    margin: 0 15px;
    padding: 10px 0 6px 0;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    transition: 0.3s ease all;
}
.link.selected{
    filter: brightness(70%);
    cursor: default;
}
nav.solid .link{
    font-size:18px;
    padding: 5px 0 6px 0;
}
.link:not(.bold):not(.selected):before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #ffffff;
    height: 3px;
    transition: 0.1s ease-out left, 0.1s ease-out right;
}
.link:not(.bold):not(.selected):hover:before, .link:not(.bold):not(.selected):focus:before, .link:not(.bold):not(.selected):active:before {
    left: 0;
    right: 0;
}
.link.bold {
    border: 2px solid white;
    padding: 10px 15px;
    margin: 10px 0;
    transition: 0.2s ease-out all;
    margin-right: 20px;
    border-radius: 100px;
}
.link.bold.selected{
    background-color: white;
    color: #80746c;
    filter: brightness(100%);
}
nav.solid .link.bold{
    padding: 8px 15px;
}
.button-menu{
    display: none;
}
.link.bold:not(.selected):before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    transition: 0.2s ease-out transform;
}
.link.bold:not(.selected):hover, .link.bold:not(.selected):focus, .link.bold:not(.selected):active {
    color: #80746c;
}
.link.bold:not(.selected):hover:before, .link.bold:not(.selected):focus:before, .link.bold:not(.selected):active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Mobile Nav */
.button-menu span{
	display: block;
	width: 33px;
	height: 3px;
	margin-bottom: 5px;
	transform-origin: 4px 0px;
	position: relative;
	background: #ffffff;
	transition: 0.3s ease all;
    border-radius: 100px;
}
.button-menu span:first-child{
	transform-origin: 0% 0%;
}
.button-menu span:nth-last-child(2){
	transform-origin: 0% 100%;
}
nav.open .button-menu span:first-child{
	transform: rotate(45deg) translate(3px, -3px);
}
nav.open .button-menu span:nth-child(3){
	opacity: 1;
    transform: rotate(-45deg) translate(-3px, 3px);
}
nav.open .button-menu span:nth-child(2){
	transform: rotate(0deg) scale(1, 0);
    opacity: 0;
}

/* FONT CSS */
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?z2y5nv');
  src:  url('fonts/icomoon.eot?z2y5nv#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?z2y5nv') format('truetype'),
    url('fonts/icomoon.woff?z2y5nv') format('woff'),
    url('fonts/icomoon.svg?z2y5nv#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-adjustments:before {
  content: "\e900";
  color: #828282;
}
.icon-alarmclock:before {
  content: "\e901";
  color: #828282;
}
.icon-anchor:before {
  content: "\e902";
  color: #828282;
}
.icon-aperture:before {
  content: "\e903";
  color: #828282;
}
.icon-attachments:before {
  content: "\e904";
  color: #828282;
}
.icon-bargraph:before {
  content: "\e905";
  color: #828282;
}
.icon-basket:before {
  content: "\e906";
  color: #828282;
}
.icon-beaker:before {
  content: "\e907";
  color: #828282;
}
.icon-bike:before {
  content: "\e908";
  color: #828282;
}
.icon-book-open:before {
  content: "\e909";
  color: #828282;
}
.icon-briefcase:before {
  content: "\e90a";
  color: #828282;
}
.icon-browser:before {
  content: "\e90b";
  color: #828282;
}
.icon-calendar:before {
  content: "\e90c";
  color: #828282;
}
.icon-camera:before {
  content: "\e90d";
  color: #828282;
}
.icon-caution:before {
  content: "\e90e";
  color: #828282;
}
.icon-chat:before {
  content: "\e90f";
  color: #828282;
}
.icon-circle-compass:before {
  content: "\e910";
  color: #828282;
}
.icon-clipboard:before {
  content: "\e911";
  color: #828282;
}
.icon-clock:before {
  content: "\e912";
  color: #828282;
}
.icon-cloud:before {
  content: "\e913";
  color: #828282;
}
.icon-compass:before {
  content: "\e914";
  color: #828282;
}
.icon-desktop:before {
  content: "\e915";
  color: #828282;
}
.icon-dial:before {
  content: "\e916";
  color: #828282;
}
.icon-document:before {
  content: "\e917";
  color: #828282;
}
.icon-documents:before {
  content: "\e918";
  color: #828282;
}
.icon-download:before {
  content: "\e919";
  color: #828282;
}
.icon-dribbble:before {
  content: "\e91a";
  color: #828282;
}
.icon-edit:before {
  content: "\e91b";
  color: #828282;
}
.icon-envelope:before {
  content: "\e91c";
  color: #828282;
}
.icon-expand:before {
  content: "\e91d";
  color: #828282;
}
.icon-facebook:before {
  content: "\e91e";
  color: #828282;
}
.icon-flag:before {
  content: "\e91f";
  color: #828282;
}
.icon-focus:before {
  content: "\e920";
  color: #828282;
}
.icon-gears:before {
  content: "\e921";
  color: #828282;
}
.icon-genius:before {
  content: "\e922";
  color: #828282;
}
.icon-gift:before {
  content: "\e923";
  color: #828282;
}
.icon-global:before {
  content: "\e924";
  color: #828282;
}
.icon-globe:before {
  content: "\e925";
  color: #828282;
}
.icon-googleplus:before {
  content: "\e926";
  color: #828282;
}
.icon-grid:before {
  content: "\e927";
  color: #828282;
}
.icon-happy:before {
  content: "\e928";
  color: #828282;
}
.icon-hazardous:before {
  content: "\e929";
  color: #828282;
}
.icon-heart:before {
  content: "\e92a";
  color: #828282;
}
.icon-hotairballoon:before {
  content: "\e92b";
  color: #828282;
}
.icon-hourglass:before {
  content: "\e92c";
  color: #828282;
}
.icon-key:before {
  content: "\e92d";
  color: #828282;
}
.icon-laptop:before {
  content: "\e92e";
  color: #828282;
}
.icon-layers:before {
  content: "\e92f";
  color: #828282;
}
.icon-lifesaver:before {
  content: "\e930";
  color: #828282;
}
.icon-lightbulb:before {
  content: "\e931";
  color: #828282;
}
.icon-linegraph:before {
  content: "\e932";
  color: #828282;
}
.icon-linkedin:before {
  content: "\e933";
  color: #828282;
}
.icon-lock:before {
  content: "\e934";
  color: #828282;
}
.icon-magnifying-glass:before {
  content: "\e935";
  color: #828282;
}
.icon-map:before {
  content: "\e936";
  color: #828282;
}
.icon-map-pin:before {
  content: "\e937";
  color: #828282;
}
.icon-megaphone:before {
  content: "\e938";
  color: #828282;
}
.icon-mic:before {
  content: "\e939";
  color: #828282;
}
.icon-mobile:before {
  content: "\e93a";
  color: #828282;
}
.icon-newspaper:before {
  content: "\e93b";
  color: #828282;
}
.icon-notebook:before {
  content: "\e93c";
  color: #828282;
}
.icon-paintbrush:before {
  content: "\e93d";
  color: #828282;
}
.icon-paperclip:before {
  content: "\e93e";
  color: #828282;
}
.icon-pencil:before {
  content: "\e93f";
  color: #828282;
}
.icon-phone:before {
  content: "\e940";
  color: #828282;
}
.icon-picture:before {
  content: "\e941";
  color: #828282;
}
.icon-pictures:before {
  content: "\e942";
  color: #828282;
}
.icon-piechart:before {
  content: "\e943";
  color: #828282;
}
.icon-presentation:before {
  content: "\e944";
  color: #828282;
}
.icon-pricetags:before {
  content: "\e945";
  color: #828282;
}
.icon-printer:before {
  content: "\e946";
  color: #828282;
}
.icon-profile-female:before {
  content: "\e947";
  color: #828282;
}
.icon-profile-male:before {
  content: "\e948";
  color: #828282;
}
.icon-puzzle:before {
  content: "\e949";
  color: #828282;
}
.icon-quote:before {
  content: "\e94a";
  color: #828282;
}
.icon-recycle:before {
  content: "\e94b";
  color: #828282;
}
.icon-refresh:before {
  content: "\e94c";
  color: #828282;
}
.icon-ribbon:before {
  content: "\e94d";
  color: #828282;
}
.icon-rss:before {
  content: "\e94e";
  color: #828282;
}
.icon-sad:before {
  content: "\e94f";
  color: #828282;
}
.icon-scissors:before {
  content: "\e950";
  color: #828282;
}
.icon-scope:before {
  content: "\e951";
  color: #828282;
}
.icon-search:before {
  content: "\e952";
  color: #828282;
}
.icon-shield:before {
  content: "\e953";
  color: #828282;
}
.icon-speedometer:before {
  content: "\e954";
  color: #828282;
}
.icon-strategy:before {
  content: "\e955";
  color: #828282;
}
.icon-streetsign:before {
  content: "\e956";
  color: #828282;
}
.icon-tablet:before {
  content: "\e957";
  color: #828282;
}
.icon-telescope:before {
  content: "\e958";
  color: #828282;
}
.icon-toolbox:before {
  content: "\e959";
  color: #828282;
}
.icon-tools:before {
  content: "\e95a";
  color: #828282;
}
.icon-tools-2:before {
  content: "\e95b";
  color: #828282;
}
.icon-traget:before {
  content: "\e95c";
  color: #828282;
}
.icon-trophy:before {
  content: "\e95d";
  color: #828282;
}
.icon-tumblr:before {
  content: "\e95e";
  color: #828282;
}
.icon-twitter:before {
  content: "\e95f";
  color: #828282;
}
.icon-upload:before {
  content: "\e960";
  color: #828282;
}
.icon-video:before {
  content: "\e961";
  color: #828282;
}
.icon-wallet:before {
  content: "\e962";
  color: #828282;
}
.icon-wine:before {
  content: "\e963";
  color: #828282;
}

/* Page Content */
.wrapper{
    font-size: 20px;
    font-weight: 400;
}
.wrapper section{
    width: 100%;
    box-sizing: border-box;
    padding: 30px 30px 60px 30px;
}
.center{
    text-align: center;
}
.inner-wrapper{
    width: 80%; 
    margin: auto;
    max-width: 1500px;
}
section.major-section{
    font-size: 24px;
    text-align: center;
    padding: 80px 30px 30px 30px;
}
h1{
    color: #80746c;
    text-align: left;
    font-weight: 900;
    margin-bottom: 10px;
}
h2{
    color: #80746c;
    text-align: left;
    margin-bottom: 5px;
    margin-top: 30px;
    font-weight: 600;
}
.gray{
    background-color: #efefef;
}
.uOttawa-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #80746c;
    margin: 60px auto -120px auto;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: 0.3s ease all;
}

.uOttawa-logo:hover{
    background-color: #8F001A;
    transform: scale(1.1);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.uOttawa-logo:active{
    background-color: #8F001A;
    transform: scale(0.95);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.uOttawa-logo img{
    width: 80%;
    margin: auto;
    margin-top: 10%;
}
.left{
    float: left;
    text-align: left;
}
.right{
    float: right;
    text-align: right;
}
.left img{
    width: 100px;
    margin-right: 10px;
    border-radius: 50%;
}
.clear{
    clear:both;
}

/* Footer Style */

footer{
    background-color: #80746c;
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 30px;
}
footer .right big{
    font-family: Raleway, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 35px;
    vertical-align: top;
}
.bio-profile {
    max-width: 30%;
    width: 300px;
    min-width: 200px;
    margin-right: 30px;
    flex-shrink: 0;
}
section ul{
    padding-left: 30px;
}
.bio-profile img{
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.wrapper section.bio{
    padding-top: 120px;
    padding-bottom: 10px;
}
.bio-click {
    margin: 15px 0;
    font-weight: 600;
    cursor: pointer;
}
.bio-click-plus{
    display:inline-block;
    transform: scale(1.7);
    font-weight: 400;
    transition: 0.4s ease transform;
}
.bio-click:after{
    content:'\00a0 Read More';
}
.bio.open .bio-click-plus{
    transform: scale(1.8) rotate(45deg);
}
.bio.open .bio-extra{
    max-height: 1000px;
}
.bio.open .bio-click:after{
    content:'\00a0 Read Less';
}
.bio-extra {
    overflow-y: hidden;
    max-height: 0px;
    transition: 0.3s ease all;
    display: block;
}
.spacer {
    height: 90px;
    width: 100%;
}
.fajita{
    transition: 0.2s ease all;
    height: auto;
    overflow: hidden;
    opacity: 1;
    min-height: calc(100vh - 218px);
}
body.loading .fajita{
    height: 0;
    opacity: 0.3;
}
body.loading .spinner{
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}
body.loading .spinner .dot1, .spinner .dot2{
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #80746c;
    border-radius: 100%;  
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}
body.loading .spinner .dot2{
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
@-webkit-keyframes sk-rotate{
    100% {-webkit-transform: rotate(360deg)}
}
@keyframes sk-rotate{
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}
@-webkit-keyframes sk-bounce{
    0%, 100% {-webkit-transform: scale(0.0)}
    50% {-webkit-transform: scale(1.0)}
}
@keyframes sk-bounce{
    0%, 100% { 
      transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% { 
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}
body:not(.loading) .spinner{
    display: none;
}

/*@media screen size dynamic webpage queries*/
@media screen and (max-width: 1240px){
    nav{
        padding: 15px 20px;
    }
    nav .brand{
        font-size: 23px;
    }
    nav .link{
        font-size:18px;
        padding: 5px 0 6px 0;
    }
    nav .link.bold{
        padding: 8px 15px;
    }
    .cell-subtitle{
        max-width: 50%;
    }
}
@media screen and (max-width: 1100px){nav .link{margin: 0 9px}}
@media screen and (max-width: 1000px){
    .inner-wrapper{
        width: 85%;
    }
    .cell-title{
        font-size: 35px;
    }
    .cell-subtitle{
        font-size: 24px;
        max-width: 65%;
    }
    nav{
        overflow-y: hidden;
        transition: 0.5s ease all;
        height: 60px !important;
    }
    nav .link{
        display: block;
        margin:25px auto;
        text-align: center;
        font-size: 23px;
        font-weight: 400;
        width: fit-content;
    }
    nav .links{
        float:none;
        width: 100%;
        margin-bottom: 20px;
    }
    nav .brand{
        float: none;
        width: 100%;
    }
    .button-menu{
        display: block;
        float: right;
    }
    nav .brand .brand-name{
        float: left;
        height: 40px;
    }
    nav.open, .background.open{
        height: 430px !important;
    }
    nav .link.link-home{
        display:block;
    }
    nav.solid .link{
        font-size: 23px;
    }
    .biography{
        align-items: flex-start !important;
    }
}
@media screen and (max-width: 780px){
    footer .right, footer .left{
        float: none;
        text-align: center;
    }
    footer .left{
        display: none;
    }
}
@media screen and (max-width: 700px){
    .cell-title{
        font-size: 31px;
    }
    .cell-subtitle{
        font-size: 20px;
        max-width: 80%;
    }
    .inner-wrapper{
        width: 90%;
    }
    .biography{
        flex-wrap: wrap;
        justify-content: flex-start !important;
    }
    .biography div{
        width: 100%;
        flex-shrink: 0;
    }
    .bio-profile img{
        border-radius: 5px !important;
    }
    
}
@media screen and (max-width: 550px){
    .paper-open-box{
        font-size: 13px;
        padding: 8px 14px;
        margin: 4px !important;
        display: block;
        border-radius: 20px !important;
        border-left: 2px solid #80746c;
        border-right: 2px solid #80746c;
    }
    section.major-section{
        font-size: 18px;
    }
    .wrapper{
        font-size: 18px;
        font-weight: 400;
    }
}
@media screen and (max-width: 470px){
    nav .brand{font-size: 20px !important}
    nav .link{font-size: 20px !important}
    .cell-title{font-size: 28px}
    .cell-subtitle{max-width: 85%}
    .inner-wrapper{width: 95%}
}
@media screen and (max-width: 400px){
    nav .brand{font-size: 17px !important}
    nav .link{font-size: 19px !important}
    .cell-title{font-size: 25px}
    .cell-subtitle{font-size: 21px}
}
@media screen and (max-width: 359px){
    .cell-title{font-size: 23px}
    nav .brand .brand-name span{display: none}
}
@media screen and (max-height: 400px){
    .cell-title{bottom: 40%}
    .cell-subtitle{top: 60%}
    .cell-title{font-size: 22px}
    .cell-subtitle{font-size: 19px}
    .advice{display:none !important}
}
.paper-item {
    width: 100%;
    background: #efefef;
    margin: 10px 0;
    border-radius: 11px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.paper-title {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background-color: #ffffff;
    color: #80746c;
    font-weight: 600;
    border-radius: 11px 11px 0 0;
    text-align: left;
    line-height: 19px;
}
.paper-tag {
    display: inline-block;
    font-size: 12px;
    padding: 3px;
    border-radius: 50px;
    background: #ffffff;
    color: #80746c;
    margin-top: 8px;
}
.paper-info-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: left;
    align-content: left;
    width: 100%;
    font-size: 16px;
    color: #80746c;
    padding: 10px 15px 0 15px;
}
.paper-title a:hover{
    filter: brightness(85%);
}
.paper-info {
    padding-right: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: left;
}
.paper-open-box {
    border-top: 2px solid #80746c;
    border-bottom: 2px solid #80746c;
    font-size: 13px;
    padding: 7px 14px;
    color: #80746c;
    width: auto;
    margin: 7px 0;
    transition: 0.2s ease all;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
}
.paper-open-box.quick-info{
    border-radius: 20px 0 0 20px;
    border-left: 2px solid #80746c;
}
.paper-open-box.abstract{
    border-radius: 0 20px 20px 0;
    border-right: 2px solid #80746c;
}
.paper-open-box.open {
    color: white;
    background: #80746c;
}
.paper-open-box.open .paper-content-reveal{
    display: block;
    margin-top: 10px;
}
.paper-open-box .paper-content-reveal{
    font-size: 14px;
    text-align: left;
    margin: auto;
    display: none;
    color: white;
}
.paper-expand-box {
    width: 100%;
    text-align: left;
    padding-left: 15px;
    margin-bottom: 5px;
}
.paper-citation, .paper-abstract {
    color: #80746c;
    padding: 0 40px;
    font-size: 15px;
    margin: 10px 0;
    display: none;
}
.paper-citation b, .paper-abstract b, .citation-hidden b, .paper-info b{
    font-weight: 600;
}
.paper-item h3{
    font-weight: 600;
    text-align: left;
    margin-bottom: 5px;
}
.publications-list.compact .paper-main {
    visibility: hidden;
    height: 0;
}
.publications-list.compact .paper-title {
    background: none;
    color: #80746c;
    border-radius: 11px;
    padding: 0;
}
.publications-list.compact .paper-item{
    border-radius: 11px;
    background: none;
    margin: 5px 0;
    padding: 0;
    box-shadow: none;
    transition: none;
}
.publications-list.compact .paper-item:hover{
    box-shadow: none;
}
.publications-list.compact .paper-item .paper-tag{
    border-radius: 11px;
    background: #80746c;
    color: white;
}
.copy-click {
    cursor: pointer;
    font-weight: 900;
    padding: 7px 12px;
    border: 2px solid #80746c;
    border-radius: 50px;
    font-size: 13px;
    display: inline-block;
    margin-top: 8px;
}
.copy-click:hover{
    background: #80746c;
    color: white;
}
.paper-abstract {
    font-size: 13px;
}
.publications-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.citation-hidden{
    display:none;
    color: #b4b4b4;
    font-size: 12px;
    margin-top: 5px;
    padding-left: 10px;
    
}
.publications-list.compact .paper-item .citation-hidden{
    display: block;
}
.publications-list.alpha .pub-year{
    display: none;
}
h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #999999;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    font-size: 18px;
}

.filter-settings {
    margin-bottom: 10px;
    color: #888888;
    font-size: 16px;
}
.filter-settings .left{
    max-width: calc(100% - 90px);
}
#compact-toggle {
    font-size: 23px;
    cursor: pointer;
}
#compact-toggle .fa-th-large{
    color: #eeeeee;
}
.pub-year{
    margin-top: 15px;
    margin-bottom: 2px;
}
body.searching .pub-year{
    display: none !important;
}
.filter-button {
    display: inline-block;
    margin: 0 4px;
}
.filter-button i{
    font-size: 26;
}
#searchbox {
    width: 100%;
    padding: 15px 20px;
    border: none;
    margin-top: 20px;
    font-size: 18px;
    border-radius: 100px;
    outline: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
#searchbox:focus, #searchbox:active, #searchbox:hover{
    box-shadow: 0 11px 20px rgba(0,0,0,0.15), 0 8px 8px rgba(0,0,0,0.18);
}
.search-warning {
    border-radius: 11px;
    width: 100%;
    padding: 0;
    background-color: #f2e008;
    color: black;
    font-size: 14px;
    margin-bottom: 15px;
    overflow: hidden;
    max-height: 0;
    transition: 0.1s max-height ease;
    margin-top: -15px;
}
body.searching .search-warning{
    max-height: 100px;
    padding: 10px;
}

.jump-button {
    border-radius: 100px;
    padding: 4px 8px;
    background-color: #80746c;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff !important;
    border-bottom: none !important;
    flex-grow: 0;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    margin: 3px;
    transition: 0.3s ease all;
}
.jump-button:hover {
    box-shadow: 0 8px 14px rgba(0,0,0,0.25), 0 5px 5px rgba(0,0,0,0.22);
    transform: scale(1.01);
    filter: brightness(100%) !important;
}
.jump-button:active{
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transform: scale(0.97);
}
a.anchor {
    display: block;
    position: relative;
    top: -150px;
    visibility: hidden;
}

.job-tag {
    padding: 4px 8px;
    border-radius: 100px;
    color: white;
    font-size: 85%;
    float: right;
    display: inline-block;
}
.job-tag.green{
    background-color: #1aac00;
}
.job-tag.orange{
    background-color: #e68e00;
}


.biography {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}
