@font-face {
    font-family: Garamond;
    src: url(CormorantGaramond-SemiBold.ttf);
}

/* Page settings */
:root {
    --backgroundColor: #f5f5f5;
    --fontColor: black;
    --greyColor: #808080;
    --goldColor: #a59681;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: Garamond;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
}

html{
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: var(--backgroundColor);
    width: 100%;
    height: auto;
    color: var(--fontColor);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    -moz-font-feature-settings: "lnum";
    -webkit-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    overflow: overlay;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

h1 {
    font-size: 24px;
    font-family: Garamond;
}

h3 {
    text-transform: none;
    letter-spacing: 2;
    font-size: 20px;
    font-family: Garamond;
}

h4 {
    font-size: 16px;
    font-family: Garamond;
    letter-spacing: 1;
}

h5 {
    font-size: 16px;
    font-family: Garamond;
    letter-spacing: 1;
    line-height: 1;
}

h6 {
    font-size: 14px;
    font-family: Garamond;
    letter-spacing: 1;
}

p {
    font-size: 16px;
}


/* Navbar */
header img {
    width: auto;
    height: 30px;
}

nav {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 8vh;
    font-family: 'Garamond';
}

@media screen and (max-width:1024px) {
    nav {
        max-width: 710px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
}

@media screen and (max-width:768px) {
    nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 10vh;
    }
}

.logo {
    text-align: center;
}

.logo img {
    height: 65px;
}

.nav-links {
    display: flex;
    justify-content: right;
    gap: 3vw;
}

@media screen and (max-width:1024px) {
    .nav-links {
        display: flex;
        justify-content: right;
        gap: 5vw;
    }
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--fontColor);
    text-decoration: none;
    letter-spacing: 0px;
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--greyColor);
    transition: fill 170ms ease-in-out;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 1px;
    background-color: var(--fontColor);
    margin: 7px;
    transition: all 0.2s ease;
}

@media screen and (max-width:1024px) {
    .logo {
        position: relative;
        z-index: 1;
        padding-bottom: 1.5vw;
    }
    
    .nav-links {
        width: 35%;
    }
}

@media screen and (max-width:768px) {
    body {
        overflow-x: hidden;
    }

    .logo {
        padding-bottom: 2vw;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        height: 185vh;
        padding-top: 90vh;
        background-color: rgba(255, 255, 255, 0.9);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        line-height: 80px;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in;
    }

    .nav-links li {
        opacity: 1;
    }

    .burger {
        display: block;
    }

    .nav-links a {
        color: var(--fontColor);
        text-decoration: none;
        letter-spacing: 0px;
        font-size: 35px;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.menu {
    position: fixed;
    top: 0;
    align-items: center;
    background-color: white;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 15px;
    z-index: 1;
    height: 128px;
}

.homemenu {
    position: absolute;
    top: 0;
    align-items: center;
    width: 100%;
    padding-top: 25px;
    z-index: 1;
}

.nav-links .current {
    border-bottom: 1.5px solid currentColor;
}


/* Body */
main {
    display: block;
    padding-top: 128px;
    min-height: 100vh;
}

.main-content {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
}

.container {
    max-width: 1080px;
    margin: 5vw auto;
    padding: none;
}

@media screen and (max-width:1024px) {
    .container {
        padding-top: 1.5vw;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding-top: 5vw;
    }
    .header {
        margin-top: 5vw;
    }
}


/* Projects gallery */
.gallery-projects {
    max-width: 1080px;
    margin: 5vw auto;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, max(340px));
    column-gap: 30px;
    row-gap: 30px;
}

@media screen and (max-width:1024px) {
    .gallery-projects {
        padding-top: 2vh;
    }
}

.gallery-projects img {
    width: 340px;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.grid-item {
    display: block;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
}

.grid-item img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: grey;
}

.grid-item img:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    filter: none;
    transition: opacity ease 1.25s;
    -webkit-transition: all 1.25s ease;
    -moz-transition: all 1.25s ease;
    -ms-transition: all 1.25s ease;
}

.grid-image {
    position: relative;
}

.grid-image-heinekenhoek {
    image-orientation: 70% 50%;
}

.grid-text {
    position: relative;
    padding-top: 0.5vw;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--fontColor);
}

.grid-item-hide {
    display: none;
}

/* Project specific */
.image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.project-image-miscellaneous {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 65%;
}

.project-image-heinekenhoek {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 45%;
}

.project-image-ringrotterdam {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 51%;
}

.project-image-bozar {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 28%;
}

.project-image-ssphal {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 28%;
}

.project-image-sc010 {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 40%;
}

.project-image-gebouw8 {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 0% 53%;
}

.project-image-kamerlinghonneslaan {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 82%;
}

.project-image-bproud {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 50%;
}

.project-image-ostadeblok {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 50%;
}

.project-image-iks {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 54%;
}

.project-image-infinityhotel {
    width: 1080px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 60%;
}

@media screen and (max-width: 768px) {
    .project-image {
    max-width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .project-image-miscellaneous {
        max-width: 100%;
    }.project-image-heinekenhoek {
        max-width: 100%;
    }    
    .project-image-ringrotterdam {
        max-width: 100%;
    }
    .project-image-bozar {
        max-width: 100%;
    }
    .project-image-ssphal {
        max-width: 100%;
    }
    .project-image-sc010 {
        max-width: 100%;
    }
    .project-image-gebouw8 {
        max-width: 100%;
    }
    .project-image-kamerlinghonneslaan {
        max-width: 100%;
    }
    .project-image-bproud {
        max-width: 100%;
    }
    .project-image-ostadeblok {
        max-width: 100%;
    }
    .project-image-iks {
        max-width: 100%;
    }
    .project-image-infinityhotel {
        max-width: 100%;
    }
    .grid-item img {
        -webkit-filter: none;
        -moz-filter: none;
        -ms-filter: none;
        filter: none;
    }
}

.project-describtion {
    max-width: 1080px;
    display: block;
}

.row {
    width: 100%;
    display: flex;
}

.row-2 {
    width: 100%;
    display: flex;
}

.row-3 {
    width: 100%;
    display: flex;
}

.column {
    width: 100%;
    float: left;   
}

.column-1 {
    width: 33.3333%;
    float: left;
    padding-top: 2vw;
    padding-left: 3vw;
    padding-right: 3vw;
}

.project-title {
    text-align: right;
}

.project-subtitle {
    margin-top: 1vw;
    text-align: right;
}

.column-2 {
    width: 63.3333%;
    float: left;
    padding-top: 2vw;
    padding-left: 3vw;
    padding-right: 3vw;
}

.column-2-content {
    text-align: justify;
}

.column-3 {
    padding-top: 2vw;
    padding-left: 3vw;
    padding-right: 3vw;
    width: 100%;
    display: block;
    text-align: center;
    word-wrap: break-word;
    line-height: 1.5;
}

@media screen and (min-width:631px) {
    .row-3 {
    display: none;
    }
}

@media screen and (max-width: 630px) {
    .project-title {
        text-align: center;
        margin-top: 6vw;
    }
    .project-subtitle {
        text-align: center;
        margin-top: 3vw;
        margin-bottom: 6vw;
    }.row {
        display: grid;
    }
    .row-2 {
        display: none;
        }
    .column-1 {
        width: 100%;
    }
    .column-2 {
        text-align: left;
        width: 100%;
        margin-bottom: 6vw;
    }
    .column-3 {
        margin-bottom: 6vw;
        text-align: left;
    }
}


/* Project specific galleries */
.gallery-gebouw8 {
    max-width: 1080px;
    margin: 3vw auto;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, max(340px));
    column-gap: 30px;
    row-gap: 30px;
}

.gallery-gebouw8 img {
    width: 340px;
    height: 340px;
    object-fit: cover;
    object-position: center;
    cursor: zoom-in;
}

.gallery-gebouw8 img:hover {
    transform: scale(1.1);
    transition: 1s;
}

@media screen and (max-width: 630px) {
    .gallery-gebouw8 a {
        pointer-events: none;
        cursor: default;
    }
}

.pagination {
    display: flex;
    align-items: center;
    margin: 3vw;
    width: auto;
    vertical-align: middle;
}

.pagination-gebouw8 {
    display: flex;
    align-items: center;
    margin-left: 3vw;
    margin-right: 3vw;
    margin-top: 3vw;
    width: auto;
    vertical-align: middle;
}

.pagination-gebouw8-2 {
    display: flex;
    align-items: center;
    margin-left: 3vw;
    margin-right: 3vw;
    margin-top: 1.5vw;
    margin-bottom: 3vw;
    width: auto;
    vertical-align: middle;
}

@media screen and (max-width: 630px) {
    .pagination-gebouw8-2 {
        margin-top: 3vw;
    }
}

.previous {
    color: black;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    width: 50%;
    justify-content: left;
    text-align: left;
    align-items: center;
}

.next {
    color: black;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    width: 50%;
    justify-content: right;
    text-align: right;
    align-items: center;
}

.next-first {
    color: black;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    width: 100%;
    justify-content: right;
    text-align: right;
    align-items: center;
}

.previous-last {
    color: black;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    width: 100%;
    justify-content: left;
    text-align: left;
    align-items: center;
}

.chevron::before {
    color: black;
	border-style: solid;
	border-width: 1.5px 1.5px 0 0;
	content: '';
	display: inline-block;
	height: 12px;
    position: relative;
	width: 12px;
    transform: rotate(45deg);
    margin-right: 15px;
    margin-left: 15px;
    vertical-align: middle;
}

.chevron.left:before {
	transform: rotate(-135deg);
}

.chevron.right:before {
	transform: rotate(45deg);
}

/* About page */
.resume {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    background: var(--backgroundColor);
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5vw;
    padding-left: 3vw;
    padding-right: 3vw;
}

.header-image {
    width: 100%;
    height: 510px;
    object-fit: scale-down;
    /* cover */
    object-position: center;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: grey;
}

.header-image:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    filter: none;
    transition: opacity ease 1.25s;
    -webkit-transition: all 1.25s ease;
    -moz-transition: all 1.25s ease;
    -ms-transition: all 1.25s ease;
}

.header-name {
    text-transform: none;
    padding-top: 1vw;
    text-align: center;
}

.header-profession {
    padding-bottom: 0;
    text-align: center;
}

.header-personalia {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 1vw;
    font-size: 14px;
    justify-content: space-between;
}

.header-title {
    text-transform: none;
    padding-top: 1vw;
    padding-bottom: 1vw;
    text-align: left;
}

.divider {
    margin-bottom: 3vw;
    margin-left: 3vw;
    margin-right: 3vw;
    width: 100%;
    border: 1px solid var(--greyColor);
    background-color: var(--greyColor);
}

.introduction-desktop {
    margin-bottom: 3vw;
    width: 100%;
    text-align: justify;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, max(340px));
    column-gap: 30px;
    row-gap: 30px;
}

.introduction-mobile {
    margin-bottom: 3vw;
    width: 100%;
    text-align: justify;
    justify-content: center;
}

@media screen and (min-width:1025px) {
    .introduction-mobile {
    display: none;
    }
}

@media screen and (max-width: 1024px) {
    .introduction-desktop {
        display: none;
    }
}

.body-resume {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.left-resume {
    padding-left: 3vw;
    padding-right: 3vw;
    text-align: left;
    border-right: 2px solid var(--greyColor);
}

.right-resume {
    padding-left: 3vw;
    padding-right: 3vw;
    text-align: left;
}

.body-resume h3 {
    padding-bottom: 1vw;
}

.card-resume {
    padding: none;
}

.detail {
    padding-bottom: 0.8vw;
}

.subdetail {
    padding-top: 0.5vw;
    color: var(--greyColor);
}

.subsubdetail {
    padding-top: 0.3vw;
    color: #b3b3b3;
}

.skill-design {
    padding-bottom: 0.5vw;
}

.skill {
    color: var(--greyColor);
}

.detail-skill {
    padding-bottom: 0.5vw;
}

.skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    align-items: center;
}

.skills-bar {
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: #dadada;
    position: relative;
}

.skills-fill {
    height: 10px;
    background: #bdbdbd;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.ten {
    width: 10%;
}

.twenty {
    width: 20%;
}

.thirty {
    width: 30%;
}

.fourthy {
    width: 40%;
}

.fifty {
    width: 50%;
}

.sixty {
    width: 60%;
}

.eighty {
    width: 80%;
}

.ninety {
    width: 90%;
}

.hundred {
    width: 100%;
}

.language {
    padding: 0.8vw 0;
}

.hobbies {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hobbies > img {
    width: 60px;
    height: 60px;
    margin: 5px 0;
    padding: 8px;
    object-fit: scale-down;
    border: 1px solid var(--greyColor);
    border-radius: 20px;
}

.hobby {
    text-align: center;
    justify-content: center;
    display: block;
    padding-top: 0.5vw;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--fontColor);
}

.review {
    padding-bottom: 0.8vw;
}

.review-text {
    font-style: italic;
}

.review-name {
    text-align: right;
    font-style: none;
    padding-top: 0.3vw;
}


@media screen and (max-width: 1024px) {
    .header-image {
        -webkit-filter: none;
        -moz-filter: none;
        -ms-filter: none;
        filter: none;
    }
}

@media screen and (max-width: 630px) {
    .left-resume {
        border-right: none;
        text-align: left;
    }
    .header-personalia {
        width: 95%;
    }
    .detail {
        padding-bottom: 2vw;
    }
    .header-name {
        padding-top: 2vw;
    }
    .header-personalia {
        padding-top: 2vw;
    }
    .header-title {
        padding-bottom: 2vw;
    }
}

@media screen and (min-width:630px) and (max-width: 1024px) {
    .header-personalia {
    width: 60%;
    }
}


/* Download buttons */
/* About */
.download-button {
    text-align: center;
    font-size: 20px;
    padding: 3vw;
}

.download {
    border: 2px solid var(--greyColor);
    border-radius: 50px;
    color: var(--fontColor);
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 4px 2px;
    cursor: pointer;
}

.download-button :hover {
    color: var(--greyColor);
    transition: fill 170ms ease-in-out;
    cursor: pointer;
}

/* Project */
.download-button-project {
    text-align: center;
    font-size: 20px;
}

.download-project {
    border: 2px solid var(--greyColor);
    border-radius: 50px;
    color: var(--fontColor);
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 15px 10px;
    cursor: pointer;
    width: 250px;
}

.download-button-project :hover {
    color: var(--greyColor);
    transition: fill 170ms ease-in-out;
    cursor: pointer;
}


/* Contact page */
.contact {
    width: 100%;
    display: block;
    padding-top: 0px;
    position: flex;
    height: 100%;
    justify-content: center;
    align-items: center
}

.contact-text {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 13vh;
}

.download-button-contact {
    text-align: center;
    font-size: 20px;
    padding: 3vh;
    padding-top: 4vh;
}

.download-contact {
    border: 2px solid var(--greyColor);
    border-radius: 50px;
    color: var(--fontColor);
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 15px 20px;
    cursor: pointer;
    width: 150px;
}

.download-contact:hover {
    color: var(--greyColor);
    transition: fill 170ms ease-in-out;
    cursor: pointer;
}

.socials {
    padding: 17px;
    height: 100%;
}

.socials a {
    padding: 10px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    color: black;
}

.socials a:hover {
    color: var(--greyColor);
    transition: fill 170ms ease-in-out;
    cursor: pointer;
}

.socials ul {
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.hovertext {
    position: relative;
  }
  
.hovertext:before {
    content: attr(data-hover);
    visibility: hidden;
    opacity: 0;
    width: 200px;
    background-color: var(--greyColor);
    color: var(--backgroundColor);
    text-align: center;
    border-radius: 50px;
    padding: 5px 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    z-index: 1;
    top: 175%;
    left: 50%;
    transform: translate(-50%, 0%);
}
  
.hovertext:hover:before {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1024px) {
    .hovertext:hover:before {
        visibility: hidden;
    }
}


/* Landing page */
.intro {
    height: 100vh;
    width: 100%;
    margin: auto;
    background-image: url(Gebouw8.jpg);
    display: flex;
    background-size: cover;
    background-position: center;
}

/* Landing page carousel */
.carousel {
    height: 100vh;
    width: 100%;
    margin: auto;
    background-image: url(Gebouw8.jpg);
    display: flex;
    z-index: 0;
}

.swiper {
    height: 100vh;
    margin: auto;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.img-ssphal {
    object-position: center top;
}

.see-project {
    background: rgb(0, 0, 0, 0);
    position: absolute;
    bottom: 0;
    margin-bottom: 5vw;
    color: white;
    align-items: center;
}

.see-project-title {
    text-decoration: none;
    font-size: 60px;
    padding-bottom: 2vw;
}

.see-project-link {
    object-position: center;
    background: white;
    opacity: 0.8;
    color: black;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
    vertical-align: middle;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

.see-project a:hover {
    background: var(--greyColor);
    color: white;
    transition-duration: fill 170ms ease-in-out;
    cursor: pointer;
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
    color: white;
}

.swiper-button-prev:hover, .swiper-button-next:hover{
    color: var(--greyColor);
    transition-duration: fill 170ms ease-in-out;
    cursor: pointer;
}

.swiper .swiper-pagination-bullet-active{
    background: white;
}

.swiper-pagination-bullet {
    transform: scale(1);
}

@media screen and (max-width: 1080px) {
    .see-project {
        object-position: center;
        margin-bottom: 10vw;
    }
    .see-project-title {
        padding-bottom: 5vw;
    }
    .swiper .swiper-button-prev, .swiper .swiper-button-next {
        display: none;
    }
}

@media screen and (max-width: 630px) {
    .see-project {
        transform: scale(0.7);
    }

}


/* Gallery - List pagination */
.pagination-list {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

.gallery-list {
    position: relative;
    padding-top: 2vw;
}

.gallery-list .current{
    border-bottom: 1.5px solid currentColor;
}

.gallery-list a{
    color: var(--fontColor);
    text-decoration: none;
    font-size: 16px;
}

.gallery-list span{
    margin-left: 5px;
    margin-right: 5px;
}

.gallery-list a:hover {
    color: var(--greyColor);
    transition: fill 170ms ease-in-out;
}

.pagination-list-project {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}


/* Publications */
.publications-list {
    min-height: 75vh;
    max-width: 1080px;
}

@media screen and (max-width:1024px) {
    .publications-list {
        max-width: 710px;
        margin: 0 auto;
    }
}

@media screen and (max-width:768px) {
    .publications-list {
        max-width: 340px;
        margin: 0 auto;
        min-height: 77vh;
    }
    .publications-list th {
        display: none;
    }
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border-bottom: 1px solid var(--fontColor);
}

th {
    font-size: 20px;
    padding-bottom: 10px;
    text-align: left;
    display: table-cell;
    vertical-align: inherit;
}

.publications td {
    font-size: 16px;
    padding-top: 1.2vw;
    padding-bottom: 1.2vw;
    cursor: pointer;
    display: flex;
    vertical-align: left;
}

.publicationslist-desktop td {
    font-size: 16px;
    padding-top: 1.2vw;
    padding-bottom: 1.2vw;
    cursor: pointer;
    display: table-cell;
    vertical-align: inherit;
}

.publicationslist-mobile td {
    font-size: 16px;
    padding-top: 1.2vw;
    padding-bottom: 1.2vw;
    cursor: pointer;
    display: flex;
    vertical-align: left;
}

.publicationslist-mobile tbody {
    border-top: 1px solid var(--fontColor);
}

tr {
    display: table-row;
    vertical-align: inherit;
}

tr:hover td {
    background-color: #efefef;
}

@media screen and (min-width:631px) {
    .publicationslist-mobile {
    display: none;
    }
}

@media screen and (max-width: 630px) {
    .publicationslist-desktop {
        display: none;
    }

}

/* Publication page */
.publication {
    width: 100%;
    display: block;
    padding-top: 0px;
    position: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.publication-text {
    align-items: center;
    width: 500px;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.publication-text-distance {
    padding-bottom: 60px;
}

.publication-subtitle {
    padding-top: 1.2vw;
}

.publication-info {
    padding-top: 0.6vw;
}

@media screen and (max-width: 1240px) {
    .publication-text {
        width: auto;
    }
    .publication-subtitle {
        padding-top: 3vw;
    }
    .publication-info {
        padding-top: 1.5vw;
    }
}

.download-button-publication {
    text-align: center;
    font-size: 20px;
    padding-top: 3vw;
}

.download-publication {
    border: 2px solid var(--greyColor);
    border-radius: 50px;
    color: var(--fontColor);
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 15px 20px;
    cursor: pointer;
    width: 150px;
}

.download-button-publication :hover {
    color: var(--greyColor);
    transition: fill 170ms ease-in-out;
    cursor: pointer;
}

.pagination-publication {
    display: flex;
    align-items: center;
    padding: 3vw;
    width: 100%;
    vertical-align: middle;
    position: absolute;
    bottom: 0;
}


/* Scrollbar */
::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #dadada;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--greyColor);
}


/* Footer */
footer {
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: white;
    color: black;
    text-align: center;
    padding: 1vw;
    margin-top: auto;
    line-height: 1.3;
}