/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Lora', serif;
  font-weight: 300;
  font-size: 18px;
  background-color: #fafaf7;
  color: #191818;
}

@media only screen and (max-width: 600px) {
body {
  font-size: 16px;
}
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

p a {
  text-decoration: underline;
  text-underline-position: under;
}

@media only screen and (max-width: 600px) {
p a {
  text-underline-position: auto;
}
}

/*
a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.page-title {
  padding-top: 52px;
  font-size: 80px;
  text-align: center;
  line-height: 1.3;
}

@media only screen and (max-width: 600px) {
.page-title {
  padding-top: 25px;
  font-size: 54px;
  text-align: center;
}
}
*/

p:not(:last-of-type) {
  margin-bottom: 20px;
}

ul {
  padding-inline-start: 25px;
}

.caption {
  padding-top: 18px;
}

/* Caption - Mobile */
@media only screen and (max-width: 600px) {
.caption {
  padding-top: 14px;
}
}

/* -- UNIVERSAL -- */

/* Navbar - Desktop */
/* Add a black background color to the top navigation */
.topnav {
  padding: 15px 65px 0 65px;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  text-align: center;
  padding: 30px 30px;
  text-decoration: none;
}

/* Change the color of links on hover */
.topnav a:hover {
}

/* Add a color to the active/current link */
.topnav a.active {
}

/* Centered section inside the top navigation */
.topnav-centered a {
  float: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -00%);
  padding: 18px 30px;
}

.topnav-centered a img {
  width: 420px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Dropdown */
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  background-color: transparent;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 30px 30px;
  margin: 0;
  text-transform: inherit;
  color: inherit;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1000;
  text-transform: none;
  padding-right: 15px
}

.dropdown-content a {
  float: none;
  color: inherit;
  padding: 10px 30px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
}

.show {
  display: flex;
  flex-wrap: wrap;
}
/* Module - Tablet */
@media only screen and (max-width: 1100px) {
}
/* Module - Mobile */
@media only screen and (max-width: 600px) {
.show {
  justify-content: space-around;
}
.dropdown-content a {
  padding: 10px 0px;
}
}


/* Responsive navigation menu - display links on top of each other instead of next to each other (for mobile devices) */
@media screen and (max-width: 1000px) {
  .topnav {
  padding: 10px 15px 0 15px;
  }

  .topnav a, .dropdown .dropbtn {
    padding: 10px 15px;
  }

  .topnav-centered {
    margin-top: 0px;
  }

  .topnav-centered a {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}

/* Module - Desktop */
.module {
  margin: 40px 0 40px 0;
}
.module.section-start {
  margin-top: 150px;
}
.module.section-end {
  margin-bottom: 150px;
}
.module.image-end {
  margin-bottom: 80px;
}

/* Module - Tablet */
@media only screen and (max-width: 1100px) {
.module {
  margin: 25px 0 25px 0;
}
.module.section-start {
  margin-top: 75px;
}
.module.section-end {
  margin-bottom: 75px;
}
.module.image-end {
  margin-bottom: 40px;
}
}
/* Module - Mobile */
@media only screen and (max-width: 600px) {
.module {
  margin: 22px 0 22px 0;
}
.module.section-start {
  margin-top: 50px;
}
.module.section-end {
  margin-bottom: 50px;
}
.module.image-end {
  margin-bottom: 30px;
}
}

/* Column - Desktop */
.small-column.body-text {
  max-width: 675px;
}
.small-column {
  max-width: 592px;
  margin: auto;
}
.medium-column {
  max-width: 1036px;
  margin: auto;
  padding: 0 100px 0 100px;
}
.wide-column {
  max-width: 1457px;
  margin: auto;
  padding: 0 100px 0 100px;
}

.fullscreen-column {
  width: 100vw;
}
/* Column - Tablet */
@media only screen and (max-width: 1100px) {
.small-column {
  max-width: 592px;
  margin: auto;
  padding: 0 50px 0 50px;
}
.medium-column {
  padding: 0 50px 0 50px;
}
.wide-column {
  padding: 0 50px 0 50px;
}
}
/* Column - Mobile */
@media only screen and (max-width: 600px) {
.small-column {
  margin: auto;
  padding: 0 16px 0 16px;
}
.medium-column {
  padding: 0 16px 0 16px;
}
.wide-column {
  padding: 0 16px 0 16px;
}
}

/* Columns - Desktop */
.two-columns {
  column-count: 2;
  grid-gap: 3rem;
}
/* Columns - Tablet */
@media only screen and (max-width: 1100px) {
.two-columns {
  column-count: 2;
  grid-gap: 2rem;
}
}
/* Columns - Mobile */
@media only screen and (max-width: 600px) {
.two-columns {
  column-count: 1;
  grid-gap: 0;
}
}

/* Font Sizes */

/* Quote/Pair/Page-title - Desktop */
.landing-text, .writing-title {
  font-family: 'Prata', serif;
  font-size: 21px;
}
.quote, .quote h3, .pair h3 {
  font-family: 'Prata', serif;
  font-size: 30px;
}
.quote h2, .pair h2 {
  font-size: 36px;
}
.quote h1, .pair h1, .page-title h1 {
  font-size: 40px;
}
/* Quote/Pair/Page-title - Tablet */
@media only screen and (max-width: 1100px) {
.landing-text, .writing-title {
  font-size: 19px;
}
.quote, .quote h3, .pair h3 {
  font-size: 24px;
}
.quote h2, .pair h2 {
  font-size: 28px;
}
.quote h1, .pair h1, .page-title h1 {
  font-size: 33px;
}
}
/* Quote/Pair/Page-title - Mobile */
@media only screen and (max-width: 600px) {
.landing-text, .writing-title {
  font-size: 18px;
}
.quote, .quote h3, .pair h3 {
  font-size: 20px;
}
.quote h2, .pair h2 {
  font-size: 24px;
}
.quote h1, .pair h1, .page-title h1 {
  font-size: 26px;
}
}
/* Topnav */
.mobile-menu {
  display: flex;
  justify-content: space-between;
}
.topnav-left {
  display: flex;
  justify-content: space-between;
}
.topnav-left, .topnav-right {
  font-size: 14px;
  padding-top: 25px
}
.topnav-centered {
  font-size: 25px;
}

@media only screen and (max-width: 415px) {
.topnav-left {
  width: 62%;
}
}

/* Topnav - Mobile */
@media only screen and (max-width: 1000px) {
.topnav-left, .topnav-right {
  padding-top: 0px
}
.topnav-right {
  margin-top: 0px;
}
}

/* Text-align */
.text-align-left {
  text-align: left;
}
.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}

/* Text-align - Mobile */
@media only screen and (max-width: 600px) {
.text-align-left {
  text-align: center;
}
}

/* Element Align - Desktop */
.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.vertical-center.upper {
  top: 45%;
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
}
.vertical-center.lower {
  top: 64%;
  -ms-transform: translateY(-36%);
  transform: translateY(-36%);
}
.home-heading .vertical-center.lower {
  top: 40%;
  -ms-transform: translateY(60%);
  transform: translateY(60%);
}
/* Element Align - Tablet */
@media only screen and (max-width: 1100px) {
.vertical-center.upper {
  top: 45%;
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
}
.home-heading .vertical-center.lower {
  top: 45%;
  -ms-transform: translateY(55%);
  transform: translateY(55%);
}
}
/* Element Align - Mobile*/
@media only screen and (max-width: 600px) {
.vertical-center.upper {
  top: 38%;
  -ms-transform: translateY(-62%);
  transform: translateY(-62%);
}
.home-heading .vertical-center.lower {
  top: 38%;
  -ms-transform: translateY(-62%);
  transform: translateY(-62%);
}
.vertical-center.lower {
  top: 87%;
  -ms-transform: translateY(-13%);
  transform: translateY(-13%);
}
}

/* Page - Desktop*/
.page {
  padding-bottom: 50px
}
/* Quote/Pair/Page-title - Tablet */
@media only screen and (max-width: 1100px) {
.page {
  padding-bottom: 40px
}
}
/* Quote/Pair/Page-title - Mobile */
@media only screen and (max-width: 600px) {
.page {
  padding-bottom: 30px
}
}

/* Colours */
.beige {
  background-color: #F5C6A9;
}
.orange {
  background-color: #FD9C72;
}
.pink {
  background-color: #EECFCC;
}
.green {
  background-color: #ADB26F;
}
.olive {
  background-color: #CEC6A2;
}
.brown {
  background-color: #DB9666;
}
.navy {
  background-color: #383E4E;
  color: #F5F5F5;
}
.navy .purchase-button {
  border: 2px solid #F5F5F5;
}
.navy .vl {
  border-left: 2px solid #F5F5F5;
}
.lightgrey {
  background-color: #F5F5F5;
  color: #191818;
}
.lightgrey .purchase-button {
  border: 2px solid black;
}
.grey {
  background-color: #BBBAB5;
}
.blue {
  background-color: #F3F6ED;
}
.sand {
  background-color: #fafaf7;
  color: #191818;
}

/* Images */
img {
  width: 100%;
  height: auto;
}

/* Input Fields */

input {
  border-top-style: hidden;
  border-right-style: hidden;
  border-left-style: hidden;
  border-bottom-style: groove;
  background-color: transparent;
}
.newsletter-inputs {
  margin-top: 1rem;
}

#mce-EMAIL {
  border-bottom: 2px solid #191818;
}

#mc-embedded-subscribe {
  border: 2px solid #191818;
  display: block;
  padding: 4px 8px;
  margin: 1rem auto;
}

#mc-embedded-subscribe:hover {
  cursor: pointer;
}

.no-outline:focus {
  outline: none;
}

/* -- CONTACT PAGE -- */

.subscribe {
padding-top: 40px;
}

/* -- YEAR PAGE -- */

.year-heading {
  width: 100vw;
  height: 45vh;
}
/* Year heading mobile */
@media only screen and (max-width: 600px) {
.year-heading {
  height: 180px;
}
}


/* -- HOME PAGE -- */
/* Home heading block */
.home-heading {
  width: 100vw;
  height: 100vh;
}
/* Home heading block */
@media only screen and (max-width: 1100px) {
.home-heading {
  height: 100vh;
}
}
/* Home heading block */
@media only screen and (max-width: 600px) {
.home-heading {
  height: calc(100vh - 108px);
}
}

.vl {
  border-left: 2px solid black;
  height: 10vh;
  position: absolute;
  left: 50%;
  margin-left: -1px;
  bottom: 0;
}

/* -- PAGE BUILDER -- */

/* Body-text */

.body-text h1, .body-text h2, .body-text h3 {
  font-family: 'Prata', serif;
  padding: 0 0 20px 0;
}

/* Grid Gallery - Desktop */
.grid-gallery {
  display: grid;
}
.grid-two {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
.grid-three {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.5rem;
}
/* Grid Gallery - Tablet */
@media only screen and (max-width: 1100px) {
.grid-three {
  grid-template-columns: repeat(2, 1fr);
}
}
/* Grid Gallery - Mobile */
@media only screen and (max-width: 600px) {
.grid-gallery {
  display: block;
}
.grid-gallery img {
  margin-bottom: 36px;
}
}

/* Media-video */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Fonts */

.secondary-font {
  font-family: 'Prata', serif;
}

.uppercase {
  text-transform: uppercase;
}

/* Single Artwork For Sale - Desktop */
.card-text {
  padding: 18px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.purchase-button {
  display: block;
  padding: 12px 15px 12px 15px;
  border: 2px solid #191818;
  font-size: 17px;
  font-weight: 400;
  transition: 0.3s;
}
.purchase-button:hover {
  background-color: #191818;
  color: #fafaf7;
}

/* Single Artwork For Sale - Mobile */
@media only screen and (max-width: 600px) {
.card-text {
  padding: 14px 0 0 0;
  display: block;
}
.purchase-button {
  width: 100%;
  margin-top: 10px;
  padding-bottom:5px;
}
}

/* Pair - Desktop */
.pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}

/* Pair - Mobile */
@media only screen and (max-width: 1100px) {
.pair {
  display: block;
}
.pair-content {
  margin-bottom: 40px;
}
}

/* Exhibitions - Desktop */
.exhibitions h3 {
  font-size: 1.1em;
  padding-bottom:.2em;
}

/* Exhibitions - Mobile */
@media only screen and (max-width: 600px) {
.exhibitions h3 {
  font-size: 1em;
  padding:0;
}
}



/* --- WRITINGS --- */

.accordion {
  cursor: pointer;
  padding: 18px 0 18px 0;
  width: 100%;
  border: none;
  outline: none;
  transition: 0.4s;
  background-color: inherit;
}

.accordion:not(:first-of-type) {
padding-top: 36px;
}

.text-active, .accordion:hover {
}

.accordion:after {
  content: '\002B';
  font-weight: bold;
  font-size: 25px;
  margin: auto;
}

.text-active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
}

.writing-date {
  margin-bottom: 8px;
}