@charset "utf-8";

:root {
  --text-color: rgba(255,255,255,0.8); /* #152255; */
  --menu-item-color: grey;
  --bg-color: rgb(0,6,12);
  --menu-bg-color: rgba(0, 6, 12, 0.92);
  --caption-color: rgba(255,255,255,0.5);
}


*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

::-webkit-scrollbar {
  width: 0.65em;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.35);
  border: none;
}
::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: transparent;
}

/* video, audio embeds */
iframe {
  display: block;
  width: 100%;
  height: auto;
}
iframe.video {
  aspect-ratio: 16 / 9;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SITE SPECIFIC styling ++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
  width: 100%;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: 'Noto Serif';
  font-size: 1em;
  font-weight: 300;
	font-size: 1em;
  line-height: 1.4875em;
  letter-spacing: 0.015em;
  background-color: var(--bg-color);
	color: var(--text-color);
	text-decoration: none;
  overflow-y: scroll;
  position: relative;
}

.pageWrapper {
  margin: 0px;
  /* padding: 15em 3em 4em 3em; */ /* now in media queries */
}

.contentWrapper {
  max-width: 800px; /* 75ch; */
  margin: 0px auto;
}

.singleColumn {
  max-width: 60ch;
  margin: 0px auto;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* TYPE STUFF */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25em;
  font-weight: 200; /* 300; */
  margin: 0px 0px 1.5rem 0px;
  letter-spacing: 0.05em;
}
h1.spacing, h2.spacing, h3.spacing, h4.spacing, h5.spacing, h6.spacing {
  letter-spacing: 0.75em;
}
h2 {
  font-size: 2em;
  line-height: 1.05em;
}
h3 {
  font-size: 1.65em;
  padding: 0px;
}
h4 {
  font-size: 1.35em;
  padding: 0px;
  /* letter-spacing: 0.1em; */
}

p {
  font-size: 1em;
  margin: 0px 0px 1.5rem 0px; /* 0px 0px 2em 0px; */
}
p.indent {
  margin-top: -1.5rem;
  text-indent: 2em;
}


a:link {
	color: #666666;
	text-decoration: none;
}
a:hover {
	color: #990000;
	text-decoration: none;
}
a:visited {
	color: #666666;
	text-decoration: none;
}

.centered {
  text-align: center;
}
.capitals {
  text-transform: uppercase;
}



/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* menu */


header {
  position: fixed;
  top: 0px;
  padding: 4rem 0px 0.5rem 0px;
  margin-bottom: 5rem;
  width: 100%;
  background-color: var(--menu-bg-color);
  z-index: 9000;
  transition: all 300ms ease;
}


header .logo {
  text-align: center;
  max-width: 400px;
  margin: 0px auto;
  transition: all 300ms ease;
}
header .logo a img {
  opacity: 0.86;
  transition: opacity 200ms ease;
}
header .logo a:hover img {
  opacity: 1;
}

/*
header nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
*/
header nav a {
  display: inline;
  position: relative;
  padding: 0.1em 1em; /* 0.1em 0.75em; */
  letter-spacing: 0.065em;
  color: var(--menu-item-color);
  /* background-color: var(--bg-color); */
  font-weight: 300; /* 400; */
  font-size: 0.8em; /* 0.75em; */
  text-transform: uppercase;
  transition: color 200ms ease;
}
header nav a:visited {
  color: var(--menu-item-color);
}

header nav a.active,
header nav a:hover {
  color: white;
}

/* mobile menu */
.mobileMenuWrapper {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%; /* dvw; didnt work! */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* border: 1px solid pink; */
  z-index: 9100;
  pointer-events: none;
}
/* EAR wrapper */
.mobileMenuWrapper > div.earWrapper {
  display: flex;
  flex-direction: column;
  /* border: 1px solid purple; */
  pointer-events: all;
}
.mobileMenuWrapper > div.earWrapper > a {
  display: block;
  padding: 1rem 1rem 1rem 0.8rem;
  background-color: var(--menu-bg-color);
  border-radius: 0px 0px 20px 0px;
}
.mobileMenuWrapper > div.earWrapper > a > img {
  height: 50px; /* 80px; */
  width: auto;
  opacity: 1; /* 0.65; */
  display: block;
}
.mobileMenuWrapper > div.earWrapper > a:hover {
  cursor: pointer;
} 
/* burgerButton */
.mobileMenuWrapper > div.burgerWrapper {
  display: flex;
  flex-direction: column;
  padding: 0px;
  /* border: 1px solid purple; */
  pointer-events: all;
}
.mobileMenuWrapper > div.burgerWrapper > a#burgerBtn {
  padding: 1.25rem 0.8rem; /* 1rem 0.8rem 1rem 0.8rem; */
  font-size: 3em;
  font-weight: 100;
  background-color: var(--menu-bg-color);
  border-radius: 0px 0px 0px 20px;
}
.mobileMenuWrapper > div.burgerWrapper > a#burgerBtn:hover {
  color: white;
  cursor: pointer;
}


/* ******************************************************************************************** */
/* works wrapper */


.worksWrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  margin-bottom: 5rem;
}
.worksWrapper > div > a {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.worksWrapper > div > a > img {
  display: block;
}
/* title */
.worksWrapper > div > a > span {
  color: var(--text-color);
}


/* ******************************************************************************************** */
/* ALL WORKS wrapper */

.allWorksWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  margin-bottom: 5rem;
}
.allWorksWrapper > div > a {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.allWorksWrapper > div > a > img {
  display: block;
}
/* title */
.allWorksWrapper > div > a > span {
  color: var(--text-color);
}


/* ******************************************************************************************** */
/* About category wrapper */

.aboutGridWrapper {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-gap: 1rem;
  margin-bottom: 5rem;
}
.aboutGridWrapper > div > a {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.aboutGridWrapper > div > a > img {
  display: block;
}
/* title */
.aboutGridWrapper > div > a > span {
  color: var(--text-color);
}


/* ******************************************************************************************** */
/* Gallery HALF wrapper */

.galleryHalfWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.25em;
  margin-bottom: 0px; /* 1.5em; */
}
.galleryHalfWrapper > img {
  display: block;
}

p.caption {
  display: block;
  padding: 0.65em 0px 0px 0px;
}

/* ******************************************************************************************** */
/* SPECIAL wrappers */

img,
video {
  max-width: 100%;
  height: auto;
}
audio {
  width: 100%;
}

.imageCaption {
  display: block;
  padding: 1rem 1rem 0px 1rem;
  font-size: 0.825em;
  line-height: 1.375em;
  opacity: 1; /* 0.5; */
  font-family: sans-serif;
  text-align: center;
  margin-top: -1.85rem;
  /* border: 1px solid red; */
  margin-bottom: 2.5rem;
  color: var(--caption-color);
}



.spacer {
  display: block;
  margin: 1rem 0px 2.5rem 0px;
  text-align: center;
  /* background: url(../images/star.png); */
  background: url(../images/earside_inverse.png);
  background-position: center;
  background-repeat: no-repeat;
  /* background-size: 1.25rem; */
  background-size: 10rem;
  padding: 0.35rem 0px;
  /* min-height: 2rem; */
  min-height: 6rem;
  opacity: 0.7;
  /* border: 1px solid red; */
}


/* spacers */
.starSpacerImg {
  width: 1.25rem;
  height: auto;
  opacity: 0.7;
  padding: 0.35rem 0px;
}
.earSpacerImg {
  width: 8rem;
  height: auto;
  opacity: 0.7;
}
.gothic1 {
  width: 8em;
  height: auto;
  opacity: 0.6;
}
.gothic2 {
  width: 10em;
  height: auto;
  opacity: 0.6;
}
.paperStarImg1 {
  opacity: 0.35;
  width: 7em;
}




/* ******************************************************************************************** */
/* ******************************************************************************************** */
/* ******************************************************************************************** */
/* MEDIA queries */


@media screen {

  header,
  header.scrolling {
    padding: 0px; /* 1rem 0px 0.5rem 0px; */
  }
  header nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  /* mobile menu */
  .mobileMenuWrapper {
    display: flex;
  }
  /* hide logo */
  .logo {
    display: none;
  }
  /* nav */
  #menu {
    position: fixed;
    top: -100vh;
    left: 0px;
    height: 100vh;
    width: 100%;
    background-color: var(--menu-bg-color);
    transition: all 300ms ease;
  }
  #menu.shown {
    top: 0px;
  }

  header nav a {
    font-size: 1.375em; /* 0.75em; */
    padding: 0.25em 1em;
  }

  .burgerWrapper a#burgerBtn #burgerIcon.hide,
  .burgerWrapper a#burgerBtn #crossIcon.hide {
    display: none;
  }



  .pageWrapper {
    padding: 7em 1em 4em 1em;
  }

  .worksWrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .aboutGridWrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .allWorksWrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .galleryHalfWrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .twoImagesWrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

}


/* ******************************************************************************************** */
/* bigger phone */
@media screen and (min-width: 400px) {

  .worksWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .aboutGridWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .allWorksWrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .galleryHalfWrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .twoImagesWrapper {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ******************************************************************************************** */
/* MID screen */
@media screen and (min-width: 800px) {

  header {
    padding: 4rem 0px 0.5rem 0px;
  }
  header.scrolling {
    top: 0px;
    padding: 1rem 0px 0.5rem 0px;
  }
  header.scrolling .logo {
    max-width: 180px; /* 250px; */
  }
  header nav {
    flex-direction: row;
    justify-content: center;
  }
  header nav a:hover {
    color: white;
  }
  header nav a:last-of-type {
    border-right: 0px;
  }
  header nav a::after {
    position: absolute;
    top: 0.5em;
    right: 0px;
    content: " ";
    width: 1px;
    height: 1em; /* 0.8em; */
    background-color: rgba(255, 255, 255, 0.125);
  }
  header nav a:last-of-type::after {
    content: none;
  }

  header nav a {
    font-size: 0.8em; /* 0.75em; */
    padding: 0.1em 1em;
  }


  .mobileMenuWrapper {
    display: none;
  }
  /* SHOW logo */
  .logo {
    display: block;
  }
  #menu {
    position: relative;
    top: auto;
    left: auto;
    background-color: transparent;
    height: auto !important;
  }


  .pageWrapper {
    padding: 15em 3em 4em 3em;
  }  

  .worksWrapper {
    grid-template-columns: repeat(4, 1fr);
  }

  .aboutGridWrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .allWorksWrapper {
    grid-template-columns: repeat(3, 1fr);
  }

}



/* ******************************************************************************************** */
/* MID screen */
@media screen and (min-width: 1280px) {

  /*
  .aboutGridWrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  */
  .allWorksWrapper {
    grid-template-columns: repeat(3, 1fr);
  }  

}



/* ******************************************************************************************** */
/* ******************************************************************************************** */
/* ******************************************************************************************** */
/* ******************************************************************************************** */




/* noto-serif-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/noto-serif-v23-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-100italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 100;
  src: url('../fonts/noto-serif-v23-latin-100italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/noto-serif-v23-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-200italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 200;
  src: url('../fonts/noto-serif-v23-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/noto-serif-v23-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/noto-serif-v23-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-serif-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/noto-serif-v23-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/noto-serif-v23-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/noto-serif-v23-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/noto-serif-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/noto-serif-v23-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-serif-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/noto-serif-v23-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/noto-serif-v23-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/noto-serif-v23-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/noto-serif-v23-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-900italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/noto-serif-v23-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



/* libre-baskerville-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/libre-baskerville-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* libre-baskerville-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/libre-baskerville-v14-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* libre-baskerville-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/libre-baskerville-v14-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




/* cormorant-garamond-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/cormorant-garamond-v16-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/cormorant-garamond-v16-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cormorant-garamond-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/cormorant-garamond-v16-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/cormorant-garamond-v16-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/cormorant-garamond-v16-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/cormorant-garamond-v16-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/cormorant-garamond-v16-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/cormorant-garamond-v16-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/cormorant-garamond-v16-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}