@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(./fonts/MaterialIconsRound-Regular.otf); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIconsRound-Regular'),
    url(./fonts/MaterialIconsRound-Regular.otf) format('truetype');
  font-display: swap;
}

body {
 margin: 0;
 font-family: Arial, Helvetica, sans-serif;
 background-color: rgba(0 ,0, 0, 1);
}

background {
  position: fixed;
  top:0;
  left:0;
  z-index: -10;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

background div.bgTexture {
  z-index: -1;
  background: url('../images/bgtexture.png') repeat;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top:0;
  left:0;
}

background video {
  position: absolute;
  z-index: -2;
  min-height: 100vh;
  object-fit: fill;
  min-width: 100vw;
}

header {
  background-color:rgba(0 ,0, 0, 1);
  color: rgba(255, 255, 255, 1);
  display: grid;
  grid-template-columns: 1fr 5fr 1fr;
  position: fixed;
  top:0;
  left:0;
  width: 100vw;
  z-index: 101;
  box-shadow: 0 0 4px rgba(0 ,0, 0, 1);
}

#nav-toggle, .burger-menu {
  display: none;
}

@media screen and (min-width: 769px) {
  nav ul.menu li {
    padding-right: 5em;
  }

  nav ul.menu li a {
    font-size: .95em;
  }

  article {
    margin-bottom: 75vh;
    min-height:80vh;
  }
  .columns-3 {
    display: grid;
    grid-gap: 5%;
    grid-template-columns: repeat(3, 1fr);
  }
  .columns-2 {
    display: grid;
    grid-gap: 5%;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery img {
    max-width: 15%;
    margin: 2em;
    padding: 1em;
  }
}

@media screen and (max-width: 769px) {
  .burger-menu {
    display: flex;
    height:64px;
    justify-content: center;
    align-items: center;
  }

  nav ul.menu {
    display: none;
  }

  #nav-toggle:checked ~ ul.menu {
    display: grid;
    grid-row: 2;
  }
  
  nav ul.menu li {
    padding-right: 0px;
  }

  nav ul.menu li a {
    font-size: 2em;
  }

  body {
    font-size: .70em;
  }

  article {
    margin-bottom: 25vh;
    min-height: 50vh;
  }
  .columns-3, .columns-2  {
    display: block;
  }

  .gallery img {
    max-width: 40%;
    margin: 1em;
    padding: .5em;
  }
}

.burger-menu {
  width: 40px;
}

nav {
  grid-column: 2;
  display: grid;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

nav ul li {
  height:64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul.menu li {
  text-align: center;
}

nav ul.menu li a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: .3s all ease-in-out;
}

nav a:hover {
  opacity: .7;
}

nav ul.social {
  direction: rtl;
  grid-column:2;
} 

nav ul.social li {
  padding-left: .5em;
  padding-right: .5em;
}

nav ul.social li a img {
  height:40px;
}

article {
  grid-column: 2;
  padding: 0px 14vw 3em;
  margin-top: 10vh;
}

article:last-child {
  margin-bottom: 2vh;
}

article.header {
  color:  rgba(255, 255, 255, 1);
  padding-top: 20vh;
}

article.light {
  background-color: rgba(255, 255, 255, 1);
  color: rgb(47, 46, 46);
}

article.dark {
  background-color:rgba(0, 0, 0, 1);
  color:  rgba(255, 255, 255, 1);
}

h1 {
  font-size: 6.5em;
  line-height: .9em;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: normal;
}

h2 {
  font-size: 2.2em;
  padding-top: 124px;
  text-align: center;
  text-transform: uppercase;
  font-weight: normal;
}

h3 {
  letter-spacing: 0.19em;
  font-size: 1.6em;
  text-transform: uppercase;
  margin-top: 0;
  font-weight: normal;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  font-weight: normal;
  font-size: 1.5em;
  text-align: center;
}

address {
  font-style: normal;
  font-size: 1.15em;
}

address location, address email, address phone, address operating {
  display:block;
  margin-bottom:2em;
}

address location street {
  display: block;
}

address location locality, address location region {
  margin-right: .2em;
}

address operating day {
  display:block;
}

address email a {
  text-decoration: none;
  color: inherit;
}

footer {
  color: rgba(255, 255, 255, 1);
  padding:2em;
  font-size: .9em;
  text-align: center;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.columns-2 {
  margin: 0 20%;
}

.columns-3 {
  margin: 0 5%;
}

.columns-3 aside {
  text-align: center;
}

.columns-3 aside p {
  padding: 0 1em;
  font-size: 1.1em;
}

.separator {
  transform-origin: center 1.5px;
  width: 36px; 
  height: 5px; 
  left: 473px;
  position: relative;
  opacity: 1; 
  box-sizing:border-box; 
  border-top:3px solid;
  margin: 0px 0px 26px calc((100% - 980px) * 0.5);
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

.separator.white {
  border-color: rgba(255, 255, 255, 1);
}

.separator.black {
  border-color: rgba(47, 46, 46, 1);
}

.capitalise {
  text-transform: uppercase;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

.material-icons.md-48 {
  font-size: 48px;
}

.material-icons.md-128 {
  font-size: 128px;
}

.material-icons.md-192 {
  font-size: 192px;
}

.bigtext {
  font-size: 2em;
}

.gallery {
  text-align: center;
}

.gallery img {
  max-height: 7.5vh;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: .3s all ease-in-out;
  z-index: 99;
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(255, 255, 255, 1);
  position: relative;
}

.gallery img:hover {
  transform: scale(2.5);
  filter: none;
  -webkit-filter: none;
  z-index: 100;
  border-top: 1px solid #f6f6f6;
  border-left: 1px solid #f6f6f6;
  box-shadow: .2em .2em .2em rgba(47, 46, 46, 1);
  
} 