:root {
    --mainblue: #0096ff;
    --mainbluetransp: #0095ff8d;
    --titlefont: 'Spectral', serif ;
    --bodyfont: 'Open Sans', sans-serif;
}

html,
body {
    margin: 0;
    color: black;
    background-color: white;
    font-family: var(--bodyfont);
    overflow-x: hidden;
}


ul, li {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    color: var(--mainblue);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--titlefont);

}

/* SCROLLBAR */

::-webkit-scrollbar {
  width: 7px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: white;
}
::-webkit-scrollbar-thumb {
  background: var(--mainbluetransp);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--mainblue);
}

/* PRIMARY NAVIGATION */

nav.primary-nav {
    padding: 0 15px;
    position: fixed;
    width: calc(100vw - 30px);
    left: 0;
    top: 0;
    background-color: white;
    z-index: 99;
}

@media (min-width: 700px) {
  nav.primary-nav {
    padding: 0 25px;
  }
}

@media (min-width: 850px) {
  nav.primary-nav {
    display: flex;
    align-items: baseline;
    
  }
}

@media (min-width: 1050px) {
  nav.primary-nav {
    justify-content: center;
    padding: 0;
    width: 100vw;
  }
}



nav.primary-nav.toggled-on {
    background-color: var(--mainblue);
}

nav.primary-nav.toggled-on a {
    color: white;
}




nav.primary-nav .navigation-header {
  display: flex;
}

@media (min-width: 700px) {
  nav.primary-nav h1 {
    margin-bottom: .5em;
  }
}

@media (min-width: 850px) {
  nav.primary-nav h1 {
    margin-bottom: 1em;
  }
}

nav.primary-nav h1 a {
    font-size: 1.25em;
    text-decoration: none;
    display: block;
    
}

@media (min-width: 850px) {
  nav.primary-nav .menu-main-navigation-container {
    margin-left: auto;
    margin-right: 10px;
  }
}

@media (min-width: 1050px) {
  nav.primary-nav .menu-main-navigation-container {
    margin-left: 172px;
    margin-right: 0;
  }
}

nav.primary-nav #menu-main-navigation {
    display: none;  
}

@media (min-width: 700px) {
  nav.primary-nav #menu-main-navigation {
    display: block;
    position: relative;
    left: -8px;
    margin-bottom: 1em;
  }
}

nav.primary-nav #menu-main-navigation.toggled-on {
    display: block;
    padding-bottom: 1.2em;
}

nav.primary-nav #menu-main-navigation a {
    font-family: var(--titlefont);
    display: block;
    padding: 8px 0;
    width: 100%;
    padding-right: 15px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
}

@media (min-width: 700px) {
  nav.primary-nav #menu-main-navigation a {
    color: black;
    transition: ease .3s color;
    padding-right: 8px;
    text-justify: center;
    padding: 0 8px;
    width: auto;
    display: block;
    margin-right: 15px;
  }

  nav.primary-nav #menu-main-navigation a:hover {
    color: var(--mainblue);
    transition: ease .3s color;
  }
}

@media (min-width: 1050px) {

  nav.primary-nav #menu-main-navigation li:last-child a {
    margin-right: 0;
  }
}



nav.primary-nav #menu-main-navigation a[aria-current="page"] {
  text-transform: uppercase;
}

@media (min-width: 700px) {
  nav.primary-nav #menu-main-navigation a[aria-current="page"] {
    text-transform: capitalize;
    border-bottom: solid 3px var(--mainblue);
    color: var(--mainblue);
   
    
  }
}










/** Navigation **/



@media (min-width: 700px) {
  nav li a {
    font-size: 1.2em;
}
}


/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  margin-left: auto;
  overflow: visible;
  position: relative;
  top: 1px;
}
  .hamburger:hover {
    opacity: 1; }
  .hamburger.is-active:hover {
    opacity: 1; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: white; }

.hamburger-box {
  width: 35px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 35px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--mainblue);
    /*border-radius: 4px;*/
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }



    

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }


.hamburger:focus, .hamburger:active {
  outline: 0;
}

@media (min-width: 700px) {
  .hamburger {
    display: none;
  }

  #main-nav {
    display: block;
    margin-left: auto;
    margin-right: 0;
    width: unset;
  }

  nav li, nav li:first-child {
    border: none;
    display: inline-block;
  }

  nav li a {
    display: inline;
    padding: 10px 15px;
  }
}



nav.primary-nav ul {
    /* display: flex; */
}



/* PAGE HEADER */

.page-header {
  padding: 0 15px;
  font-size: .75em;
}

@media (min-width: 700px) {
  .page-header {
    padding: 0 25px;
  }
}

@media (min-width: 1050px) {
  .page-header {
    padding: 0;
    width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}





/* THUMBNAILS MENUS */

.main-archive {
  /* width: calc(100vw - 7px); */
}

.main-archive article {
  position: relative;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex article {
  margin-bottom: .5em;
}

@media (min-width: 850px) {
  
  .flex-work, .flex-project {
  justify-content: space-between;
  }



  .flex article {
    width: calc((960px - 1.5em) / 3);
  }

  .flex-project article {
    width: calc((960px - 0.9em) / 2);
  }
}




.vignette-title {
  margin-top: auto;
  padding: 0 15px;
  width: calc(100% - 30px);
  bottom: 0;
}

@media (min-width: 700px) {
  .vignette-title {
    padding: 0 25px;
    text-align: center;
    margin-bottom: auto;
    width: auto;
  }

  
}

.vignette-link {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  color: white;
  font-size: 1.2em;
  text-decoration: none;
  height: 100%;
}

@media (min-width: 700px) {
  .vignette-link {
    color: transparent;
    transition: ease .3s color,
                ease .3s background-color;
    height: calc(100% - 5px);
  }

  .vignette-link:hover {
    color: white;
    transition: ease .3s color,
                ease .3s background-color;
    background-color: var(--mainbluetransp);
    
  }
}

.work-year {
  font-weight: normal;
  font-size: .75em;
}

/* ARCHIVE PUBLICATIONS */

.main-archive#Publications-archive {
  padding: 5.5em 15px;
  
}

@media (min-width: 700px) {
  .main-archive#Publications-archive {
    padding: 9em 25px 2em;
  }
}

@media (min-width: 1050px) {
  .main-archive#Publications-archive {
    width: 960px;
  }
}

.publication-section {
  margin-top: 2.5em;
}

.publications-section-title {
  font-size: 1.2em;
  font-weight: bolder;
  margin-top: 1.5em;
}



.publications-section-title::before {
  content: " ";
  display: inline-block;
  position: relative;
  width: 10px;
  margin: 5px 5px 5px 0;
  height: 1px;
  background-color: black;
}

.publications-section-title::after {
  content: " ";
  display: inline-block;
  position: relative;
  width: 20px;
  margin: 5px 0 5px 5px;
  height: 1px;
  background-color: black;
}

/* Academic Monograph */
.publication-section:nth-child(2) .publications-section-title::after { 
  width: calc(100vw - 30px - 225px);
}

@media (min-width: 1050px) {
  .publication-section:nth-child(2) .publications-section-title::after {
    width: calc(960px - 30px - 225px);
  }
}

/* Artistic Research */
.publication-section:nth-child(3) .publications-section-title::after {
  width: calc(100vw - 30px - 174px);
}

@media (min-width: 1050px) {
  .publication-section:nth-child(3) .publications-section-title::after {
    width: calc(960px - 30px - 174px);
  }
}

/* Artist Monograph */
.publication-section:nth-child(5) .publications-section-title::after {
  width: calc(100vw - 30px - 190px);
}

@media (min-width: 1050px) {
  .publication-section:nth-child(5) .publications-section-title::after {
    width: calc(960px - 30px - 190px);
  }
}

/* Editorials */
.publication-section:nth-child(6) .publications-section-title::after {
  width: calc(100vw - 30px - 100px);
}

@media (min-width: 1050px) {
  .publication-section:nth-child(6) .publications-section-title::after {
    width: calc(960px - 30px - 100px);
  }
}

/* Poetic Works */
.publication-section:nth-child(4) .publications-section-title::after {
  width: calc(100vw - 30px - 139px);
}

@media (min-width: 1050px) {
  .publication-section:nth-child(4) .publications-section-title::after {
    width: calc(960px - 30px - 139px);
  }
}

.publication-section h4 {
  font-family: var(--bodyfont);
  margin: 1.6em 0;
  font-size: 1.2em;
}

.publication-section a {
  color: black;
  transition: .3s ease color;
}

.publication-section a:hover {
  color: var(--mainblue);
  transition: .3s ease color;
}

@media (min-width: 700px) {
  .publication-section a {
    text-decoration: none;
  }
}

.publisher-info {
  font-size: 80%;
  font-weight: 300;
}


/* MAIN */
main {
  padding: 5.5em 15px;
}

@media (min-width: 700px) {
  main {
    padding: 9em 25px 2em;
  }
}

@media (min-width: 1050px) {
  main {
    width: 960px;
    padding: 9em 0 2em;
    margin-left: auto;
    margin-right: auto;
  }
}

.archive main {
  padding: 5.5em 0;
}

@media (min-width: 700px) {
  .archive main {
    padding: 9em 0 2em;
  }
}

article > p {
text-align: justify;
max-width: 700px;
}

article > blockquote {
  max-width: 662px;
  font-size: 80%;
  line-height: 21px;
}

article > .wp-block-embed {
  margin: 1em 0;
}

/* VIDEOS */

.wp-block-embed__wrapper {
  position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.wp-block-embed__wrapper iframe {
  width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

/* TABLES */

.wp-block-table {
  margin: 0;
    max-width: 700px;
}

.wp-block-table td {
  padding: 5px 5px 5px 0;
}

/* META SLIDER */

.metaslider {
  margin: 3em 0;
}

/* BUTTONS */
.wp-block-file a.wp-block-file__button, 
.wp-block-file a.wp-block-file__button:active, 
.wp-block-file a.wp-block-file__button:focus, 
.wp-block-file a.wp-block-file__button:hover, 
.wp-block-file a.wp-block-file__button:visited {
  border: var(--mainblue) solid 2px;
  background-color: transparent;
  color: var(--mainblue);
  font-weight: bold;
  font-size: 1em;
  border-radius: 0;
  padding: 7px;
  text-transform: lowercase;
}

.wp-block-file a.wp-block-file__button:hover {
  background-color: var(--mainblue);
  color: white;
}

/* IMAGES */

.wp-block-image {
  margin: 3em 0;
  width: 100%;
}

/* SOUND */
.wp-block-audio {
  margin: 1.5em 0;
}

audio {
  max-width: 700px;
}

.wp-block-audio figcaption {
  text-align: center;
  max-width: 700px;
}

/* HEADINGS */

h2.page-title {
  font-size: 26px;
}

article h2 {
  margin-bottom: 1.5em;
  margin-top: .7em;
  line-height: 1.3em;
}

article.publications h2 > .publisher-info {
  font-size: .75em;
}

/* BREADCRUMBS */

.breadcrumbs {
  margin-top: 2em;
}
.breadcrumbs a {
  font-size: .9em;
  text-transform: capitalize;
  color: black;
  text-decoration: none;
  font-family: var(--titlefont);
  transition: ease .3s color;
  
}

.breadcrumbs a:hover {
  color: var(--mainblue);
  transition: ease .3s color;
}



/* ARCHIVES */
.thumbnail img {
  width: 100vw;
  height: auto;
}

@media (min-width: 850px) {
  .thumbnail img {
    width: 100%;
    object-fit: cover;
    height: calc(((960px - 1.5em) / 3) / 3 * 2);
  }

  .flex-project .thumbnail img {
    height: calc(((960px - 1.5em) / 2) / 3 * 2);
  }


  
}


/* IMAGE GALLERY */

.metaslider.ms-theme-simply-dark .flexslider ul.flex-direction-nav li a {
  height: 30px !important;
}

.metaslider.ms-theme-simply-dark .flexslider ul.flex-direction-nav li a svg {
  transform: none !important;
  width: 20px !important;
  height: 20px !important;
  margin: 5px auto !important;
}

.metaslider.ms-theme-simply-dark a:active path {
  fill: var(--mainblue) !important;
}

.metaslider.ms-theme-simply-dark .flexslider ol.flex-control-nav:not(.flex-control-thumbs) {
  justify-content: center !important;
}

.blocks-gallery-grid .blocks-gallery-item {
  width: 100%;
  margin: 8px 0;
}

/* META SLIDER */

.metaslider.ms-theme-simply-dark .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a {
  margin: 0 5px 5px 0 !important;
  height: 10px !important;
  width: 10px !important;
}

.metaslider.ms-theme-simply-dark .flexslider ol.flex-control-nav li a.flex-active {
  background: var(--mainblue) !important;
}

/* CURRENT  */
.post-6 p {
  margin: 1em 0;
  font-size: 1.15em;
}

.post-6 a {
  font-weight: bold;
  text-decoration: none;
  color: black;
  transition: ease .3s color;

}
.current-info {
  font-weight: 300;
  font-size: .8em;
}

a[target="_BLANK"]::after {
  content: " \2197";
  display: inline;
  
  
}

.post-6 a:hover, .post-6 a:focus {
  color: var(--mainblue);
  transition: ease .3s color;
}

.post-6 a:active {
  color: var(--mainblue);
}









/* FOOTER */
#footer {
  display: none;
}

hr {
  border: white;
}

