@import url("https://fonts.googleapis.com/css?family=Yantramanav:100");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400");
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column; }

body {
  font-family: 'Montserrat', sans-serif;
  background: url("../images/bg-texture-tileable.png");
  background-repeat: repeat round; }

header {
  width: 100%;
  height: 100vh;
  margin: auto;
  background: url("../images/bg-img.jpg") no-repeat 50% 50%;
  background-size: cover;
  display: table;
  top: 0; }
  header .inner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    max-width: none; }
    header .inner .headings {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      padding-bottom: 15%; }
      header .inner .headings h1 {
        font-family: 'Yantramanav', sans-serif;
        font-size: 500%;
        font-weight: 100;
        color: #a32936;
        line-height: 70%;
        text-transform: lowercase; }
      header .inner .headings h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 100%;
        font-weight: 400;
        color: #b8606e;
        text-transform: uppercase; }

.delay {
  animation-delay: .3s; }

.logo {
  position: fixed;
  float: left;
  margin: 16px 36px;
  color: #fff;
  font-weight: bold;
  font-size: 24px; }

.menu-icon {
  width: 100%;
  background: #000;
  text-align: right;
  box-sizing: border-box;
  padding: 15px 24px;
  cursor: pointer;
  color: #fff;
  display: none; }

nav {
  position: fixed;
  width: 100%; }
  nav ul {
    list-style: none;
    background: rgba(0, 0, 0, 0);
    overflow: hidden;
    color: #fff;
    padding: 0;
    text-align: right;
    margin: 0;
    transition: all 1s; }
    nav ul li {
      display: inline-block;
      padding: 20px; }
      nav ul li a {
        text-decoration: none;
        color: #fff;
        font-size: 20px; }
        nav ul li a :focus {
          outline: none; }

nav.black {
  background: #000;
  transition: 1s;
  z-index: 2; }

.content {
  width: 90%;
  margin: 4em auto;
  font-size: 90%;
  line-height: 200%;
  text-align: justify;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto; }

#about {
  padding-bottom: 3%; }
  #about h2 {
    color: #a32936; }
  #about h4 {
    color: #b8606e; }

#work h2 {
  color: #a32936; }

#contact h2 {
  color: #a32936; }

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
  font-size: 80%; }
  .modal-overlay .modal {
    background-color: #efe1e9;
    margin: 0 auto;
    padding: 2% 5% 5% 5%;
    width: 80%;
    height: auto;
    text-align: center;
    border-bottom: 1px solid #d0d0d0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
    .modal-overlay .modal h1 {
      color: #a32936; }
    .modal-overlay .modal h3 {
      color: #b8606e; }
    .modal-overlay .modal .description {
      display: flex; }
      .modal-overlay .modal .description .column {
        flex: 50%;
        padding: 2%;
        text-align: left; }
    .modal-overlay .modal img {
      width: 50%;
      height: 50%; }

footer {
  width: 100%;
  height: 10%;
  background-color: #000;
  background-size: cover;
  text-align: center; }
  footer .links {
    margin: 0;
    padding: 2% 5% 1% 5%;
    font-size: 100%; }
    footer .links a {
      padding-left: 5%;
      text-decoration: none; }
      footer .links a img {
        width: 3%;
        height: 3%;
        border: 0;
        transition: all .3s; }
    footer .links a:hover {
      text-decoration: underline; }
      footer .links a:hover img:hover {
        -webkit-filter: sepia(50%);
        -moz-filter: sepia(50%);
        -o-filter: sepia(50%);
        -ms-filter: sepia(50%);
        filter: sepia(50%); }
  footer .copyright {
    margin: 0;
    padding: 0 5% 1% 5%;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 70%;
    color: white; }

@media (max-width: 900px) {
  .headings {
    padding-bottom: 30%; }
    .headings h1 {
      font-size: 400%; }
    .headings h3 {
      font-size: 130%; } }
@media (max-width: 768px) {
  .headings {
    padding-bottom: 40%; }
    .headings h1 {
      font-size: 300%; }
    .headings h3 {
      font-size: 110%; }

  p {
    font-size: 90%;
    line-height: 150%; } }
@media (max-width: 580px) {
  .logo {
    position: fixed;
    top: 0;
    margin-top: 16px; }

  nav ul {
    max-height: 0px;
    background: #000; }

  nav.black ul {
    background: #000; }

  .showing {
    max-height: 20em; }

  nav ul li {
    box-sizing: border-box;
    width: 100%;
    padding: 24px 0;
    text-align: center; }

  .menu-icon {
    display: block; }

  .headings {
    padding-bottom: 50%; }
    .headings h1 {
      font-size: 250%; }
    .headings h3 {
      font-size: 100%; }

  p {
    font-size: 70%;
    line-height: 150%; }

  .modal {
    padding: 0; }
    .modal h1 {
      font-size: 100%; }
    .modal .description {
      display: flex;
      flex-direction: column;
      padding: 0; }
      .modal .description h3 {
        font-size: 80%; }
      .modal .description li {
        font-size: 70%;
        line-height: 150%; } }
#work * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
#work .row {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
  clear: both; }
  #work .row img {
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0; }
#work .gallery {
  padding: 0 0 5% 0;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  #work .gallery :before, #work .gallery :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  #work .gallery ul {
    padding-top: 20px;
    position: relative; }
    #work .gallery ul li {
      float: left;
      margin: 0 0.8771929825%;
      overflow: hidden;
      margin-bottom: 20px;
      width: 23.2456140351%;
      position: relative; }
      #work .gallery ul li a {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        line-height: 0; }
      #work .gallery ul li a:before {
        position: absolute;
        width: 32px;
        height: 32px;
        top: 40%;
        left: 50%;
        margin: -14px 0 0 -16px;
        background: url(data:image/svg+xml;utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2017.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0A%3Csvg%20version%3D%221.1%22%0A%09%20id%3D%22svg2%22%20xmlns%3Adc%3D%22http%3A//purl.org/dc/elements/1.1/%22%20xmlns%3Acc%3D%22http%3A//creativecommons.org/ns%23%22%20xmlns%3Ardf%3D%22http%3A//www.w3.org/1999/02/22-rdf-syntax-ns%23%22%20xmlns%3Asvg%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Asodipodi%3D%22http%3A//sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22%20xmlns%3Ainkscape%3D%22http%3A//www.inkscape.org/namespaces/inkscape%22%20inkscape%3Aversion%3D%220.48.4%20r9939%22%20sodipodi%3Adocname%3D%22icon-fullscreen.svg%22%0A%09%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20960%20560%22%0A%09%20enable-background%3D%22new%200%200%20960%20560%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Csodipodi%3Anamedview%20%20borderopacity%3D%221%22%20pagecolor%3D%22%23ffffff%22%20bordercolor%3D%22%23666666%22%20objecttolerance%3D%2210%22%20gridtolerance%3D%2210%22%20guidetolerance%3D%2210%22%20showgrid%3D%22false%22%20fit-margin-top%3D%220%22%20fit-margin-left%3D%220%22%20inkscape%3Azoom%3D%227.375%22%20inkscape%3Acx%3D%22-5.1525424%22%20inkscape%3Acy%3D%2216%22%20id%3D%22namedview11%22%20inkscape%3Awindow-x%3D%22-8%22%20inkscape%3Awindow-y%3D%22-8%22%20fit-margin-right%3D%220%22%20inkscape%3Apageopacity%3D%220%22%20fit-margin-bottom%3D%220%22%20inkscape%3Awindow-width%3D%221366%22%20inkscape%3Awindow-height%3D%22706%22%20inkscape%3Awindow-maximized%3D%221%22%20inkscape%3Apageshadow%3D%222%22%20inkscape%3Acurrent-layer%3D%22svg2%22%3E%0A%09%3C/sodipodi%3Anamedview%3E%0A%3Cg%3E%0A%09%3Crect%20x%3D%22220%22%20y%3D%22260%22%20fill%3D%22%23FFFFFF%22%20width%3D%22536%22%20height%3D%2224%22/%3E%0A%3C/g%3E%0A%3Cg%3E%0A%09%3Crect%20x%3D%22476%22%20y%3D%224%22%20fill%3D%22%23FFFFFF%22%20width%3D%2224%22%20height%3D%22556%22/%3E%0A%3C/g%3E%0A%3C/svg%3E%0A) no-repeat;
        content: "";
        opacity: 0;
        z-index: 1;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        transition: all 0.3s linear; }
      #work .gallery ul li a:hover:before {
        top: 50%;
        opacity: 1; }
      #work .gallery ul li a:after {
        position: absolute;
        width: 100%;
        top: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        content: "";
        opacity: 0;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        transition: all 0.3s linear; }
      #work .gallery ul li a:hover:after {
        opacity: 1; }

/*# sourceMappingURL=index.css.map */
