@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; */
}

*, *: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(0,0,0,0.35);
  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: 19px; /* 21px; */
  line-height: 1.25em; /* 1.375em; /* 1.4em; */
  margin: 0px;
  padding: 0px;
  min-height: 100dvh;
  overflow-x: hidden;
  /* position: relative; */
}
body.greenBg {
  background: var(--green-bg-color);
}
body.brownBg {
  background: var(--brown-bg-color);
}
body.purpleBg {
  background: var(--purple-bg-color);
}


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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 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: 2px;
  text-decoration-style: wavy;
  text-underline-offset: 4px;
}

h2 {
  font-size: 2em;
  line-height: 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 h2, 
.headerGroup h3 {
  margin: 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; /* 4px;   */
} 
a img { border: 0px; }

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

/* 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;
}

/* karrik headers */
.karrik {
  font-family: 'karrikregular', sans-serif !important;
}
.karrik h1, .karrik h2, .karrik h3, .karrik h4, .karrik h5, .karrik h6 {
  font-family: 'karrikregular', sans-serif !important;
  font-weight: 400;
}
.karrik i {
  font-family: 'karrikitalic', sans-serif !important;
  font-style: normal;
}


.footnoteWrapper {
  border-top: 1px solid var(--text-color);
  font-size: 0.875em;
  line-height: 1.325em;
  margin-top: 2.5em;
  padding-top: 0.65em;
}

.footnoteWrapper p:last-of-type {
  padding: 0.5em 0px 0px 0px;
  margin-bottom: 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.35em;
  font-size: 0.65em;
}


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

.frameWrapper {
  position: fixed;
  inset: 0;
  /* border: 10px solid pink; */
  z-index: 9000;
  pointer-events: none;
}

.frameWrapper .inside {
  position: relative;
}

/* buttons inside frames */
.frameWrapper .inside a.frameButton {
  display: block;
  float: left;
  font-size: 1.8em;
  width: 1.25em;
  height: 1.25em;
  margin: 0px 0.65em 0px 0px;
  text-align: center;
  background-color: var(--text-color);
  border-radius: 50%;
  color: var(--bg-color);
  line-height: 1.075em; /* 1.9em; */
  pointer-events: all;
}
.frameWrapper .inside a.frameButton:hover {
  text-decoration: none;
  cursor: pointer;
}
/* menuBtn */
.frameWrapper .inside a.menuButton {
  display: block;
  float: left;
  font-size: 1.8em;
  width: 1.25em;
  height: 1.25em;
  margin: 0px 0.65em 0px 0px;
  text-align: center;
  /*
  background-color: var(--text-color);
  border-radius: 50%;
  color: var(--bg-color);
  */
  line-height: 1.075em; /* 1.9em; */
  pointer-events: all;
}
.frameWrapper .inside a.menuButton svg {
  display: block;
  float: left;
  width: 100%; /* 100%; */
  height: auto;
}
.frameWrapper .inside a.menuButton:hover {
  text-decoration: none;
  cursor: pointer;
}

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

.frameWrapper .inside > * {
  /* border: 1px solid red; */
}

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

}
#overlay ul.menu a:hover {
  text-decoration: none;
  color: var(--text-color);
}


/* LIST OF SUBJECTS */
#subjectsWrapper {
  font-family: 'Inter', sans-serif;
  font-size: 2em;
  line-height: 1.1em;
  font-weight: 500;
}

#subjectsWrapper ul {
  padding: 0px;
  margin: 0px;
  text-align: right;
}

#subjectsWrapper ul li {
  display: block;
}
#subjectsWrapper > ul > li {
  padding: 0px; /* 0px 0px 0.2em 0px; */
}
#subjectsWrapper > ul > li:last-of-type {
  /* border: 1px solid red; */
  padding: 0px !important;
}



#subjectsWrapper a {
  color: var(--text-color);
  cursor: pointer;
  position: relative;
  /* border: 1px solid pink; */
  line-height: 1.1em;
}

#subjectsWrapper a:hover {
  /* color: var(--link-color); */
  /* text-decoration: none; */
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-style: wavy;
  text-underline-offset: 4px;
}

#subjectsWrapper a.chosen {
  color: var(--link-color);
}
#subjectsWrapper a.chosen:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-style: wavy;
  text-underline-offset: 4px;
}
#subjectsWrapper a.chosen::after {
  content: " ";
  position: absolute;
  top: 1rem; /* 0.9rem; */
  right: -3rem;
  width: 1rem; /* 1.125rem; */
  height: 1rem; /* 1.125rem; */
  background-color: var(--link-color); /* var(--text-color); */
  border-radius: 50%;
  text-align: center;
  color: white;
}
/* chosen, selected ul: */
#subjectsWrapper ul.chosen a {
  color: var(--link-color);
}
#subjectsWrapper ul.chosen a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-style: wavy;
  text-underline-offset: 4px;
}

#subjectsWrapper a span.arrow {
  font-family: monospace;
  padding-left: 0.325rem;
}

/* second level */
#subjectsWrapper ul ul {
  display: none;
  font-size: 1em;
  margin: 0px;
}

/*
#subjectsWrapper ul ul li {
  padding: 0px;
}
*/
#subjectsWrapper ul ul li a {
  font-style: italic;
}

/* ************************************************************************** */
/* MOBILE MENU Subjects wrapper */


#mobileSubjectsWrapper {
  font-family: 'Inter', sans-serif;
  font-size: 2em;
  /* line-height: 1.1em; */
  font-weight: 500;
  margin-top: 2em;
}
#mobileSubjectsWrapper ul {
  padding: 0px;
  margin: 0px;
  text-align: left; /* right; */
}
#mobileSubjectsWrapper ul li {
  display: block;
}
#mobileSubjectsWrapper > ul > li {
  padding: 0px; /* 0.1em 0px; */
}
#mobileSubjectsWrapper a {
  color: var(--link-color); /* var(--text-color); */
  cursor: pointer;
  position: relative;
  line-height: 1.1em;
}
#mobileSubjectsWrapper a:hover {
  color: var(--text-color); /* var(--link-color); */
  text-decoration: none;
}

#mobileSubjectsWrapper a.chosen {
  /* text-decoration: line-through; */
  color: var(--text-color);
}
#mobileSubjectsWrapper a.chosen::after {
  content: " ";
  position: absolute;
  top: 0.9rem;
  left: -3.1rem;
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--text-color);
  border-radius: 50%;
  text-align: center;
  color: white;
}
#mobileSubjectsWrapper ul.chosen a {
  color: var(--text-color);
  font-style: italic;
}

#mobileSubjectsWrapper a span.arrow {
  font-family: monospace;
  padding-left: 0.5rem;
}

/* second level */
#mobileSubjectsWrapper ul ul {
  display: none;
  font-size: 1em;
  margin: 0px; /* 0.125em 0px 0.375em 0px; */
}
#mobileSubjectsWrapper ul ul li {
  padding: 0px; /* 0.05em 0px; */
}




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

/* responsive video */
.frame-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
}
.frame-container iframe {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
}


/* ************************************************************************** */
/* 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); */
    /* padding-right: 0px; */
    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);
  }
  .rightSideWrapper p:last-of-type {
    margin-bottom: 0px;
  }


  /* OVERLAY */
  #overlay {
    position: 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: 8000;
  }
  #overlay.shown {
    right: 0px;
    box-shadow: 0 1px 64px rgba(0,0,0,0.125);
  }  


  .textColumn {
    max-width: 50ch;
    margin: 0px auto;
  }


  #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;
}
