/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

@font-face {
  font-family: 'El Messiri';
  font-style: normal;
  font-weight: 400;
  src: local('El Messiri'), url('https://fonts.cdnfonts.com/s/15411/ElMessiri-Regular.woff') format('woff');
}
@font-face {
  font-family: 'El Messiri';
  font-style: normal;
  font-weight: 500;
  src: local('El Messiri'), url('https://fonts.cdnfonts.com/s/15411/ElMessiri-Medium.woff') format('woff');
}
@font-face {
  font-family: 'El Messiri';
  font-style: normal;
  font-weight: 600;
  src: local('El Messiri'), url('https://fonts.cdnfonts.com/s/15411/ElMessiri-SemiBold.woff') format('woff');
}
@font-face {
  font-family: 'El Messiri';
  font-style: normal;
  font-weight: 700;
  src: local('El Messiri'), url('https://fonts.cdnfonts.com/s/15411/ElMessiri-Bold.woff') format('woff');
}



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a
{
    text-decoration: none; 
}
body{
    font-family: 'El Messiri', sans-serif;
    background-color: #000;
    color: #FFF;
}
#menu ul li
{
    font-size: 2vw;
    color: black;
    text-align: center;
    
}
#menu ul li a
{
    color: black;
    font-style: normal;
}
#menu
{
    top: 0;
    text-align: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: -101vw;
    background:rgba(255,255,255);
    -webkit-transition: all 0.3s 0s ease;
    -moz-transition: all 0.3s 0s ease;
    -o-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
    line-height: 4vw;
    z-index: 9999999;
}
#menu::after
{
    content: "";
    height: 100%;
    width: 4vw;
    right: -3.9vw;
    position: absolute;
    background: url('../images/right-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    background-position: center center;
}
#menu:hover
{
    left: -97vw;
}
#menu.open
{
    left: 0vw;
    background: rgba(255,255,255,0.9);
}
#menu.open::after
{
    opacity: 0.9;
}
.logo-menu
{
    background-image: url('../images/logotype-black-underline.svg');
    background-repeat: no-repeat;
    background-position:center;
    width: 20vw;
    height: 10vw;
    margin-bottom: 3vw;
}
#menu::before
{
content: "X";
position:absolute;
right: 1vw;
top: 1vw;
font-size: 3vw;
color: black;
cursor: pointer;
opacity: 0;
}
#menu.open::before
{
opacity: 1;
}
ul.breadcrumb {
    list-style: none;
  }
  
  ul.breadcrumb li {
    display: inline;
  }
  
  ul.breadcrumb li:before {
    color: #3F3F3F;
    content: "/\00a0";
    margin-right: .5vw;
    margin-left: .5vw;
  }
  ul.breadcrumb li:first-child::before {
    content: "";
  }
  ul.breadcrumb li a {
    text-decoration: none;
    color:#3F3F3F;
  }
  
  ul.breadcrumb li a:hover {
  }
ul.nav {
    list-style: none;
    text-align: right;
    float: right;
  }
  
  ul.nav li {
    display: inline;
  }
  
  ul.nav li:before {
    color: #FFF;
    content: "|";
    margin-right: 1.5vw;
    margin-left: 1.5vw;
    opacity: 0.3;
  }
  ul.nav li:first-child::before
  {
      content: "";
  }
  
  ul.nav li a {
    text-decoration: none;
    color:#FFF;
  }
  

  ul.nav li a{
    opacity: 0.3;
    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
  }
  ul.nav li a.active
  {
    opacity: 1;
  }
  ul.nav li a:hover {
    opacity: 1;

  }
  h1.title
  {
      text-align: center;
      font-size: 2vw;
  }
  .logo-top
  {
      background-image: url(../images/type-white-underline.svg);
      height: 10vh;
      background-repeat: no-repeat;
      background-position-x: center;
      background-position-y: center;
  }
  article
  {
      text-align: center;
      line-height: 4vh;
      font-size: 2.3vh;
      margin: auto;
      width: 70%;
  }
  .category-items a
  {
    color: #FFF;
    text-align: center;
    font-size: 1vw;
    display: block;
    margin-bottom: 2vh;
  }
  .category-items h3
  {

    margin-bottom: 2vh;
    font-size: 1.5vw;
  }
  .category-items a img
  {
    opacity: 0.6;
    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
  }
  .category-items a:hover img
  {
    opacity: 1;
  }
  .logo-top a{
    display: block;
    width: 100%;
    height: 100%;
  }
  .aioseo-breadcrumbs a
  {
color:#FFF;
  }
  .aioseo-breadcrumbs
  {
    text-align: left;
  }
  .breadcrumbs-area a
  {
    opacity: 0.3;
    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
  }
  .breadcrumbs-area a:hover
  {
    opacity: 1;

  }
  .aioseo-breadcrumb-separator
  {
    opacity: 0.3;
  }