/*  Reset */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
ul, li{
    list-style-type: none;
}
iframe{
    border: 0;
}
input, select, button {
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-appearance: none;
    outline: none;
    border: 0px;
    background: transparent;
    font-size: 1em;
}
:focus{
    border: 0px;
    outline: none;
}

/*  Typography */

@font-face {
    font-family: 'peso';
    src: url('fonts/Peso-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body, html, h1, h2, h3, h4, ::placeholder, input, button, small{
    font-family: 'peso', Arial, Helvetica, sans-serif;
    letter-spacing: 0.02em;
    font-size: 23px;
    line-height: 1.2em;
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: font-family 1s ease;
}
body, html{
    width: 100%;
    background: var(--yellow);
}
a{
    color: initial;
	text-decoration: none;
}
a:hover{
	color: initial;
	text-decoration: none;
}
p{
    padding: 0;
    margin: 0;
}
.button{
    background: rgb(0, 0, 0);
    padding: 0.25em 1em;
    border-radius: 2em;
    color: rgb(255, 255, 255);
    transition: transform 0.25s ease;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2em;
}
.button:hover{
    color: rgb(255, 255, 255);
    transform: rotate(-5deg) scale(1.05);
}
.js-link span{
    pointer-events: none;
}
:root {
    --yellow: rgb(236, 252, 4);
}
/*  Common */
p{
    padding-bottom: 1em;
}
p:last-child{
    padding-bottom: 0;
}
footer{
    padding: 1em 1em 0 1em;
}
figure img{
    width: 100%;
}
figcaption{
    font-size: 0.75rem;
    line-height: 1.2em;
}
strong{
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    width: 100%;
    padding-bottom: 0.75em;
}
.close{
    cursor: pointer;
}
.close::after{
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    content: '×';
    font-size: 1.25rem;
    line-height: 0.8em;
}
.message{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 1.2em;
    text-align: center;
    padding: 0 2em;
}
.mobile{
    display: none;
}
ul li{
    list-style-type: disc;
    margin-left: 1em;
}
/* Transitions */
#app{
    position: relative;
/*     height: 100vh;
    overflow: scroll;
 */}
.content{
    position: fixed;
    background: #fff;
    box-shadow: 0em -0.5em 0.5em rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    transform-origin: center -10vh;
    padding-bottom: 1em;
}
.leaving{
    animation: leave 0.25s ease forwards;
    height: 110vh;
}
.entering{
    transform: translateY(100vh);    
    animation: enter 0.5s ease 0.2s forwards;
}
@keyframes enter{
    100%{
        transform: translateY(0vh);    
    }
}
@keyframes leave{
    100%{
        margin: auto; 
        transform: translateY(-2vh);    
        filter: blur(0.2rem)
    }
}
/*  Header */
header h1{
    display: none;
}
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1em;
    text-align: center;
    z-index: 100;
}
nav li{
    display: inline-block;
    margin: 0 0.15em 0.5em 0.15em;
}
.button-logout{
    position: absolute;
    right: 1em;

}
/*  Footer */
.subscribe-links{
    text-align: center;
    padding-bottom: 2em;
    line-height: 1.2em;
    font-size: 1.5rem;
}
.subscribe-links a{
    margin-top: 1em;
    font-size: 1rem;
    line-height: 1.2em;
}
.footer-wrapper{
    font-size: 0.5rem;
    line-height: 1.2em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px rgb(0, 0, 0) solid;
}
.footer-wrapper div{
    text-align: center;
    padding: 1em;
}
.footer-wrapper a{
    padding: 0 0.5em;
}
.footer-wrapper div:first-child{
    border-right: 1px rgb(0, 0, 0) solid;
}
.footer-wrapper div:last-child{
    border-left: 1px rgb(0, 0, 0) solid;
}
.login-wrapper, .newsletter-wrapper{
    font-size: 1rem;
    width: calc(100% - 2em);
    max-width: 20em;
    background: var(--yellow);
    padding: 1em;
    box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
    margin: 0 auto 3em auto;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateY(calc(-100vh - 20em)) translateX(-50%) rotate(-45deg);
    z-index: 100;
    transition: all 0.5s ease;
    pointer-events: none;
}
.login-wrapper.visible,  .newsletter-wrapper.visible{
    pointer-events: all;
    transform: translateY(-50%) translateX(-50%) rotate(0deg);
}
.input-field{
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    border-bottom: 2px rgb(0, 0, 0) solid;
}
.login-wrapper .login-button, .newsletter-wrapper .newsletter-button{
    text-align: center;
    border-bottom: 0px;
}
.login-alert{
    margin-bottom: 2em;
    font-size: 0.75rem;
    animation: alert 0.4s ease alternate 4;
    animation-fill-mode: forwards;
}
div[for='mce-EMAIL']{
    font-size: 0.75rem;
    animation: alert 0.4s ease alternate 4;
    animation-fill-mode: forwards;
}
.login-wrapper h4, .newsletter-wrapper h4{
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1em;
}
@keyframes alert{
    100%{
        opacity: 0;
    }
}
/*  Home */
.content.home{
    padding-bottom: 0;
}
.content.home::after{
    content: 'Scroll';
    position: fixed;
    bottom: 1em;
    width: 100%;
    text-align: center;
    animation: scroll-blink 0.7s linear alternate 16;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes scroll-blink{
    100%{
        opacity: 1;
    }
}
.banner{
    position: fixed;
    top: -60vh;
    left: calc(50vw - 12em);
    padding: 1em;
    width: 25em;
    text-align: center;
    background: rgb(255, 255, 255);
    box-shadow: 0.5em 0.5em 1em rgba(0, 0, 0, 0.5);
    transform: rotate(170deg);
    transition: all 0.5s ease;
    cursor: pointer;
}
.banner.visible{
    top: calc(50vh - 2em);
    transform: rotate(-15deg);
}
.slide-wrapper{
    width:100vw;
    position: relative;
}
.slide-inner{
    position: absolute;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    pointer-events: none;
    margin: 0;
}
.slide-wrapper.enter .slide-inner{
    position: fixed;
    top: 0;
}
.slide-wrapper.leave .slide-inner{
    position: absolute;
    bottom: 0;
    top: auto;
}
.slide-wrapper.leave{
    overflow-y: initial;
}
.slide{
    width:100vw;
    height:100vh;
    left: 0;
}
.slide figure{
    width: calc(100% - 4em);
    margin: 1em auto;
    position: relative;
    height: calc(100% - 2em);
}
.slide figure img{
    width: 100%;
    height: calc(100% - 2em);
    object-fit: contain;
}
.slide figcaption{
    position: absolute;
    bottom: 1em;
    left: 1em;
    width: calc(100% - 1em);
    text-align: center;
}
.fullscreen .slide{
    position: -webkit-sticky;
    left: 0px;
}
.fullscreen .slide figure{
    width: 100%;
    margin: 0;
    height: 100%;
}
.fullscreen .slide figure img{
    height: 100%;
    object-fit: cover;
}
.fullscreen .slide figcaption{
    color: rgb(255, 255, 255);
    text-align: left;
    filter: drop-shadow(0em 0em 0.1em #000);
}
.fullscreen .slide-logo{
    background: var(--yellow);
}
.fullscreen .slide-logo figure img{
    height: calc(100% - 4em);
    object-fit: contain;
}
.fullscreen .slide-logo .desktop{
    margin: 3em auto 1em auto;
}
.fullscreen .slide-logo .mobile, .fullscreen .slide.mobile{
    display: none;
}
.home footer{
    display: none;
}
/* About */
.about h2{
    font-size: 3.5rem;
    letter-spacing: -0.0em;
    text-align: center;
    line-height: 1em;
    padding: 1.75em 0 0.5em 0;
    text-transform: uppercase;
    margin: auto;
    width: calc(100% - 2em);
    max-width: 30em;
}
.anchors{
    text-align: center;
    padding: 1em 2em 4em 2em;
}
.anchors a{
    padding: 0.5em 1em;
    margin: 0 0.25em 0.5em 0.25em;
    background: var(--yellow);
    box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease;
    display: inline-block;
}
.anchors a:hover{
    transform: scale(0.98);
}
.about .paragraph p{
    font-size: 1.5rem;
    line-height: 1.15em; 
}
.colophon{
    width: calc(100vw - 2em);
    max-width: 40em;
    margin: auto;
}
.colophon-link{
    text-align: center;
    padding-bottom: 2em;
}
.colophon-text{
    columns: 2;
    height: 0;
    overflow: hidden;
    opacity: 0;
    filter: blur(1em);
    transition: all 0.5s ease;
}
.colophon-text.visible{
    filter: blur(0);
    opacity: 1;
    height: auto;
    margin-bottom: 2em;
    overflow: visible;
}
.colophon-text p{
    break-inside: avoid;
    padding-bottom: 1.2em;
    font-size: 1.5rem;
    line-height: 1.2em;
}
blockquote{
    padding: 2em 2.5em;
    border: 2px black solid;
    border-radius: 50%;
    text-align: center;
    max-width: 30em;
    margin: 1em auto
}
blockquote, blockquote p{
    font-size: 1rem !important;
    line-height: 1.2em;
}
/*  About and projects blocks */
.block{
    padding: 0 0 4em 0;
}
.paragraph{
    width: calc(100% - 2em);
    max-width: 40em;
    margin: auto;
}
.video{
    width: calc(100% - 2em);
    max-width: 40em;
    margin: auto;   
}
.vimeo{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.vimeo iframe, .vimeo object, .vimeo embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.images[images-count="1"]{
    margin: 0 1em;
}
.gallery{
    margin: 0;
}
.images[images-count="2"]{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2em;
    margin: 0 2em;
}
/*  Alumni */
.alumni h2{
    font-size: 1.5rem;
    line-height: 1.15em; 
    width: calc(100% - 2em);
    max-width: 40rem;
    margin: auto;
    padding: 4em 0 2em 0;
}
.pop-up{
    width: calc(100% - 2em);
    max-width: 30em;
    background: var(--yellow);
    padding: 1em;
    box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
    margin: 0 auto 3em auto;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-150vh) rotate(120deg);
    z-index: 100;
    transition: all 0.5s ease;
    pointer-events: none;
}
.pop-up.visible{
    pointer-events: all;
    opacity: 1;
    transform: translateY(-50%) translateX(-50%) rotate(0deg);
}
.pop-up .close{
    position: absolute;
    top: 0.5em;
    right: 0.6em;
    width: 1.5em;
    height: 1.5em;
    display: block;
    z-index: 2;
}
.pop-up .close::after{
    position: static;
    display: block;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5em;
}
.pop-up strong{
    padding-bottom: 1em;
}
.pop-up p{
    margin: 0;
}
.coupon-feedback{
    display: block;
    font-size: 0.85em;
    margin-top: 0.25em;
    min-height: 1em;
}
.coupon-feedback[data-state=valid]{ color: #1a7f37; }
.coupon-feedback[data-state=invalid]{ color: #cc0033; }
.coupon-feedback[data-state=checking]{ color: #888; }
.pop-up p + p,
.pop-up ul + p,
.pop-up p:last-child:not(:first-child){
    padding-top: 1em;
    text-align: center;
}
.go-to-letter {
    padding: 0 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.go-to-letter li{
    list-style-type: none;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1.15em; 
    margin: 0;
    padding: 0 0.25em;
}
.alumni-wrapper{
    padding-bottom: 3em;
}
.alumni-wrapper ul{
    border-bottom: 2px rgba(0, 0, 0, 0.8) solid;
}
.alumni-wrapper li{
    font-size: 1.5rem;
    line-height: 1.2em;
    padding: 0.5em;
    transition: background-color 0.5s ease;
    border-top: 2px rgba(0, 0, 0, 0.8) solid;
    height: 3.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}
.alumni-wrapper li:hover{
    background: var(--yellow)
}
.alumni-wrapper li a{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 6fr 1fr 1fr;
    align-items: center;
}
.alumni-wrapper a.disabled{
    pointer-events: none;
    filter: blur(0.15em);
}
.alumni-wrapper li.disabled:hover{
    background: transparent;
}
.alumni-letter{
    font-size: 1rem;
    line-height: 1.2em;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 2.25em;
    height: 2.25em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1em;
}
.back-to-top{
    position: fixed;
    bottom: 1em;
    left: calc(50% - 2em);
    z-index: 100;
    cursor: pointer;
}
.sticky{
    position: sticky;
    top: 0;
}
.alumni-wrapper .sticky{
    height: 3.5rem;
    display: flex;
    align-items: center;
}
.alumni-name{
    padding-left: 4em;
}
.alumni-icon{
    font-size: 1rem;
    line-height: 1.2em;
    background: var(--yellow);
    box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    min-width: 2.25em;
    height: 2.25em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 1em;
    text-transform: uppercase;
    padding: 0 0.25em;
}
/*  Student */
.student h2, .subscribe h2{
    font-size: 3rem;
    letter-spacing: -0.0em;
    text-align: center;
    line-height: 1em;
    padding: 2em 0 0.5em 0;    
}
.student-icon{
    text-align: center;
    padding-bottom: 2em;
}
.student-icon .icon{
    font-size: 4rem;
    display: inline-flex;
    margin: auto;
    border: 0.07em rgb(0, 0, 0) solid;
    min-width: 2.25em;
    height: 2.25em;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
    padding: 0 0.2em;
    text-transform: uppercase;
}
.student-info{
    font-size: 1.25rem;
    line-height: 1.2em;
    width: calc(100% - 2em);
    max-width: 30rem;
    margin: auto;
}
.student-info li{
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 2px rgba(0, 0, 0, 0.8) solid;
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-left: 0;
}
.student-info li.hidden{
    display: none;
}
.student-gallery figure{
    width: calc(100% - 2em);
    margin: 1em;
    text-align: center;
}
.student-gallery figure img{
    height: 80vh;
    width: 100%;
    object-fit: contain;
}
/*  Subscribe */
.content.subscribe{
    padding-bottom: 2em;
}
.response{
    width: calc(100% - 2em);
    max-width: 40em;
    margin: auto;
    text-transform: uppercase;
    font-size: 2em;
    line-height: 1.2em;
    text-align: center;
    padding: 4em 0;
    min-height: calc(100vh - 2.5em);
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-wrapper .response{
    font-size: 1.5em;
    padding: 1em 0;
    min-height: 1em;
}
.subscribe-button{
    text-align: center;
}
.update-button{
    padding-top: 1em;
    text-align: center;
}
input, select{
    font-size: 1em;
    width: 100%;
}
input.button{
    width: auto;
}
select{
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAASCAYAAAAHWr00AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDE3OUY5RTlFRkREMTFFMzgzODhBOEY5REMxNzI0REMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDE3OUY5RThFRkREMTFFMzgzODhBOEY5REMxNzI0REMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OUE4Q0JDODJDQTFDMTFFM0JBNUNDNTY5NTZCMUE4MzIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OUE4Q0JDODNDQTFDMTFFM0JBNUNDNTY5NTZCMUE4MzIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5rOtVzAAABA0lEQVR42tTWMQrCMBQG4NdOOhY8gpco4iSIcy8kXqvg7Co4uLi61XYQ1Mn6BzLEmrQkNunrg5+UkvLykVBCSZJkyANZUYASfWS/rK5rCp0IjZ9YxwR5I+uqqvY+sRhyJEZeZVlOKXCJxlflOfe10w0sKX2DgzdI4ROtwRayb3gwjvAFY+oLbcCmsu8gO0y+0NywpCykdzRH7Be4TzRX7A+4DzRnrBb8D1qDvXHCGsEuaA32jiw5YVvBNmgDdoHvz8Ss4q4JXegW7IkYVmTx551jOCAz+UrcvbfIzhUrLvNswQa0WtY7OwQ4tpmsOd40hmPsDDagR4N1AjfQxzFhRX0EGABQlwrmGBOjAQAAAABJRU5ErkJggg==);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 1.5em;
    cursor: pointer;
}
input[type="radio"]{
    display: none;
}
input[type="radio"] + label{
    position: relative;
    padding-left: 2em;
    display: block;
}
input[type="radio"] + label:before{
    content: "";
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    margin-right: 2em;
    position: absolute;
    top: 0.1em;
    left: 0;
    cursor: pointer;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid rgb(0, 0, 0);
}
input[type="radio"]:checked + label:before{
    background-color: rgb(0, 0, 0);
}
.suscribe-terms{
    padding: 2em 0;
    cursor: pointer;
}
.subscribe h4{
    font-size: 1em;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 2px rgba(0, 0, 0, 0.8) solid;
}
.payment-method-stripe{
    padding-bottom: 1em;
}
#card-element{
    font-size: 1em;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 2px rgba(0, 0, 0, 0.8) solid;
}
.suscribe-terms a{
    font-style: oblique;
}
/*  Projects */
.projects h2{
    font-size: 1.5rem;
    line-height: 1.15em; 
    width: calc(100% - 2em);
    max-width: 40rem;
    margin: auto;
    padding: 4em 0 2em 0;
}
.projects-wrapper li{
    width: calc(100% - 4em);
    max-width: 45em;
    height: calc(100vw / 2.5);
    overflow: hidden;
    margin: 0 auto 2em auto;
    background: var(--yellow);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    position: relative;
}
.upcoming{
    animation: blink 1s ease infinite;
}
@keyframes blink{
    50%{
        background: rgb(255, 255, 255);
    }
    100%{
        background: var(--yellow);
    }
}
.projects-wrapper li a{
    text-transform: uppercase;
    font-size: 1.75rem;
    line-height: 1.2em;
    width: 100%;
    z-index: 1;
    transition: color 0.45s ease;
}
.projects-wrapper li a span{
    display: block;
    width: 100%;
}
.projects-wrapper li img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.projects-wrapper li:hover a{
    color: rgba(255, 255, 255, 0.9)
}
.projects-wrapper li:hover img{
    opacity: 1;
}
/*  Project */
.project h2{
    font-size: 3.5rem;
    letter-spacing: -0.0em;
    text-align: center;
    line-height: 1em;
    padding: 1.75em 0 1.5em 0;    
    text-transform: uppercase;
}
.project h2 span{
    display: block;
}
.project-info{
    max-width: 20em;
    background: var(--yellow);
    padding: 1em;
    text-transform: uppercase;
    box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
    margin: 0 auto 3em auto;
}
.project-info li{
    list-style-type: disc;
    margin-left: 1em;
}
.paragraph p{
    font-size: 1.25rem;
    line-height: 1.15em; 
    padding-bottom: 1em;
}
p:last-child{
    padding-bottom: 0;
}
/*  Contacts */
.contacts{
    background: var(--yellow);
}
.content.contacts{
    padding: 3em 0 1em 0;
}
.contacts-info{
    width: calc(100% - 1em);
    margin: auto;
}
.content.contacts, .content.contacts h2{
    font-size: 2rem;
    line-height: 1.2em;
    text-align: center;
}
.content.contacts h2{
    text-transform: uppercase;
    padding-bottom: 1em;
}
.content.contacts p{
    padding-bottom: 1em;
}
.contacts-main{
    min-height: calc(100vh - 8em);
}
.contacts img{
    width: 4.5em;
    padding-bottom: 1em;
}
/* Jobs */
.jobs{
    padding: 6em 0 1em 0;
}
.jobs h2{
    font-size: 1.5rem;
    line-height: 1.15em; 
    width: calc(100% - 2em);
    max-width: 40rem;
    margin: auto;
    padding: 0 0 1em 0;
}
.jobs-items{
    background: #fff;
    box-shadow: 0em 0em 0.5em rgba(0, 0, 0, 0.2);
    margin-top: 0.5em;
}
.jobs-list{
    width: calc(100% - 2rem);
    max-width: 40rem;
    margin: 0 auto 4em auto;
}
.jobs-list h4{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    text-transform: uppercase;
}
.jobs-items li{
    font-size: 1.5rem;
    line-height: 1.2em;
    padding: 0.5em;
    transition: background-color 0.5s ease;
    border-top: 2px rgba(0, 0, 0, 0.8) solid;
    height: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    margin: 0;
}
.jobs-items li:first-child{
    border-top: 0px;
}
.jobs a:hover{
    color:#2622da;
}
.jobs-button{
    text-align: center;
    padding: 0em 1em 4em 1em;
}
/*  Terms */
.terms-and-conditions h2{
    text-transform: uppercase;
    text-align: center;
    font-size: 2rem;
    line-height: 1.2em;
    padding: 3em 0 1.5em 0;
    width: calc(100% - 1em);
    margin: auto;
}
.terms-wrapper{
    padding: 0 1em 2em 1em;
    columns: 2;
    column-gap: 2em;
    max-width: 52em;
    margin: auto;
}
.terms-wrapper p, .terms-wrapper ul{
    padding-bottom: 1em;
    break-inside: avoid;
}
/*  Media Query */
@media only screen and (max-width: 960px) {
    nav{
        text-align: left;
    }
}
@media only screen and (max-width: 768px) {
    body, html, h1, h2, h3, h4, ::placeholder, input, button, small{
        font-size: 16px;
        line-height: 1.2em;
    }
    .banner.visible{
        top: calc(50vh - 3em);
        transform: rotate(-60deg);
    }
    nav{
        text-align: center;
    }
    nav ul{
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s ease;
        position: absolute;
        top: 1em;
    }
    nav.visible ul{
        opacity: 1;
        pointer-events: all;
    }
    .menu-open{
        transition: all 0.5s ease;
    }
    .button-logout{
        position: relative;
        right: 0;
    }
    nav.visible .menu-open{
        opacity: 0;
        pointer-events: none;
    }
    .mobile{
        display: inline-block;
    }
    .fullscreen .slide-logo .mobile, .fullscreen .slide.mobile{
        display: block;
    }
    .fullscreen .slide-logo .desktop, .fullscreen .slide.desktop{
        display: none;
    }
    .slide.desktop{
        display: none
    }
    .slide.mobile{
        display: block
    }
    .about h2, .project h2 {
        font-size: 2rem;
        line-height: 1.2em;
        padding-top: 2em;
        padding-bottom: 1em;
    }
    .anchors{
        padding: 0 2em 1em 2em;
    }
    .block {
        padding: 0 0 3em 0;
    }
    .images[images-count="1"], .gallery {
        margin: 0;
    }
    .images[images-count="2"] {
        column-gap: 1em;
        margin: 0 1em;
    }
    .images[images-count="2"] figcaption {
        padding-left: 0em;
    }
    figcaption{
        padding-left: 1em;
    }
    .about .paragraph p {
        font-size: 1.25rem;
        line-height: 1.15em;
    }
    .colophon-text{
        columns: 1;
    }
    .colophon-text p{
        font-size: 1.25rem;
        line-height: 1.15em;   
        text-align: center;    
    }
    .content.contacts, .content.contacts h2 {
        font-size: 1.7rem;
        line-height: 1.2em;
        text-align: center;
    }
    .contacts-info{
        min-height: 50vh;
    }
    .terms-and-conditions h2{
        padding-top: 2.5em;
    }
    .terms-wrapper{
        columns: 1;
    }
    .alumni h2 {
        font-size: 1.25rem;
        line-height: 1.2em;
        padding: 3em 0 2em 0;
    }
    .alumni-wrapper .sticky{
        z-index: 5;
    }
    .alumni-wrapper li{
        height: auto;
        font-size: 1.25rem;
        line-height: 1.2em;
    }
    .alumni-wrapper li a{
        grid-template-columns: 6fr 2fr 1fr;
    }
    .alumni-name {
        padding-left: 1em;
    }
    .student h2, .subscribe h2 {
        font-size: 2rem;
        line-height: 1.2em;
    }
    .student-icon .icon {
        font-size: 3rem;
    }
    .student-icon {
        padding-bottom: 3em;
    }
    .student-info {
        font-size: 1rem;
        line-height: 1.2em;
        padding-bottom: 2em;
    }
    .projects h2{
        font-size: 1.25rem;
        line-height: 1.2em;
        padding: 3em 0 2em 0;
    }
    .projects-wrapper li{
        width: calc(100% - 2em);
        height: calc(100vw / 2);
    }
    .projects-wrapper li a{
        font-size: 1.25rem;
    }
    .subscribe-links{
        padding: 0 1.5em 2em 1.5em;
    }
    .footer-wrapper{
        font-size: 0.75rem;
        grid-template-columns: 1fr;
    }
    .footer-wrapper div:first-child {
        border-right: 0px;
        border-bottom: 1px rgb(0, 0, 0) solid;
    }
    .footer-wrapper div:last-child {
        border-left: 0px;
        border-top: 1px rgb(0, 0, 0) solid;
    }
    .student-gallery figure img{
        height: auto;
        width: 100%;
        object-fit: unset;
    }
}
