@charset "utf-8";

:root {
  --main-text-color: rgba(255,255,255,0.86);
  --main-bg-color: #110a14;
  --main-link-color: tomato; /* #990000; */
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* BASIC CONSCIOUS RESETs +++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* make HTML5 elements block-level for consistent styling */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1 }

/* Basic Form styling */
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; *overflow: visible; }

/* Basic List styling */
/* ul { margin: 0 0 1.5385em 0; padding: 0 0 0 0; } */
ul, ol { margin: 0 0 1.5385em 0; padding: 0 0 0 0; }
dd { margin: 0 0 0 3em; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0 }
li { line-height: 1.5385em; } /* 20 */

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup { font-size: 75%; font-size: 0.8462em; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em }

* {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
*, *: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.5em;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.5);
  border: none;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}

/* imgs fit column */
.fitColumn {
  /* max-width: 100%; */
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

#gmap {
  display: block;
  float: left;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.25);
}


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

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

body {
  width: 100%;
  background-color: var(--main-bg-color);
  color: rgba(32,16,48,0.82);
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4em;
  margin: 0px;
  padding: 0em;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

ul {
  list-style-type: square;
  list-style-position: outside;
  list-style-image: none;
}
ul li {
  margin: 0px;
}

.Grid-cell ol {
  margin: 0px 0px 1.5385em 0.25rem; /* 0 0 1.5385em 1rem; */
  padding: 0px 0px 0px 1rem;
  list-style-position: outside;
}
.Grid-cell ol li {
  /* border: 1px solid red; */
  padding-left: 0.5rem;
}
.Grid-cell ul ol {
  margin: 0px; /* 0 0 0px 1rem !important; */
  list-style-type: circle;
}
.Grid-cell ul ol li {
  /* border: 1px solid red; */
}

.Grid-cell ul {
  margin: 0px 0px 1.5385em 0.25rem; /* 0 0 1.5385em 1rem; */
  padding: 0px 0px 0px 1rem;
  list-style-position: outside;
  list-style-type: disc;
}
.Grid-cell ul li {
  /* border: 1px solid red; */
  padding-left: 0.5rem;
}
.Grid-cell ul ul {
  margin: 0 0 0px 1rem !important;
  list-style-type: circle;
}


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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.15em;
  margin: 0px 0px 0em 0px;
  letter-spacing: 0.025em;
}
h2 {
  font-size: 2.5em; /* 1.5em; */
  padding: 0px;
  margin-bottom: 0.475em; /* 0.375em; */
}
h3 {
  font-size: 1.375em;
  padding: 0px;
}
h3.thin {
  font-weight: 300;
}

p {
  font-size: 1em;
  margin: 0px 0px 1.35em 0px;
}

b,
strong {
  font-weight: 500;
}

.alignCenter {
  text-align: center;
}

/* INLINE LINKS */
a {
  text-decoration: none;
  color: var(--main-link-color); /* lightgreen; /* tomato; */
  outline: 0;
}
a:active, a:focus { outline: 0; }
a:hover { text-decoration: underline; outline: none; }

a img {
  border: 0px;
}

#mapSource {
  width: 100%;
  height: 300px;
  margin-bottom: 0px; /* 0.5em; */
}



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



/* menu */

#menuWrapper {
  display: block;
  /* float: left; /* super important here! */
  width: 100%;
  color: white;
  font-family: sans-serif;
  font-weight: bold;
}
#menuWrapper::after {
  content: "";
  display: table;
  clear: both;  
}


.maxWidth {
  max-width: 1280px; /* 1024px; */
  margin: 0px auto;
}
.maxWidth::after {
  content: "";
  display: table;
  clear: both;
}

/* map */
#mapSource {
  width: 100%;
  height: 480px;
}

/* padlet */
.padlet-embed {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  background: rgb(244, 244, 244);
}
.padlet-embed p iframe {
  width: 100%;
  height: 608px;
  display: block;
  float: left;
  overflow-x: hidden;
  padding: 0px;
  margin: 0px;
}

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

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

#galleryWrapper,
#videoGalleryWrapper {
  display: block;
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 -0.25em 1.5em -0.25em;
}

#galleryWrapper a,
#videoGalleryWrapper a {
  padding: 0px 0.25em 0.5em 0.25em;
  margin-bottom: 0.5rem;
}

#galleryWrapper a img,
#videoGalleryWrapper a img {
  width: 100%;
  height: auto;
  display: block;
  float: left;
}

/* Program entries ******************************** */

.programEntry {
  width: 100%;
  padding: 0.4em 0px; /* 0.5em 0px; */
  border-bottom: 1px solid rgba(255,255,255,0.075); /* rgba(121, 94, 94, 0.1); /*  1px solid rgba(32, 27, 63, 0.1); */
}

.programEntry span.timeWrapper {
  display: inline-block;
  padding-right: 1em;
  min-width: 120px;
  opacity: 0.82; /* 0.75; */
}

.programEntry span.infoWrapper {
  display: inline-block;
}

.programEntry span.title {
  font-style: italic;
  padding: 2px 0px; /* 2px 3px; */
  /* background: rgba(0,0,0,0.1); */
}

.programEntry span.lead {
  padding-right: 1em;
}


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

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

  #pageWrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* row; */
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    overflow-x: hidden;
  }

  /* PODCAST bubble to click */
  #podcastBtn {
    position: absolute;
    z-index: 10;
    display: block;
    width: 8rem; /* 9rem; */
    height: 8rem; /* 9rem; */
    top: auto; /* 40px; */
    bottom: 0px; /* auto */
    right: 0px;
    overflow: hidden;
  }

  #podcastBtn a {
    position: absolute;
    top: auto; /* 0px; */
    bottom: -3px; /* auto */
    right: -3px;
    display: block;
    width: 8rem; /* 9rem; */
    height: 8rem; /* 9rem; */
    border-radius: 50%;
    background-color: var(--main-link-color); /* green; */
    background-image: url(../2021_bgImages/podcastOpenCall2.png);
    background-position: center;
    background-size: cover;
    text-indent: -999em;
    cursor: pointer;
    opacity: 0.8;
  }


  /* HERO Wrapper */
  .heroWrapper {
    display: block;
    width: auto;
    min-height: 50vh; /* 45vh; /* 40vh; */
    /* margin: 0px -2rem 3rem -2rem; */
    background-color: var(--main-bg-color);
    background-image: url(../2021_bgImages/DOMEN.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0px 0px 3rem 0px;
    border-radius: 47%;
    transform: rotate(-2deg);
  }
  .heroWrapper::after {
    content: "";
    display: table;
    clear: both;  
  }

  header {
    flex: 0 0 100%; /* 15%; */
    display: none;
    background-color: white; /* whitesmoke; /* white; */
  }

  #logo {
    position: relative;
  }

  .partnerLogo {
    display: block;
    float: left;
    height: 50px; /* 60px; */
    width: auto;
    margin-right: 2.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.65;
  }
  .partnerLogo:last-of-type {
    margin-right: 0px; /* 2.5rem; */
  }  

  /* round logo */
  #logo a.round {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 80px; /* 100%; */
    height: auto;
    float: left;
    z-index: 1000;
    opacity: 0.9; /* 1; /* 0.78; */
    display: none;
    transform: rotateZ(-1deg);
  }
  #logo a.round img {
    max-width: 100%;
    height: auto;
  }

  /* text logo */
  #logo a.text {
    position: absolute;
    top: 1.0rem; /* 19px; */
    left: 0.65rem; /* 18px; */
    display: block;
    width: auto;
    float: left;
    font-size: 28px; /* 32px; */
    line-height: 28px;
    font-weight: 700;
    color: var(--main-text-color);
    z-index: 1000;
    font-family: 'Lora', serif;
  }
  #logo a.text:hover {
    text-decoration: none;
  }

  #info {
    display: block;
    position: fixed;
    bottom: 0.9em; /* 1em; */
    left: 0.9em; /* 1em; */
    /* color: rgba(0,0,0,0.75); */
  }
  #info p {
    margin: 0px;
    font-size: 26px;
    line-height: 30px;
    font-weight: 900; /* 700; */
    /* font-family: 'Rubik', sans-serif; */
    font-family: 'Lora', serif;
  }

  #mainWrapper {
    flex: 0 0 100%; 
    padding: 0.65rem 0.65rem 7rem 0.65rem; /* 1rem; */
    background-color: var(--main-bg-color);
    /* background-image: url(../2021_bgImages/BgTiled.png); */
    /* background-image: url(../2021_bgImages/greenBg2.jpg); */
    background-image: url(../2021_bgImages/blueBg.jpg);
    background-position: top left;
    background-repeat: repeat;
    min-height: 100vh;
    color: rgba(255,255,255,0.9);
  }
  #mainWrapper a {
    color: var(--main-link-color); /* lightgreen; /* tomato; */
  }

  #menuWrapper {
    margin-bottom: 1rem;
  }


  /* burger menu */
  #mobileNavWrapper {
    flex: 0 0 100%;
    overflow: hidden;
    height: auto;
    max-height: 420px;
    transition: max-height 0.2s ease;
  }
  #mobileNavWrapper.hide {
    max-height: 0px;
    border-bottom: 1px solid transparent;
  }
  
  /* burger nav */
  .burgerWrapper {
    flex: 0 0 100%;
  }
  .burgerWrapper:after {
    content: "";
    display: table;
    clear: both;
  }

  /* NAV ICON */
  .burgerWrapper a#burger {
    display: block;
    float: right;
    padding: 0px;
    margin: -1rem -0.65rem 0px 0px; /* -1rem -1rem 0px 0px; /* 0px; */
    color: var(--main-text-color);
  }

  .burgerWrapper a#burger #burgerIcon,
  .burgerWrapper a#burger #crossIcon {
    outline: none;
    border: none;
    display: block;
    float: right;
    cursor: pointer;
    background-color: transparent;
    margin: 0px;
  }
  .burgerWrapper a#burger #burgerIcon {
    /* padding: 0.25em 0.8em 0px 0.6em; */
    /* padding: 0.35em 0.5em 0px 0.6em; */
    padding: 0.45em 0.5em 0px 0.6em;
  }
  .burgerWrapper a#burger #crossIcon {
    /* padding: 0.25em 0.5em 0px 0.9em; */
    /* padding: 0.35em 0.5em 0px 0.6em; */
    padding: 0.45em 0.5em 0px 0.6em;
  }

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

  /* mobileNav */
  ul.mobileNav {
    list-style: none;
    /* margin-bottom: 1.5rem; */
    margin: 0px 0px 1.5rem 0px;
    padding: 0px;
    flex: 0 0 100%;
    height: auto;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    text-align: center;
  }
  ul.mobileNav::after {
    content: "";
    display: table;
    clear: both;
  }
  /* only first levels li */
  ul.mobileNav li ul {
    display: none;
  }
  ul.mobileNav li {
    display: block; /* inline-block; */
    float: left;
    width: 100%;
    padding-left: 0px;
  }
  #mainWrapper ul.mobileNav li a {
    display: block;
    float: left;
    width: 100%;
    /* color: rgba(255,255,255,0.70); */
    color: var(--main-text-color);
    line-height: 2em;
    font-size: 1.25rem ;/* 1.3125rem; */
    padding: 0px 0.65rem;
    font-weight: 300; /*  500; */
    letter-spacing: 0.030em; /* 0.00375em; */
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  #mainWrapper ul.mobileNav li a:hover {
    text-decoration: none;
  }
  #mainWrapper ul.mobileNav li.active a {
    text-decoration: line-through;
  }


  /* other wrappers */
  #galleryWrapper a,
  #videoGalleryWrapper a {
    flex: 0 0 100%;
  }

  /* Resources */
  .resourceWrapper,
  .peopleWrapper,
  .WhyCodeWrapper,
  .workshopWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: auto;
    margin: 0px -0.35em 0px -0.35em;
  }
  .peopleWrapper {
    margin-bottom: 2.5rem; /* 1em; */
  }
  .resourceEntry,
  .peopleEntry,
  .whyCodeEntry,
  .workshopEntry {
    padding: 0px 0.35em;
    /* color: rgba(0,0,0,0.65); */
    /* flex is in media queries */
  }
  .resourceEntry span.thumb a,
  .peopleEntry span.thumb a,
  .workshopEntry span.thumb a {
    width: 100%;
    height: auto;
    display: block;
    float: left;
  }
  .resourceEntry span.thumb a img,
  .peopleEntry span.thumb a img,
  .workshopEntry span.thumb a img {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    margin: 0px;
  }
  /* people without links _*/
  .resourceEntry span.thumb img,
  .peopleEntry span.thumb img,
  .workshopEntry span.thumb img {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    margin: 0px;
    
  }  
  .resourceEntry span.name,
  .peopleEntry span.name {
    display: block;
    width: 100%;
    float: left;
    font-weight: 500; /* bold; */
    margin-top: 0.5em;
  }
  .workshopEntry span.name {
    display: block;
    width: 100%;
    float: left;
    font-weight: bold;
    margin-top: 1em;
  }
  .resourceEntry span.desc,
  .peopleEntry span.desc,
  .workshopEntry span.desc {
    display: block;
    width: 100%;
    float: left;
    /* margin-bottom: 1.5em; */
  }
  .resourceEntry a,
  .peopleEntry a,
  .workshopEntry a {
    overflow-wrap: break-word;
    word-break: break-all;
  }
  .peopleEntry span.whyCode {
    display: block;
    float: left;
    font-style: italic;
  }

  /* whycode entry */
  .whyCodeEntry span.name {
    display: block;
    width: 100%;
    float: left;
    font-weight: bold;
  }
  .whyCodeEntry span.whyCode {
    display: block;
    float: left;
    font-style: italic;
  }

  .resourceEntry,
  .peopleEntry,
  .whyCodeEntry,
  .workshopEntry {
    overflow: hidden;
    padding-bottom: 1.5em;
  }

  .resourceEntry {
    flex: 0 0 100%; /* 1; */
  }
  .peopleEntry {
    flex: 0 0 50%; /* 1; */
  }
  .whyCodeEntry {
    flex: 0 0 100%;
  }
  .workshopEntry {
    flex: 0 0 100%;
  }

}


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

@media (min-width: 400px) {
  
  #galleryWrapper a,
  #videoGalleryWrapper a {
    flex: 0 0 50%;
  }

  /* grid was moved to grid.css */
  .resourceEntry {
    flex: 0 0 50%;
  }
  .peopleEntry {
    flex: 0 0 50%;
  }
  .whyCodeEntry {
    flex: 0 0 100%;
  }

}


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

@media (min-width: 800px) {
  
  #galleryWrapper a,
  #videoGalleryWrapper a {
    flex: 0 0 33.3333%;
  }
  .resourceEntry {
    flex: 0 0 33.3333%;
  }
  .peopleEntry {
    flex: 0 0 33.3333%;
  }
  .whyCodeEntry {
    flex: 0 0 50%;
  }
  .workshopEntry {
    flex: 0 0 50%;
  }  
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 4. */
@media screen and (min-width: 1024px) {

  /* now rows as flex-direction */
  #pageWrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
  }

  /* PODCAST bubble to click */
  #podcastBtn {
    width: 9rem; /* 8rem; /* 9rem; */
    height: 9rem; /* 8rem; /* 9rem; */
    top: 40px; /* auto; /* 40px; */
    bottom: 0px; /* auto */
  }

  #podcastBtn a {
    top: 0px; /* auto; /* 0px; */
    bottom: auto; /* -3px; /* auto */
    width: 9rem; /* 8rem; /* 9rem; */
    height: 9rem; /* 8rem; /* 9rem; */
  }  


  .heroWrapper {
    /* margin: 0px -2rem 3rem -2rem; */
    margin: 0px -0.5rem 2.5rem -0.5rem;
  }  

  /* no mobile nav */
  .burgerWrapper a#burger #burgerIcon,
  .burgerWrapper a#burger #crossIcon {
    display: none;
  }

  header {
    flex: 0 0 20%; /* 15%; */
    display: block;    
  }

  #logo a.text {
    display: none;
  }

  #logo a.round {
    position: fixed; /* absolute; */
    top: -3px;
    left: -3px;
    width: 120px;
    height: auto;
    float: left;
    display: block;
  }

  /*
  #menuWrapper {
    flex: 0 0 15%;
    margin-bottom: 0px;
  }
  */

  #mainWrapper {
    flex: 0 0 80%;
    padding: 2.375rem 2rem 1rem 2rem;
    /* padding-top: 2rem; /* 1em; /* 3em; /* 0px; */
    /* padding-bottom: 0px; */
  }

  #menuWrapper {
    margin-bottom: 0px; /* 1rem; */
  }


  /* mobileNav */
  ul.mobileNav {
    margin-bottom: 5rem; /* 0px; */
    flex: 0 0 100%;
    height: auto;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    text-align: center;
  }
  /* only first levels li */
  ul.mobileNav li ul {
    display: none;
  }
  ul.mobileNav li {
    display: inline-block;
    width: auto;
    float: none;
  }
  #mainWrapper ul.mobileNav li a {
    color: rgba(255,255,255,0.70);
    font-size: 1.25rem; /* 1.3125rem; */
    line-height: normal;
    padding: 0px 0.65rem;
    letter-spacing: 0.0375em; /* 0.00375em; */
    border-top: 0px solid transparent;
  }
  #mainWrapper ul.mobileNav li a:hover {
    text-decoration: none;
  }
  #mainWrapper ul.mobileNav li.active a {
    text-decoration: line-through;
  }
  /* menu always has to be visible down here */
  #mobileNavWrapper.hide {
    max-height: none !important;
    /* border-bottom: 1px solid transparent; */
  }


  /* other wrappers */
  #galleryWrapper a,
  #videoGalleryWrapper a {
    flex: 0 0 25%;
  }

  .resourceEntry {
    flex: 0 0 33.3333%; /* 1; */
  }
  .peopleEntry {
    flex: 0 0 33.3333%; /* 20%; /* 1; */
  }
  .whyCodeEntry {
    flex: 0 0 50%;
  }


}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 4. */
@media screen and (min-width: 1280px) {

  .resourceEntry {
    flex: 0 0 25%;
  }
  .peopleEntry {
    flex: 0 0 25%; /* 20%; /* 1; */
  }
  .whyCodeEntry {
    flex: 0 0 33.3333%;
  }
  


}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 4. */
@media screen and (min-width: 1600px) {
  
  #galleryWrapper a,
  #videoGalleryWrapper a {
    flex: 0 0 20%;
  }

  .resourceEntry {
    flex: 0 0 25%;
  }
  .peopleEntry {
    flex: 0 0 20%; /* 20%; /* 1; */
  }
  .whyCodeEntry {
    flex: 0 0 33.3333%; /* 25%; */
  }


}


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

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

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* EB Garamond font */

/* eb-garamond-500 - latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/eb-garamond-v12-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/eb-garamond-v12-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/eb-garamond-v12-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/eb-garamond-v12-latin-500.svg#EBGaramond') format('svg'); /* Legacy iOS */
}
/* eb-garamond-700 - latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/eb-garamond-v12-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/eb-garamond-v12-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/eb-garamond-v12-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/eb-garamond-v12-latin-700.svg#EBGaramond') format('svg'); /* Legacy iOS */
}
/* eb-garamond-500italic - latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/eb-garamond-v12-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/eb-garamond-v12-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/eb-garamond-v12-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-500italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/eb-garamond-v12-latin-500italic.svg#EBGaramond') format('svg'); /* Legacy iOS */
}
/* eb-garamond-700italic - latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/eb-garamond-v12-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/eb-garamond-v12-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/eb-garamond-v12-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/eb-garamond-v12-latin-700italic.svg#EBGaramond') format('svg'); /* Legacy iOS */
}



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


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



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