@charset "utf-8";

:root {
  --text-color: #222211; /* #152255; */
  --bg-color: #fdebdc; /* #FCFCFC; */
  --green-bg-color: #e9fff1; /* #FCFCFC; */
  --brown-bg-color: #EADDCA; /* almond */
  --purple-bg-color: lavender;
  --caption-color: rgba(21,34,85,0.65);
  --link-color: tomato;
  --framePadding: 1em;
  --contentPaddingTop: 5rem; /* 3em 2.5em; */
  --contentPaddingLeft: 2.5rem; /* 3em 2.5em; */
  --column-max-width: 50ch; /* 50ch; */
}

*, *: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;
}
::-moz-selection { /* Code for Firefox */
  color: var(--bg-color);
  background: var(--text-color);
}
::selection {
  color: var(--bg-color);
  background: var(--text-color);
}

/* Hide scrollbar for Chrome, Safari, and Opera */
::-webkit-scrollbar {
  width: 0px; /* 0.65em; */
  background-color: transparent;
  display: none;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.15);
  border: none;
}
::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: transparent;
}


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

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

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  line-height: 1.25em; /* 1.375em; /* 1.4em; */
  margin: 0px;
  padding: 0px;
  min-height: 100dvh;
  overflow-x: hidden;
  /* position: relative; */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  scrollbar-color: rgba(0,0,0,0.15);
}

body.greenBg {
  background: var(--green-bg-color);
}
body.brownBg {
  background: var(--brown-bg-color);
}
body.purpleBg {
  background: var(--purple-bg-color);
}


/* hide texts list */
.textsFrontpageWrapper {
  display: block;
  height: 0px;
  overflow: hidden;
}


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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 1.1em; /* 1.05em; */
  margin: 0px 0px 0.5em 0px;
  letter-spacing: -0.01em; /* 0px; */
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px; /* 2px; */
  text-decoration-style: wavy;
  text-underline-offset: 2px; /* 4px; */
}

h1 {
  font-size: 2em;
  line-height: 1.1em; /* 1.05em; */
  padding: 0px;
}
h2 {
  font-size: 2em;
  line-height: 1.1em; /* 1.05em; */
  padding: 0px;
}
h3 {
  font-size: 1.65em;
  padding: 0px;
}
h4 {
  font-size: 1.35em;
  padding: 0px;
}
.headerGroup {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 2.5em;
}
.headerGroup h1, 
.headerGroup h2, 
.headerGroup h3 {
  margin: 0px 0px 8px 0px; /* 0px 0px 10px 0px; */
}

p {
  font-size: 1em;
  margin: 0px 0px 1.5rem 0px;
}
p.noMargin {
  margin: 0px; /* 0px 0px 1.5rem 0px; */
}

/* INLINE LINKS */
a { text-decoration: none; color: var(--link-color); outline: 0; }
a:active, a:focus { outline: 0; }
a:hover {
  outline: none;
  text-decoration: underline;
  text-decoration-thickness: 1px; /* 2px; */
  text-decoration-style: wavy;
  text-underline-offset: 2px; /* 2px; /* 4px;   */
} 
a img { border: 0px; }

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

figure {
  margin-left: auto;
  margin-right: auto;
  text-align: left; /* center; */
}
figcaption {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  line-height: 1.35em;
  margin-top: 0.25em;
  opacity: 0.8;
}


/* **************************************************************************** */
/* CONTENT wrappers */


.singleTextWrapper {
  max-width: var(--column-max-width);
}

.authored {
  color: rgba(0,0,0,0.5);
  /* opacity: 0.65; */
}

/* term on text page */
.textTerm {
  display: block;
  height: 0px;
  overflow: hidden;
}


/* image wrapper */
.imgWrapper {
  display: block;
  float: left;
  margin-bottom: 1.5em;
}

.imgWrapper img {
  display: block;
  float: left;
}

.imgWrapper .caption {
  display: block;
  float: left;
  width: 100%;
  opacity: 0.65;
  margin-top: 0.25em;
  font-size: 0.9em;
  line-height: 1.2em;
}


/* hiding to move later */
.oldFootnotesWrapper {
  visibility: hidden;
  height: 0px;
  overflow: hidden;
}
.footnotesWrapper {
  margin: 0px; /* 1rem 0px 0px 0px; */
  max-width: var(--column-max-width);
}
.footnotesWrapper .footnoteTopBar {
  display: block;
  margin-top: 0px; /* 0.5em; */
  margin-bottom: 0.35em;
  letter-spacing: -0.025em;
}
.footnotesWrapper .number {
  display: block;
  float: left;
  margin: 0px 0.5em 0px 0px;
  font-family: monospace;
  font-size: 0.875em;
  line-height: 1.275em; /* 1.3em; /* 1.325em; */
}
.footnotesWrapper p {
  display: block;
  margin: 0px 0px 0.35em 0px; /* 0px 0px 0.25em 0px; */
  font-size: 0.875em;
  line-height: 1.275em; /* 1.3em; /* 1.325em; */
}
/* footnotes in text */
.footnoteInText {
  display: inline;
  color: var(--link-color);
  padding: 0px 2px;
  position: relative;
}
.footnoteInText:hover {
  cursor: pointer;
  text-decoration: none;
}


/* Footnote OVERLAY (tooltip) */
.footnoteInText sup {
  font-family: monospace;
  letter-spacing: -0.1em;
}
.footnoteInText span.footnoteOverlay {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  position: absolute;
  bottom: 2em;
  right: 0px;
  width: 40ch;
  background: var(--bg-color);
  color: var(--text-color);
  pointer-events: none;
  padding: 1.5rem 30px; /* 1rem 1.25rem; */
  font-size: 0.85em;
  line-height: 1.25em;
  box-shadow: 0px 3px 24px rgba(0,0,0,0.15);
  border: 0px;
  border-radius: 6px;
  z-index: 100;
  display: none;
}
.footnoteInText .footnoteOverlay p:last-of-type {
  margin: 0px;
}
.footnoteInText span.shown {
  display: block !important;
}
/* number inside footnote bubble */
.footnoteInText .number {
  font-family: monospace;
  display: block;
  float: left;
  margin: 0px 0.5em 0px 0px;
}

/* https://stackoverflow.com/questions/1530685/how-can-i-keep-consistent-line-height-with-superscript-elements */
sub {
  vertical-align: sub;
  font-size: 0.8em;
}
sup {
  vertical-align: top; /* super; */ /* top doesnt destroy line-height */
  position: relative;
  top: -0.275em;
  font-size: 0.8em;
}


/* ************************************************************************** */
/* main wrappers */

/* this class is for placing content on the site, that is not conflicting with the navbar */
.bodyInside {
  display: block;
  width: 100dvw;
  min-height: 100dvh;
  border-top: 0px; /* 1px solid rgba(0, 0, 0, 0.65); */
  position: absolute; /* DON'T USE FIXED!! */
}

.frameWrapper {
  position: absolute; /* fixed */; /* DON'T USE FIXED!! */
  inset: 0;
  z-index: 400; /* 9000; */
  pointer-events: none;
  /* border: 1px solid green; */
  min-height: 100dvh;
}
.frameWrapper .inside {
  position: relative;
  min-height: 100dvh; /* calc(100dvh - 80px); */
  /* border: 1px solid red; */
}

/* buttons inside frames */
.frameWrapper .inside a.frameButton {
  display: block;
  float: left;
  font-size: 1.8em;
  width: 1.125em; /* 1.25em; */
  height: 1.125em; /* 1.25em; */
  margin: 0px 0.65em 0px 0px;
  text-align: center;
  pointer-events: all;
  color: var(--text-color);
}
.frameWrapper .inside a.frameButton:hover {
  text-decoration: none;
  cursor: pointer;
}
.frameWrapper .inside a.frameButton svg {
  width: 100%;
  height: 100%;
}

/* open / close buttons */
#openBtn, #closeBtn {
  display: block;
}
#openBtn.hidden, #closeBtn.hidden {
  display: none;
}


/* text inside frames */
.frameWrapper .inside span {
  font-size: 2em;
}

.frameWrapper .inside #topFrame {
  position: absolute; /* fixed; */
  top: var(--framePadding);
  left: var(--framePadding);
}
.frameWrapper .inside #rightFrame {
  transform: rotate(90deg) translateX(100%);
  transform-origin: 100% 0%;
  position: absolute; /* fixed; */
  top: var(--framePadding);
  right: var(--framePadding);
}
.frameWrapper .inside #rightFrame a {
  transform: rotate(-90deg);
}
.frameWrapper .inside #bottomFrame {
  transform: rotate(180deg);
  position: absolute; /* fixed; */
  bottom: var(--framePadding);
  right: var(--framePadding);
}
.frameWrapper .inside #leftFrame {
  transform: rotate(-90deg) translateY(100%);
  transform-origin: 0% 100%; /* 100% 100%; /* 0% 0%; */
  position: absolute; /* fixed; */
  left: var(--framePadding);
  bottom: var(--framePadding);
}


/* two cols with individual scroll */
/* https://stackoverflow.com/questions/67898821/how-do-i-set-two-div-which-are-side-by-side-to-scroll-independently */
.pageWrapper {
  display: flex;
}




/* Overlay */
#overlay ul.menu {
  font-family: "Inter";
  font-size: 2em;
  line-height: 1.1em;
  font-weight: 500;
  list-style-type: none;
  padding: 0px;
  margin: 0px; /* 0px 0px 2em 0px; */
}
#overlay ul.menu a {
  position: relative;
}
#overlay ul.menu a.is-active {
  color: var(--text-color);
}
#overlay ul.menu a.is-active::after {
  content: " ";
  position: absolute;
  top: 0.425em; /* 1rem; */
  left: -1.425em; /* -3rem; */
  width: 0.35em; /* 1rem; */
  height: 0.35em; /* 1rem; */
  background-color: var(--text-color); /* var(--link-color); */
  border-radius: 50%;
  text-align: center;
  color: white;
}
#overlay ul.menu a:hover {
  /* text-decoration: none; */
  color: var(--text-color); 
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-decoration-thickness: 1px; /* 2px; */
  text-decoration-style: wavy;
  text-underline-offset: 2px; /* 2px; /* 4px; */
}


/* ************************************************************************** */
/* VIDEO */


/* From here: https://www.youtube.com/watch?v=oJrxa_zBftM */
iframe {
  width: min(1040px, 100%);
  height: clamp(150px, 48vw, 255px); /* 480px); /* 34.75vh, 480px); /* 48vh, 480px); */
}


/* ************************************************************************** */
/* Other Wrappers */

.maxWidth {
  max-width: 1600px; /* none; /* 1024px; */
  margin: 0px auto 0px 0px;
}
img.maxWidth {
  max-width: 100%;
  height: auto;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* THERE ARE STYLESHEETS ATTACHED TO THIS formatting */

/* grids */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen {

  :root {
    --contentPaddingTop: 6rem;
    --contentPaddingLeft: 1.5rem; /* 2.5rem; */
  }

  .leftSideWrapper {
    flex: 0 0 0%; /* 0 0 50%; */
    height: 100dvh;
    position: relative;
    top: 0;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: right;
    padding: 0px; /* var(--contentPaddingTop) var(--contentPaddingLeft); */
    border-right: 0px; /* 1px dotted var(--text-color); */
  }
  
  
  .rightSideWrapper {
    flex: 0 0 100%; /* 0 0 50%; */
    /* display: flex; */ /* coudl nest more flex elms */
    height: 100dvh;
    position: relative;
    top: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: var(--contentPaddingTop) var(--contentPaddingLeft);
    /* -ms-overflow-style: auto;  /* IE and Edge */
  }

  /* Hide scrollbar for Chrome, Safari, and Opera */
  .rightSideWrapper::-webkit-scrollbar {
    width: 0.375em;
    background-color: transparent;
    display: block;
    
  }
  .rightSideWrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.1);
    border: none;
    border-radius: 0.25em;
  }
  .rightSideWrapper::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: transparent;
  }

  /* OVERLAY */
  #overlay {
    position: absolute; /* fixed */
    top: 0px;
    right: -100dvw;
    width: 100dvw;
    /* display: flex; */ /* could nest more flex elms */
    height: 100dvh; /* 90vh; */
    /* position: relative; */
    overflow-y: auto;
    overflow-x: hidden;
    padding: var(--contentPaddingTop) var(--contentPaddingLeft);
    transition: 250ms;
    background-color: var(--bg-color);
    color: var(--text-color);
    z-index: 300; /* 8000; */
  }
  #overlay.shown {
    right: 0px;
    box-shadow: 0 1px 64px rgba(0,0,0,0.125);
  }  


  .textColumn {
    max-width: var(--column-max-width);
    margin: 0px auto;
  }
  /* content on pages */
  .textColumn .field--name-body {
    /* border: 1px solid red; */
    max-width: var(--column-max-width);
  }
  .maxTextWidth {
    max-width: var(--column-max-width);
  }


  #mobileSubjectsWrapper {
    display: block;
  }

}


/* ***************************************************** */
/* BREAK MEDIUM */

@media (min-width: 650px) {


}


/* ***************************************************** */
/* BREAK MEDIUM */

@media (min-width: 800px) {



}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@media screen and (min-width: 1024px) {

  :root {
    --contentPaddingTop: 5rem;
    --contentPaddingLeft: 2.5rem; /* 2.5rem; */
  }  

  .leftSideWrapper {
    flex: 0 0 50%;
    padding: var(--contentPaddingTop) var(--contentPaddingLeft);
    border-right: 1px dotted var(--text-color);
  }
  .rightSideWrapper {
    flex: 0 0 50%;
  }
  
  
  /* OVERLAY */
  #overlay {
    right: -42dvw;
    width: 42dvw;    
  }

  .textColumn {
    margin: 0px auto 0px 0px;
  }

  #mobileSubjectsWrapper {
    display: none;
  }

}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

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


}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@media screen and (min-width: 1400px) {



}




/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



/* inter-100 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/inter-v7-latin-100.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-100.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-100.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-200 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/inter-v7-latin-200.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-200.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-200.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-300 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-v7-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-300.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-regular - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v7-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-500 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v7-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-500.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-600 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v7-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-600.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-700 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v7-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-700.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-900 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/inter-v7-latin-900.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-900.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-900.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-800 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/inter-v7-latin-800.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-800.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-800.svg#Inter') format('svg'); /* Legacy iOS */
}






/* crimson-pro-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: 'Crimson Pro';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/crimson-pro-v24-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/crimson-pro-v24-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/crimson-pro-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/crimson-pro-v24-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/crimson-pro-v24-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/crimson-pro-v24-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/crimson-pro-v24-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/crimson-pro-v24-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/crimson-pro-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/crimson-pro-v24-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/crimson-pro-v24-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/crimson-pro-v24-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/crimson-pro-v24-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* crimson-pro-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: 'Crimson Pro';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/crimson-pro-v24-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



/* ********************************************************************************** */
/* KARRIK */
@font-face {
  font-family: 'karrikregular';
  src: url('../fonts/Karrik-Regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/Karrik-Regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/Karrik-Regular.ttf') format('truetype'); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;       
}
@font-face {
  font-family: 'karrikitalic';
  src: url('../fonts/karrik-Italic.woff2') format('woff2'),
       url('../fonts/karrik-Italic.woff') format('woff'),
       url('../fonts/karrik-Italic.ttf') format('woff');
  font-weight: normal;
  font-style: normal;
}
