/* Google fonts are downloaded at the start of style.css (_bass.scss within sass) */
/* You can see 100s of google fonts at https://fonts.google.com */

/* Template CSS to allow font characters to be used as icons. */
/* Some icons are set up directly within CSS, while some are set up from within html <i> tags */
/* Currently there are two sets of fonts, "journey" and a big set of 490 icons that we call "IcoMoon490Icons" */
/* The IcoMoon490Icons font was provided by icomoon.io under the following license: http://www.gnu.org/licenses/gpl.html */

@font-face {
  font-family: 'journey';
  src:  url('../fonts/journey.ttf') format('truetype')
}

i[class^="journey-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'journey' !important;
  font-style: normal; /* default value */
  font-weight: normal; /* default value */
  font-variant: normal; /* default value */
  text-transform: none; /* default value */
  line-height: 1; /* sets the line height to equal the current font size */
}

i.journey-icon-login::after 	{content: "\e902";} /* top links */
i.journey-icon-search::after 	{content: "\e903";} /* top links */
i.journey-icon-register::after {content: "\e904";} /* top links */

@font-face {
  font-family: 'IcoMoon490Icons';
  src:  url('../fonts/IcoMoon12icons.ttf') format('truetype');
}

i[class^="icomoon-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'IcoMoon490Icons' !important;
  font-style: normal; /* default value */
  font-weight: normal; /* default value */
  font-variant: normal; /* default value */
  text-transform: none; /* default value */
  line-height: 1; /* sets the line height to equal the current font size, so there is no extra vertical padding */
}

i.icomoon-icon-facebook::after 	{content: "\ea90";} /* Social media icons */
i.icomoon-icon-twitter::after 	{content: "\ea96";}
i.icomoon-icon-instagram::after{content:"\ea92"}

/* Load in the Avenir fonts */
@font-face {
  font-family: 'AvenirLight';
  src:  url('../fonts/AvenirLight.ttf') format('truetype');
}
@font-face {
  font-family: 'AvenirHeavy';
  src:  url('../fonts/AvenirHeavy.ttf') format('truetype');
}

/* Load curly font for video overlay */
@font-face {
  font-family: 'MadinaScript';
  src:  url('../fonts/MadinaScript.otf') format('opentype');
}