@import url(http://fonts.googleapis.com/earlyaccess/droidsansethiopic.css);
/* 
Project Name: Tentative Collective Website
Client: Yaminay Chaudhri, Mehreen Murtaza
Author: A Kamran
*/
/******************************************
/* SETUP                   
/*******************************************/
/* Box Model Hack */
* {
  -moz-box-sizing: border-box;
  /* Firexfox */
  -webkit-box-sizing: border-box;
  /* Safari/Chrome/iOS/Android */
  box-sizing: border-box;
  /* IE */
}

/* Clearfix */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

/******************************************
/* BASE STYLES                   
/*******************************************/
/**/
audio,
canvas,
img,
video {
  vertical-align: middle;
}

html {
  height: 100%;
}

body {
  font-family: "Gill Sans", sans-serif;
  overflow-x: hidden;
}

ul {
  margin: 0;
}

em, i {
  letter-spacing: 1px;
}

.row {
  clear: both;
}

.content {
  padding: 3rem;
}
@media only screen and (max-width: 414px) {
  .content {
    padding: .8rem;
  }
}

#gradient {
  width: 100%;
  position: absolute;
  background: linear-gradient(180deg, #06f219, #027b0c, #f01272);
  background-size: 600% 600%;
  overflow: hidden;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 51% 0%;
  }

  50% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 51% 0%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 51% 0%;
  }

  50% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 51% 0%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 51% 0%;
  }

  50% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 51% 0%;
  }
}

main {
  background-color: #fff;
  margin: .75rem;
  position: relative;
  opacity: 1;
}

.wrapper {
  position: relative;
  opacity: 1;
  -webkit-transition: 1s ease opacity;
}
.wrapper .loading {
  overflow: hidden;
  opacity: 0;
}

.hide {
  display: none;
}

.show {
  opacity: 1;
}

a:visited {
  color: black;
}

:focus {
  outline: none;
}

@media only screen and (max-width: 414px) {
  .project {
    padding: 0;
    margin: 0;
  }
}

/******************************************
/* NAV                   
/*******************************************/
/**/
h1 {
  margin: 0;
}

h3 {
  font-family: "Gill Sans", sans-serif;
}

h4 {
  font-size: .8rem;
  border-bottom: 3px solid #333;
  width: 3.25rem;
}

h5 {
  font-size: 2rem;
  font-family: "Conv_NuptialScriptLTStd";
  margin: 0;
  padding: 1rem;
}

h6 {
  font-family: "Gill Sans", sans-serif;
  border-bottom: 2px solid #dd1b75;
  display: inline-block;
  margin-top: 1rem;
  letter-spacing: 1px;
  color: #dd1b75;
}

a {
  color: black;
}

.logo {
  width: 8rem;
  margin: 3% 4%;
  float: left;
  position: fixed;
  z-index: 1;
}
@media only screen and (max-width: 414px) {
  .logo {
    width: 5rem;
    position: absolute;
    margin: 5% 7%;
  }
}

#nav-trigger {
  position: absolute;
  top: 0;
  height: 100%;
}
#nav-trigger:hover .menu-text {
  opacity: 1;
  position: fixed;
}

.menu-text {
  opacity: 0;
  font-size: .75rem;
  color: #008f45;
  -webkit-transition: all 0.9s ease-in;
  -moz-transition: all 0.9s ease-in;
  -ms-transition: all 0.9s ease-in;
  -o-transition: all 0.9s ease-in;
  transition: all 0.9s ease-in;
  z-index: 90;
  text-transform: uppercase;
  position: relative;
  margin: 5% 92%;
}
@media only screen and (max-width: 414px) {
  .menu-text {
    display: none;
  }
}

.eye {
  float: right;
  width: 3.5rem;
  margin: 3% 91%;
  position: fixed;
  z-index: 100;
  color: black;
}
@media only screen and (max-width: 414px) {
  .eye {
    width: 2.25rem;
    margin: 6% 83%;
    position: fixed;
  }
}

.menu-list {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: hidden;
  max-height: 100%;
  /* approximate max height */
  transition-property: all;
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 12px;
  -moz-background-size: 100% 12px;
  background-size: 100% 12px;
}
.menu-list ul {
  padding-top: 15rem;
  margin: .75rem;
  height: 96%;
}
@media only screen and (max-width: 414px) {
  .menu-list ul {
    padding-top: 35%;
  }
}
.menu-list li {
  list-style: none;
  display: inline;
  position: relative;
  color: white;
  font-family: "Gill Sans", sans-serif;
  font-size: 2rem;
  letter-spacing: .15rem;
  text-transform: uppercase;
}
.menu-list li:hover {
  border-bottom: 5px solid #dd1b75;
  -webkit-transition: border-color 500ms ease;
  -moz-transition: border-color 500ms ease;
  -o-transition: border-color 500ms ease;
  transition: border-color 500ms ease;
  color: #dd1b75;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .menu-list li {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .menu-list li {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 414px) {
  .menu-list li {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}
.menu-list .about {
  margin: 7% 17%;
}
.menu-list .work {
  margin: 19% 43%;
}
.menu-list .contact {
  margin: 32% 75%;
}

.white {
  color: snow;
}

.menu-nav {
  overflow: hidden;
  width: 100%;
  z-index: 90;
}

.menu-list {
  z-index: 90;
  transition: 0.5s cubic-bezier(0, 1, 0.5, 1);
  transform: translateY(0);
  height: 100vh;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 12px;
  -moz-background-size: 100% 12px;
  background-size: 100% 12px;
  background: linear-gradient(180deg, #06f219, #027b0c, #f01272);
  background-size: 600% 600%;
  overflow: hidden;
  -webkit-animation: AnimationName 5s ease infinite;
  -moz-animation: AnimationName 5s ease infinite;
  animation: AnimationName 5s ease infinite;
  @-webkit-keyframes AnimationName {
    0% {
      background-position: 51% 0%;
    }

    50% {
      background-position: 50% 100%;
    }

    100% {
      background-position: 51% 0%;
    }
}

  @-moz-keyframes AnimationName {
    0% {
      background-position: 51% 0%;
    }

    50% {
      background-position: 50% 100%;
    }

    100% {
      background-position: 51% 0%;
    }
}

  @keyframes AnimationName {
    0% {
      background-position: 51% 0%;
    }

    50% {
      background-position: 50% 100%;
    }

    100% {
      background-position: 51% 0%;
    }
}

}

.menu-list.opened {
  /* visible */
  -webkit-transform: translate(0, 0%);
  -moz-transform: translate(0, 0%);
  -ms-transform: translate(0, 0%);
  transform: translate(0, 0%);
}

.closed {
  /* completely offscreen */
  transform: translateY(-100%);
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

/******************************************
/* OVERLAY                   
/*******************************************/
/**/
.overlay {
  position: fixed;
  pointer-events: none;
  left: 0;
  z-index: 2;
  width: 100%;
  top: 0;
  height: 80rem;
}

.overlay .overlay-image {
  opacity: 0;
  -webkit-transition: 0.25s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0.15s;
  -moz-transition: 0.25s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0.15s;
  -ms-transition: 0.25s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0.15s;
  -o-transition: 0.25s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0.15s;
}

.overlay .overlay-image.zoom {
  -webkit-transition: 0.5s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0s;
  -moz-transition: 0.5s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0s;
  -ms-transition: 0.5s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0s;
  -o-transition: 0.5s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0s;
  -webkit-transform: scale(4, 4);
  -ms-transform: scale(4, 4);
  -o-transform: scale(4, 4);
  transform: scale(4, 4);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .overlay .overlay-image.zoom {
    -webkit-transform: scale(1, 4);
    -ms-transform: scale(1, 4);
    -o-transform: scale(1, 4);
    transform: scale(1, 4);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .overlay .overlay-image.zoom {
    -webkit-transform: scale(1, 4);
    -ms-transform: scale(1, 4);
    -o-transform: scale(1, 4);
    transform: scale(1, 4);
  }
}
@media only screen and (max-width: 414px) {
  .overlay .overlay-image.zoom {
    -webkit-transform: scale(1, 4);
    -ms-transform: scale(1, 4);
    -o-transform: scale(1, 4);
    transform: scale(1, 4);
  }
}

.overlay.visible .overlay-image {
  opacity: 1;
}

.points {
  position: absolute;
  height: 0;
  left: 0;
  top: 0;
  z-index: 10;
}

.point {
  color: #dd1b75;
  font-size: 1.5rem;
  z-index: 999;
  position: absolute;
  cursor: pointer;
  pointer-events: all;
  width: 40px;
  height: 40px;
  -webkit-transition: .5s ease-all;
  opacity: 1;
  top: 100px;
  left: 100px;
}
.point .inner {
  position: relative;
  text-align: center;
  transform: scale(0.66);
  -webkit-transition: .25s ease-all;
  box-sizing: inherit;
}

.point.highlight {
  opacity: 1;
}

.point.highlight .inner {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.overlay-image {
  height: 200%;
  width: 200%;
  position: fixed;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .overlay-image img {
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .overlay-image img {
    height: 100%;
  }
}
@media only screen and (max-width: 414px) {
  .overlay-image img {
    height: 100%;
  }
}

.caption {
  font-size: 1.25rem;
  text-align: center;
  position: fixed;
  opacity: 0;
  z-index: 2;
  font-family: "Gill Sans", sans-serif;
  -webkit-transition: .25s ease all 0s;
  margin: 20%;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  color: snow;
  font-weight: normal;
  width: 60%;
  white-space: pre-line;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .caption {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .caption {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 414px) {
  .caption {
    top: 25%;
  }
}

.caption.visible {
  -webkit-transition: .25s ease all .5s;
  -moz-transition: .25s ease all .5s;
  -ms-transition: .25s ease all .5s;
  -o-transition: .25s ease all .5s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  white-space: pre-line;
}

/******************************************
/* OVERLAY-URDU  literally the worst patch fix ugh hate this copy pasting                
/*******************************************/
/**/
.overlay-urdu {
  position: fixed;
  pointer-events: none;
  left: 0;
  z-index: 2;
  width: 100%;
  top: 0;
  height: 80rem;
}

.overlay-urdu .overlay-image-urdu {
  opacity: 0;
  -webkit-transition: 0.25s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0.15s;
  -moz-transition: 0.25s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0.15s;
  -ms-transition: 0.25s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0.15s;
  -o-transition: 0.25s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0.15s;
}

.overlay-urdu .overlay-image-urdu.zoom {
  -webkit-transition: 0.5s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0s;
  -moz-transition: 0.5s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0s;
  -ms-transition: 0.5s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0s;
  -o-transition: 0.5s cubic-bezier(0.72, 0.04, 0.49, 0.7) all 0s;
  -webkit-transform: scale(4, 4);
  -ms-transform: scale(4, 4);
  -o-transform: scale(4, 4);
  transform: scale(4, 4);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .overlay-urdu .overlay-image-urdu.zoom {
    -webkit-transform: scale(1, 4);
    -ms-transform: scale(1, 4);
    -o-transform: scale(1, 4);
    transform: scale(1, 4);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .overlay-urdu .overlay-image-urdu.zoom {
    -webkit-transform: scale(1, 4);
    -ms-transform: scale(1, 4);
    -o-transform: scale(1, 4);
    transform: scale(1, 4);
  }
}
@media only screen and (max-width: 414px) {
  .overlay-urdu .overlay-image-urdu.zoom {
    -webkit-transform: scale(1, 4);
    -ms-transform: scale(1, 4);
    -o-transform: scale(1, 4);
    transform: scale(1, 4);
  }
}

.overlay-urdu.visible .overlay-image-urdu {
  opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .overlay-image-urdu img {
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .overlay-image-urdu img {
    height: 100%;
  }
}
@media only screen and (max-width: 414px) {
  .overlay-image-urdu img {
    height: 100%;
  }
}

.points-urdu {
  position: absolute;
  height: 0;
  left: 0;
  top: 0;
  z-index: 10;
}

.point-urdu {
  color: #dd1b75;
  font-size: 1.5rem;
  z-index: 999;
  position: absolute;
  cursor: pointer;
  pointer-events: all;
  width: 40px;
  height: 40px;
  -webkit-transition: .5s ease-all;
  opacity: 1;
  top: 100px;
  left: 100px;
}
.point-urdu .inner-urdu {
  position: relative;
  text-align: center;
  transform: scale(0.66);
  -webkit-transition: .25s ease-all;
  box-sizing: inherit;
}

.point-urdu.highlight {
  opacity: 1;
}

.point-urdu.highlight .inner-urdu {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.overlay-image-urdu {
  height: 400%;
  width: 200%;
  position: fixed;
}

.caption-urdu {
  font-size: 1.75rem;
  text-align: center;
  position: fixed;
  opacity: 0;
  z-index: 2;
  font-family: 'HussainiNastaleeqRegular';
  line-height: 3rem;
  -webkit-transition: .25s ease all 0s;
  margin: 20%;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  color: snow;
  font-weight: normal;
  width: 60%;
  white-space: pre-line;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .caption-urdu {
    top: 30%;
    margin: 0 auto;
    width: 77%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .caption-urdu {
    top: 30%;
    margin: 0 auto;
    width: 50%;
  }
}
@media only screen and (max-width: 414px) {
  .caption-urdu {
    top: 30%;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 2.5rem;
    width: 80%;
  }
}

.caption-urdu.visible {
  -webkit-transition: .25s ease all .5s;
  -moz-transition: .25s ease all .5s;
  -ms-transition: .25s ease all .5s;
  -o-transition: .25s ease all .5s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  white-space: pre-line;
}

/******************************************
/* FOOTER                   
/*******************************************/
/**/
footer {
  padding: 2rem;
  text-align: center;
  vertical-align: middle;
  position: relative;
  height: 17rem;
  clear: both;
}
footer p {
  color: #dd1b75;
  margin: -3rem;
  font-size: 1.25rem;
  font-family: "Gill Sans", sans-serif;
  position: relative;
}
@media only screen and (max-width: 414px) {
  footer p {
    font-size: .9rem;
    margin: -2.25rem;
  }
}
footer li {
  display: inline-block;
}

.email {
  text-align: center;
}
.email img {
  filter: "progid:DXImageTransform.Microsoft.Dropshadow (OffX=12, OffY=12,
    Color='#444')";
  filter: url(#drop-shadow);
  -webkit-filter: drop-shadow(-1px 6px 0px rgba(0, 0, 0, 0.6));
  filter: drop-shadow(-1px 6px 0px rgba(0, 0, 0, 0.6));
  transition: 0.5s ease-in-out;
}
.email:hover img {
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  -webkit-filter: drop-shadow(-1px 6px 0px rgba(0, 0, 0, 0));
}

.socials {
  margin: 8% 0;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .socials {
    margin-top: 14%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .socials {
    margin-top: 10%;
  }
}
@media only screen and (max-width: 414px) {
  .socials {
    margin-top: 35%;
  }
}
.socials .sprite {
  background: url("../img/sprites.png") no-repeat;
}
.socials .ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.socials .socials-icon {
  display: block;
  width: 52px;
  height: 52px;
  float: left;
}
.socials .facebook {
  background-position: 0 -2px;
}
.socials .facebook:hover {
  background-position: 0 -56px;
}
.socials .vimeo {
  background-position: -50px 0;
}
.socials .vimeo:hover {
  background-position: -50px -56px;
}

.credits {
  font-size: .6rem;
  text-align: center;
  opacity: .8;
  color: white;
}
.credits a {
  color: white;
}
.credits a:hover {
  border-bottom: 1px solid white;
}
@media only screen and (max-width: 414px) {
  .credits {
    margin-top: 2rem;
  }
}

/******************************************
/* PROJECT THUMBNAIL                   
/*******************************************/
/**/
.first-project {
  margin-top: -1%;
}
@media only screen and (max-width: 414px) {
  .first-project {
    margin-top: 33%;
  }
}

.thumbnail {
  float: left;
  padding-bottom: 4rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .thumbnail {
    max-width: 36rem;
  }
}
@media only screen and (max-width: 414px) {
  .thumbnail {
    float: none;
    padding-bottom: 0;
  }
}

.projections {
  margin: 1rem 0rem;
}
@media only screen and (max-width: 414px) {
  .projections {
    margin: 3rem 0;
  }
}
.projections .blurb {
  margin: 2rem 33rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .projections .blurb {
    margin: 3.5rem 24rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .projections .blurb {
    margin: 2rem 18rem;
  }
}
@media only screen and (max-width: 414px) {
  .projections .blurb {
    margin: 5% 0%;
    position: relative;
  }
}

.mkmc {
  margin: 1rem 0rem;
}
.mkmc .blurb {
  margin: 2rem -14rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .mkmc .blurb {
    margin: 3.5rem -7rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .mkmc .blurb {
    margin: 3.5rem -7rem;
  }
}
@media only screen and (max-width: 414px) {
  .mkmc .blurb {
    margin: 5% 0;
  }
}

.beyond-walls h3 {
  word-spacing: 7px;
}
.beyond-walls .blurb {
  margin: -38rem 35rem;
}

.blurb {
  width: 29rem;
  font-family: 'Gill Sans';
  border: 6px solid black;
  background-color: snow;
  position: absolute;
  padding: 3rem;
  float: right;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .blurb {
    width: 23rem;
  }
}
@media only screen and (max-width: 414px) {
  .blurb {
    padding: 1rem;
    position: relative;
    width: 100%;
    float: none;
  }
}
.blurb h3 {
  font-family: "Conv_NuptialScriptLTStd";
  font-size: 2rem;
  line-height: 2rem;
}
@media only screen and (max-width: 414px) {
  .blurb h3 {
    font-size: 1.5rem;
  }
}
.blurb p {
  font-size: 1rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .blurb p {
    font-size: .75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .blurb p {
    font-size: .75rem;
  }
}
@media only screen and (max-width: 414px) {
  .blurb p {
    font-size: .75rem;
  }
}
.blurb .date {
  font-size: .80rem;
}

.view {
  color: black;
  font-size: .75rem;
  font-weight: bold;
  border-bottom: 2px solid black;
  padding: 1rem;
}
.view:hover {
  color: #dd1b75;
  border-bottom: 1px solid #dd1b75;
  transition: .25s all ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .view {
    padding: 0 0 0.75rem;
    border-bottom: 1px solid black;
  }
}
@media only screen and (max-width: 414px) {
  .view {
    padding: 0 0 0.75rem;
    border-bottom: 1px solid black;
  }
}
