@font-face {
  font-family: 'trajan';
  src: url('../font/TrajanPro-Regular_0.ttf');
}

@font-face {
  font-family: 'futura';
  src: url('../font/futura.ttf');
}

* {
  font-family: 'trajan', times, sans-serif;

}

body {
  background-color: black;
}

p {
  font-family: 'futura';
}

h3 {
  font-family: 'futura';
}

a:hover {
  text-decoration: none;
}

nav li {
  float: left;
  list-style: none;
  width: 15%;
  text-align: center;
  margin-top: 12px;
}

nav li:nth-of-type(4) {
  width: 20%;
}

nav li:nth-of-type(3) {
  width: 20%;
}

.NavLogo {
  top: 0px;
  position: absolute;
  height: 100%;
  width: 150px;
  background: url(../images/LogoSingle.png) no-repeat;
  background-position: center;
    background-size: contain;
    z-index: 99;
}

.MobileHide {
  max-width: 1200px;
}


#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 15px;
}

#nav-icon3 span:nth-child(4) {
  top: 30px;
}

#nav-icon3.open span:nth-child(1) {
  top: 15px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}


 #nav-icon3 {
   display: none;
   top: 10px;
   right: 15px;
   width: 40px;
 height: 45px;
 position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

 #nav-icon3 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

header {
  top: 0px;
  position: fixed;
  width: 100%;
  height: 70px;
  z-index: 99;
  background: rgba(0,0,0,1);
  background: -moz-linear-gradient(top, rgba(0,0,0,1) 26%, rgba(0,0,0,0.55) 59%, rgba(255,255,255,0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(26%, rgba(0,0,0,1)), color-stop(59%, rgba(0,0,0,0.55)), color-stop(100%, rgba(255,255,255,0)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,1) 26%, rgba(0,0,0,0.55) 59%, rgba(255,255,255,0) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,1) 26%, rgba(0,0,0,0.55) 59%, rgba(255,255,255,0) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,1) 26%, rgba(0,0,0,0.55) 59%, rgba(255,255,255,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,1) 26%, rgba(0,0,0,0.55) 59%, rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=0 );
}

header a {
  color: #D4AF37;
  font-family: 'futura';
}

header a:hover {
  color: white;
  text-decoration: none;
}

nav ul {
  margin-left: 150px;
}

.IndexFull {
  border-bottom: black 10px solid;
  overflow: hidden;
  position: relative;
  width: 100vw;
  height: 100vh;
}



.IndexText {

      color: white;
      position: absolute;
      margin-top: 20vh;
      width: 300px;
      height: 200px;
      left: 50%;
      margin-left: -150px;
      top: 35%;
      margin-top: -100px;
      text-align: center;
      z-index: 0;
  }


.HoveredAnimate {
  background: rgba(4,0,4, 0.6);
  width: 100%;
  height: 130%;
  opacity: 0.01;
  transform: translateY(-30px);
}

.HoveredAnimate:hover {
  opacity: 1;
  transform: translateY(0px);
  transition: all 1s ease-in-out;
}

.btn-Block  h6 {
  font-family: 'futura';
  position: relative;
  z-index: 1;
  margin-top: 5px;
}

.btn-Block  {
    color: white;
    position: absolute;
    left: 50%;
    margin-left: -150px;
    padding-top: 12px;
    height: 50px;
    width: 300px;
    border: 2.5px solid #D4AF37;
    overflow: hidden;
    z-index: 2;
}

.btn-Block:hover  {
  border: 2.5px solid black;
  cursor: pointer;
  color: black;
}

.btn-Block:after  {
  top:0;
  transform: skewx(-20deg);
  content: '';
  background: #D4AF37;
  position: absolute;
  height: 100%;
  width: 150%;
  margin-left: 160px;
  z-index: 0;
  transition: transform 0.3s ease-out;
}

.btn-Block:hover::after  {
  content: '';
  transform: translateX(-320px) skewx(-20deg);
  transition: transform 0.3s ease-in;
}


.Index1 {
  background: url(../images/LogoBkgrd1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  height: 80vh;
  overflow: visible;
}

#FullBlue {
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
}

.Index1 h1 {
  width: 100%;
  height: 300px;
    text-align: center;
    position: absolute;
    top: 50%;
    margin-top: -150px;
    left: 0;
    margin-left: 0;
    vertical-align: middle;
    color: white;
}

.Diamond {
  background: url(../images/Tilelogo.png) no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  position: relative;
  height: 150px;
  width: 100%;
}

.Index2 {
  background: url(../images/projects/ElSereno/Opening-Finish/LABDetail2.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.Index3 {
  background: url(../images/projects/BenitoPark/MaywoodFinish/FinishPix/LPFrg34View.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.Index32 .LeftFull {
  float: left;
  width: 50%;
  height: 100%;
  background: url(../images/projects/SouthPasadenaLibrary/1ColumnFrnt.jpg);
  background-position: center;
  background-size: cover;
}

.Index32 .RightFull {
  position: relative;
  left: 50%;
  width: 50%;
  height: 100%;
  background: #7B2A3A;
}

.FrenchCover {
  background: url(../images/projects/FrenchDoorsnSteps/FrenchDoors/Entry2.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.ShowerCover {
  background: url(../images/projects/FrenchDoorsnSteps/OutdoorShower/3ShowerDetail.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.LSCover {
  background: url(../images/projects/LosFelisCharter/Detail3.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.SPCover {
  background: url(../images/projects/SouthPasadenaLibrary/10IMG_4351.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
  z-index: 0;
}

.HeartCover {
  background: url(../images/projects/HeartBoxPics/5Pig.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.SKitchenCover {
  background: url(../images/projects/Saban_Kitchen/6SK-Lft-Close.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.BKitchenCover {
  background: url(../images/projects/BnBKitchen/Kitchen_BacknRtSide.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.AlhambraCover {
  background: url(../images/projects/AlhambraLibraryPage/Enter.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.CamCover {
  background: url(../images/projects/CamarilloLibrary/BenchLongshot_LftColumn.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.fireplaceCover {
  background: url(../images/projects/Fireplace/BeserraSAMA08-Details.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.fountainCover {
  background: url(../images/projects/Fountain/Cover.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.MovieCover {
  background: url(../images/projects/MovieBox/cover.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.TimmonsCover {
  background: url(../images/projects/Timmons/cover.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}


.Index32 .RightFull h1 {
  position: absolute;
  margin-top: 0;
}

.RightFull .btn-Block {
    margin-top: 50%;
  }


.Index4 {
  background: url(../images/projects/MosaicMarathon/2MMInstall/IMG15.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}


/* ------- Portfolio page ------*/

.PortfolioContain {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
}

.PortfolioColumn {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
min-height: 600px;
  position: relative;
  display: block;
  color: white;
}



.PortfolioColumn:nth-of-type(odd)  {
  background: #7B2A3A;
}

.PortfolioColumn:nth-of-type(even)  {
  background: #21354C;
}

.PortfolioColumn .left {
  float: left;
width: 50%;
height: 100%;
position: absolute;
}

.PortfolioColumn .right {
    left: 50%;
    width: 50%;
    height: 100%;
    position: relative;
    padding: 45px;
}

.PortfolioColumn:nth-of-type(n+7) .right {
    left: 50%;
    width: 50%;
    height: 300px;
    position: absolute;
    padding: 45px;
    padding-top: 0;
    top: 50%;
    margin-top: -150px;
}

.btn-portfolio  h6 {
      color: white;
  position: relative;
  z-index: 1;
  margin-top: 5px;
  font-family: 'futura';
}

.PortfolioColumn .right h1{
  color:#D4AF37;
  text-align: center;
}

.btn-portfolio  {
  text-align: center;
    color: white;
    position: relative;
    left: 50%;
    margin-left: -150px;
    padding-top: 12px;
    height: 50px;
    width: 300px;
    border: 2.5px solid white;
    overflow: hidden;

}

.btn-portfolio:hover  {
  border: 3px solid white;
  cursor: pointer;
  color: white;
   z-index: 2;
   text-decoration: none;
}

.btn-portfolio:after  {
  top:0;
  transform: skewx(-20deg);
  content: '';
  background: #D4AF37;
  position: absolute;
  height: 100%;
  width: 150%;
  margin-left: 160px;
  z-index: 0;
  transition: transform 0.3s ease-out;
}

.btn-portfolio:hover::after  {
  content: '';
  transform: translateX(-320px) skewx(-20deg);
  transition: transform 0.3s ease-in;
    z-index: 0;
}

#MosaicImg {
  background: url(../images/projects/MosaicMarathon/2MMInstall/IMG11.jpg) center;
}

#FrenchDoorImg {
  background: url(../images/projects/FrenchDoorsnSteps/Step/IMG5.jpg) center;
}

#LZImg {
  background: url(../images/projects/LosFelisCharter/CompleteEntry2.jpg) left;
  background-size: cover;
}

#BenitoImg {
  background: url(../images/projects/BenitoPark/MaywoodFinish/FinishPix/9ClimbingLegSpine.jpg) center;
  background-size: cover;
}

#SerenoImg {
  background: url(../images/projects/ElSereno/Opening-Finish/LAB-CenterLoRez.jpg) center;
  background-size: cover;
}

#SPImg {
  background: url(../images/projects/SouthPasadenaLibrary/9SPasColumn.jpg) center;
  background-size: cover;
}

#SabanImg {
  background: url(../images/projects/Saban_Kitchen/3SK-Front.jpg) center;
  background-size: cover;
}

#OShowerImg {
  background: url(../images/projects/FrenchDoorsnSteps/OutdoorShower/2IMG_3169.jpg) center;
  background-size: cover;
}

#HeartBoxImg {
  background: url(../images/projects/HeartBoxPics/7Cleo.jpg) center;
  background-size: cover;
}

#BnbImg {
  background: url(../images/projects/BnBKitchen/KitchenLftDetail.jpg) center;
  background-size: cover;
}

#AlhambraImg {
  background: url(../images/projects/AlhambraLibraryPage/2.jpg) center;
  background-size: cover;
}

#CamImg {
  background: url(../images/projects/CamarilloLibrary/ColumnDetailTopRt.jpg) center;
  background-size: cover;
}

#fireplaceImg {
  background: url(../images/projects/Fireplace/FPDetailTopLft.jpg) center;
  background-size: cover;
}

#fountainImg {
  background: url(../images/projects/Fountain/FountainAlt.jpg) center;
  background-size: cover;
}

#movieImg {
  background: url(../images/projects/MovieBox/MovieBoxTop.jpg) center;
  background-size: cover;
}

#TimmonImg {
  background: url(../images/projects/Timmons/Clsup1.jpg) center;
  background-size: cover;
}

.SingleProject {
    position: relative;
    height: 300px;
    width: 24%;
    float: left;
    text-align: center;
    margin: .5%;
}


.SingleProject .btn-portfolio  {
  width: 100%;
  left: 0;
    margin-left: 0;
}

.PortSingleImg {
  height: 400px;
  width: 250px;
  position: relative;
  margin: 0 auto;
}

iframe {
  height: 315px;
  width: 560px;
}


/* ------- End of Portfolio page ------*/

/* ------- Project pages ------*/
.ProjectDesc {
  width: 100%;
  height: 100%;
  color: white;
  position: relative;
  text-align: center;
  top: 40%;
}

.ProjectDesc p {
  position: relative;
  margin: 0 auto;
  width: 600px;
  font-size: 16px;
}

.Imgfix {
  background-attachment: fixed;
}

.MobileProjectGallery {
    height: 800px;
    position: relative;
}
/* ------- End of Project pages ------*/
/* ------- Classes and Workshops page ------*/

.ClassHeadImg {
  border-bottom: black 10px solid;
  overflow: hidden;
  position: relative;
  width: 100vw;
  height: 50vh;
  background: url(../images/projects/LosFelisCharter/ZzWithMyClass.jpg);
  background-size: cover;
  background-position: center;

}

#CWContainer {
  background: rgba(33, 53, 76, 1) ;
  color: white;
  font-family: ariel;
  height: 100%;
  max-width: 1024px;
  position: relative;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  margin-bottom: 10px;
margin-top: 10px;
}

#CWContainer {
  font-family: 'futura';
}


#CWContainer .btn-portfolio, #CWContainer h1 {

    margin-bottom: 20px;

}
/* ------- End of Classes and Workshops page ------*/

/* -------  Artist Statement page ------*/
  .ArtistStatmentHeader {
    height: 50vh;
    width: 100vw;
    text-align: center;
    background: url(../images/projects/LosFelisCharter/Detail2.jpg);
    background-size: cover;
    background-position: center;
    border-bottom: black 10px solid;
}
  .JolinoImg {
    float: left;
    margin-right: 40px;
    margin-bottom: 40px;
    position: relative;
    background: url(../images/jolinoHeadshot.jpg);
    background-position: center;
    height: 306px;
    width: 440px;
  }

    .ArtistStatmentHeader h1 {
    color: gold;
    position: relative;
    top: 50%;
    margin-top: -25px;
}

  .Statement {
    height: auto;
    width: 100%;
    max-width: 1200px;
    background: transparent;
    padding: 45px;
    position: relative;
    margin: 0 auto;
    color: white;
    border-bottom: 2px solid gold;
  }
/* ------- End of Artist Statement page ------*/

/* -------  Press page ------*/

.PressFull {
  height: 50vh;
  width: 100vw;
  text-align: center;
  background: url(../images/projects/LosFelisCharter/Detail6.jpg);
  background-size: cover;
  background-position: center;
  border-bottom: black 10px solid;
}

.PressFull h1 {
  color: gold;
  position: relative;
  top:50%;
  margin-top: -25px;
}

#PressContain  {
  margin-top: 20px;
}

#PressContain a {
    width: 390px;
    float: left;
    position: relative;
    margin-bottom: 60px;
    margin: 5px;
}
 .PressImage {
  height: 500px;
  width: 100%;
  background-color: red;
  position: relative;

}


#PressContain a  {
  color: gold;
  text-align: center;
}


.PortfolioContain a:nth-of-type(1)  .PressImage{
  background: url(../images/press/groutine/cover.jpg);
  background-size: cover;
  border: 1px solid white;
}

.PortfolioContain a:nth-of-type(2)  .PressImage{
  background: url(../images/press/Guild-Source-Cover.jpg);
  background-size: cover;
  border: 1px solid white;
}

.PortfolioContain a:nth-of-type(3)  .PressImage{
  background: url(../images/press/SAMA2016/Logo.jpg);
  background-size: cover;
  background-position: top;
}

.PortfolioContain a:nth-of-type(4)  .PressImage{
  background: url(../images/press/TPL/TPL-Cover.jpg);
  background-size: cover;
  background-position: top;
}

.PortfolioContain a:nth-of-type(5)  .PressImage{
  background: url(../images/press/LATimes/Cover.jpg);
  background-size: cover;
  background-position: top;
}

.PortfolioContain a:nth-of-type(6)  .PressImage{
  background: url(../images/press/MAN/Cover.jpg);
  background-size: cover;
  background-position: top;
}

.PortfolioContain a:nth-of-type(7)  .PressImage{
  background: url(../images/press/CurbAppeal/CurbAppealCover.jpg);
  background-size: cover;
  background-position: top;
}

.PortfolioContain a:nth-of-type(8)  .PressImage{
  background: url(../images/press/AlhambraCover.jpg);
  background-size: cover;
  background-position: top;
}

.PortfolioContain a:nth-of-type(9)  .PressImage{
  background: url(../images/press/MetroCover.jpg);
  background-size: cover;
  background-position: top;
}

.PortfolioContain a:nth-of-type(10)  .PressImage{
  background: url(../images/press/SunsetCover.jpg);
  background-size: cover;
  background-position: top;
}

.PortfolioContain a:nth-of-type(11)  .PressImage{
  background: url(../images/press/WhoCover.jpg);
  background-size: cover;
  background-position: top;
}

/* -------  End of Press page ------*/

.BlackOver {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0, 0.8);
}

.ContactFull {
  height: 100vh;
  position: absolute;
  background: url(../images/projects/ElSereno/Opening-Finish/LABDetail2.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.ContactContain {
  top: 200px;
  height: 500px;
  width: 800px;
  text-align: center;
  position: relative;
  margin: 0 auto;
  color: white;
}

.ContactContain a {
  color: gold;
}

.ContactContain a:hover {
  color: #a17f1a;
}

.ContactContain span {
  width: 100%;
  border: 2px solid #7B2A3A;
  border-left: transparent;
  border-right: transparent;
  padding: 15px;
  color: white;
  background: transparent;
}


@media all and (max-width: 1200px) {

#PressContain a {
    left: 15%;
  }

}

@media all and (max-width: 900px) {

#PressContain a {
    left: 0;
    width: 50%;
    margin: 0;
  }

.PressImage {
  width: 195px;
  height: 250px;
  position: relative;
  left: 50%;
  margin-left: -97.5px;
}



}

@media all and (max-width: 800px) {

  .PortfolioColumn:nth-of-type(8) .right{
    top: 30%;
  }


  #nav-icon3 {
    display: block;
    z-index: 99;
  }

  .MobileHide{
    display: none;
  }

.NavOpen {
      display: block;
    position: relative;
    z-index: 0;
  animation: MobileDrop 1s forwards ease-in-out;
  }

  @keyframes MobileDrop {
    0%{
    transform: translateY(-400px);
    }
    100%{
    transform: translateY(0px);
    }
  }

  nav li {
    width: 100%;
    float: inherit;
    text-align: center;
    margin-top: 5px;
    height: 45px;
}

nav li:nth-of-type(4) {
  width: 100%;
}

nav li:nth-of-type(3) {
  width: 100%;
}

  nav ul {
    padding-top: 60px;
    background: black;
    width: 100%;
    margin-left: 0;
  }

  .Index32 .LeftFull {
    float: inherit;
    width: 100%;
    height: 500px;
    background: url(../images/projects/SouthPasadenaLibrary/1ColumnFrnt.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.Index32 .RightFull {
    position: relative;
    left: 0;
    width: 100%;
    height: 450px;
    background: #7B2A3A;
}

.ContactContain {
    top: 60px;
    height: 100%;
    width: 100%;
    padding: 20px;
}



}

@media all and (max-width: 650px) {

  .IndexFull {
    border-bottom: black 10px solid;
    overflow: hidden;
    position: relative;
    width: 100vw;
}

.PortfolioColumn:nth-of-type(6){
  height: 1000px;
}

.PortfolioColumn:nth-of-type(8){
  height: 750px;
}

.PortfolioColumn:nth-of-type(8) .right{
  top: 0;
}

    .PortfolioColumn .left {
      float: inherit;
      width: 100%;
      height: 140px;
      position: absolute;
  }

  .PortfolioColumn .right, .PortfolioColumn:nth-of-type(n+7) .right {

    left: 0;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 20px;
    padding-top: 130px;
}

.ProjectDesc p {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    font-size: 16px;
}

.ProjectDesc {
  top: 100px;
}


  .JolinoImg {
    float:none;
    left:50%;
    margin-left: -100px;
  }

}

@media all and (max-width: 500px) {
  iframe {
    width: 280px;
    height: 157.5px;
  }
    .Index1 h1 {
      width: 100%;
      text-align: center;
      position: absolute;
      top: 50%;
      margin-top: -150px;
      left: 0px;
      margin-left: 0;
      vertical-align: middle;
      color: white;
  }

  .HoveredAnimate {
      background: rgba(4,0,4, 0.4);
      width: 100%;
      height: 130%;
      opacity: 1;
      transform: translateY(-30px);
  }

  .Index32 {
    height: 800px;
  }

  .ArtistStatmentHeader {
    margin-top: 0px;
    height: 450px;
    width: 100vw;
}

.Statement {
  padding: 35px;
}



#PressContain a {
    left: 0;
    width: 100%;
    margin: 0;
  }

  .ContactContain a {
      color: gold;
      font-size: 15px;
  }

  .ContactContain {
    top: 20px;
  }

}
