@charset "UTF-8";
/* CSS Document */

/* load fonts */

@font-face {
    font-family: 'lobsterregular';
    src: url('../fonts/lobster-regular-webfont.woff2') format('woff2'),
    url('../fonts/lobster-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sansbold_italic';
    src: url('../fonts/opensans-bolditalic-webfont.woff2') format('woff2'),
         url('../fonts/opensans-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sansregular';
    src: url('../fonts/opensans-regular-webfont.woff2') format('woff2'),
         url('../fonts/opensans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'open_sanslight';
    src: url('../fonts/opensans-light-webfont.woff2') format('woff2'),
    url('../fonts/opensans-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sanssemibold';
    src: url('../fonts/opensans-semibold-webfont.woff2') format('woff2'),
         url('../fonts/opensans-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sansitalic';
    src: url('../fonts/opensans-italic-webfont.woff2') format('woff2'),
         url('../fonts/opensans-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}



* {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  list-style: none;

}

body{
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.fixed{
  position: fixed;
  width: 1200px;
  top:0;

  /* font-size: 1em; */
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
 animation: navmove 1s;

}


@-webkit-keyframes navmove {
    from {top: -110px;}
    to {top: 0px;}
}

@keyframes navmove {
    from {top: -100px;}
    to {top: 0px;}
}
nav{
  z-index: 30;
  position:relative;
}
.main-nav{
	background-color: #341B00;
  width: 100%;
  height: 110px;
  position: relative;
  /* border: 2px solid blue; */
  padding-top: 18px;
  text-align: center;
}

.main-nav li{
position: relative;
  display: inline-block;
  margin-left: 30px;
  margin-right: 10px;

}
.main-nav li input{
  border-radius: 30px;
  width: 100px;
  /* padding: 5px; */
}
.main-nav li i{
  position: absolute;
  top: 2px;
  right: 5px;

}
.main-nav li a{
  position: relative;
  font-size: 0.7em;
  color: white;
  display: inline-block;
  float: right;
  list-style: none;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: 'open_sansregular';
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}


.main-nav li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -10px;
  left: 0;
  background: white;
  visibility: hidden;
  border-radius: 5px;
  transform: scaleX(0);
  transition: .25s linear;
}
.main-nav li > a:hover:before,
.main-nav li > a:focus:before {
  visibility: visible;
  transform: scaleX(1);
}


input.last{
  width: 80px;
  border-radius: 20px;
  /* right: 0; */

}

header{
  width: 100%;
  height: 900px;
  margin-top: -260px;
  background: #FE9830;
  background-image: url('../img/header-bg-new.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* z-index: -10; */

}

header .main-title{
  /* margin-top: 0; */
  margin-top: 174px;
  position:relative;
  z-index: 10;
  top:30%;
  /* left: 30%; */
  text-align: center;
  /* border: 2px solid yellow; */

}
.main-title h1{
  font-family: 'lobsterregular';
  font-size: 4.5em;
  color:white;
  letter-spacing: 9px;
  text-shadow: 0 2px 3px rgba(112, 76, 16, 0.88);
  /* border: 2px solid red; */
}
.main-title p{
  position: relative;
  top:-50px;
  /* right: 220px; */
    /* border: 2px solid green; */
    font-family: 'open_sanslight';
  line-height: 1.6;
  letter-spacing: 2px;
  color: #838484;
	font-size: 1.1em;
  width: 400px;
  /* text-shadow: 0 2px 9px #A6A6A6; */
}


 .main-button{
  font-family: 'open_sansregular';
  width: 332px;
  height: 68px;
  /* cursor: pointer; */
  background-color: transparent;

  /* position: relative; */
  color: white;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 3.2px;
  background-color: #FE9832;
  text-align: center;
  margin-top: 60px;
  border: none;
  /* border: 2px solid #fff; */
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;

}


.main-button:hover {
  background-color: #562c00;
  color: white;
  border: none;

}

/*=============== ABOUT ===============*/
.about{
  height: 600px;
  background: white;
  text-align: center;
  padding-top: 150px;
  width: 400px;

}
.about h2{
  font-family: 'lobsterregular';
  font-size: 3em;
  color: #341B00;
}
.about p{
  padding-top: 30px;
  font-family: 'open_sanslight';
  line-height: 1.5;
  text-align: left;
  /* text-shadow: 0 0 10px #cac1b7; */
  color: #562C00;
}


/*=============== SPECIALIZE ===============*/
.feature{
  height: 494px;
  background-image: url('../img/orange-torn-paper.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom bottom;
  text-align: center;
}
.feature h2{
  padding-top: 100px;
  font-family: 'lobsterregular';
  font-size: 3em;
  color: #341B00;
  letter-spacing: -0.1px;
  text-shadow: 0 2px 13px rgba(255, 227, 178, 0.59);

}
.work-nav-wrapper{
  padding-top: 10px;

}

.logo-nav li{
    display: inline-block;
    margin-right: 40px;
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;


}
.logo-nav li a {
  text-decoration: none;
  /* color: white; */

}

.logo-nav li span{
  color:#562C00;
  text-shadow: 0 2px 5px #ffd0a3;
  font-family: 'open_sanssemibold';


}
.logo-nav li:hover{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);

/* transform: rotate(0.01turn); */

}


.logo-nav li img{
  padding: 10px;

}
.logo-nav li img:hover{

}




/*=============== QUOTES AND WORKS ===============*/

.quotes-work{
  height: 1300px;
  background-image: url('../img/0.8.png');
  background-size: cover;
}
.quotes{
  height: 680px;
  /* border: 2px blue solid; */
}
.quote-wrapper{
  width: 519px;
  height: 300px;
  float: left;
  position: relative;
  left: -100%;
  background-color: #ffffff;
  box-shadow: 0 8px 23px 0 rgba(245, 166, 35, 0.37);
  padding-top: 60px;
  margin-top: 180px;
}
.quote-move{
  position: relative;
  left: 0;
  /* animation: quotemove 2s ease-in; */
  -webkit-transition: all 1200ms ease-in-out;
  -o-transition: all 1200ms ease-in-out;
  transition: all 1200ms ease-in-out;

 }



.quote-wrapper p{
  width: 304px;
  height: 150px;
  font-size: 24px;
  font-style: italic;
  text-align: left;
  /* font-family: 'open_sansbold_italic'; */
    font-family: 'open_sansitalic';
  color: #562C00;
  line-height: 1.3;


}

.quotes img{
  float: right;
}
/*        PORTFOLIO       */
.work{
padding: 0 150px;

}
.work h2{
  float: left;
  font-family: 'lobsterregular';
  font-size: 3em;
  color: #341B00;


}

.work-wrapper{
  clear: both;
  width: 690px;
  padding-top: 50px;

}
.work-1
{
  width: 331px;
  height: 294px;
  float: left;
   overflow: hidden;
  background-image: url(../img/work-1.jpg);
  border-radius: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.work-2{
  width: 329px;
  height: 292px;
  position: relative;
  float: right;
  overflow: hidden;
  background-image: url(../img/work-2.jpg);
  border-radius: 20px;
  background-repeat: no-repeat;
}


.overlay {
  width: 100%;
  height: 100%;
  background: rgba(254, 152, 50, 0.75);
  text-align: center;
  color: white;
  padding: 45px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
}
.overlay p{
    /* font-family: 'open_sansregular'; */
    font-family: 'open_sanslight';
    position: absolute;
    top: 100px;
    left: 100px;
    text-align: center;
    /* text-transform: uppercase; */
    letter-spacing: 3px;
    font-size: 1.4em;
    width: 120px;
    line-height: 1.4;
    text-transform:uppercase;
}


.work-1:hover .overlay {
  opacity: 1;
}

.work-2:hover .overlay {
  opacity: 1;
}


/*=============== EVENTS ===============*/

.events{
  height: 1000px;
}
.events-video{
  height: 400px;
  /* border:  2px green solid; */
  position: relative;
}
.events-overlay{
  width: 289px;
  height: 389px;
  background: rgba(69,37,6,.7);
  position: absolute;
  top:0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.events-overlay p{
  color: white;
  text-align: left;
  position: relative;
  max-width: 220px;
  font-size: 1.2em;
  line-height: 1.6;
  top:30%;
  /* font-family: 'open_sanssemibold'; */
    font-family: 'open_sanslight';
  /* clear: both; */
}

.events-overlay .play{
  position: relative;
  padding-top: 150px;
  padding-left: 50px;
  color: white;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}
.events-overlay .play:hover{
  color: #fe9830;

}

.events-overlay:hover{
  background-color: rgba(69,37,6,.9);
}

.video{
  float: left;
}
.event-title{
  float: right;
  position: relative;
  right: 200px;
  top: 200px;
  font-size: 3em;
}
.event-title h2{
  font-family: 'lobsterregular';
  color: #341B00;
}
.events-details{
  height: 600px;
  /* border: 2px orange solid; */
  background-image: url('../img/events-bg.png');
  background-size: contain;
  /* background-repeat: no-repeat; */
}
.events-details-wrapper{
  width: 430px;
  height: 467px;
  background-color: #ffffff;
  box-shadow: 0 8px 23px 0 #fe9830;
  margin-top: 80px;
  padding: 50px;
}

.event-details1 .left img{
  float: left;
  /* margin-bottom: 20px; */
  /* margin-left: 10px; */

}
.event-details1 .right p{
  float: right;
  width: 100px;
  /* padding-top: 10px; */
  text-align: right;
    line-height: 1.4;

}

.event-details1 .right p.event-name{
      font-family: 'open_sansregular';
    /* width: 100px; */
    padding-left: 20px;
    letter-spacing: 2px;
    font-size: 0.9em;
    /* padding-top: -10px; */


}
.event-details1 .right p.event-loca{
    font-family: 'open_sansregular';
    padding-top: 30px;
    font-size: 0.8em;
    letter-spacing: 2px;

}
.events-details-wrapper .event{
  max-width: 300px;
  height: 100px;
  /* border: 1px solid green; */
  padding-top: 40px;
  /* clear: both; */
}

  /* --============ TALK DESIGN ===============-- */

  .talk{
    height: 700px;
    /* border: 3px skyblue solid; */
    background-image: url('../img/0.8.png');
    background-size: contain;

    position: relative;
      margin-top: 80px;
    /* z-index: -10px; */
  }

  .talk .talk-wrapper{
    /* position: relative;
    z-index: 10px; */
    height: 700px;
    max-width: 300px;
    margin: 0 auto;
    padding-top:100px;
    background: white;
    /* border: 1px red solid; */
    text-align: center;

  }

  .talk .talk-wrapper h2{
    font-family: 'lobsterregular';
    font-size: 3em;
    width: 400px;
    text-align: center;
    color: #562c00;
    margin-bottom: 10px;
    margin-left: -40px;
    /* padding-bottom: 20px; */
  }
  .talk .talk-wrapper p{
      font-family: 'open_sansregular';
      color: #603C00;
      line-height: 1.5;
  }
  .talk .talk-wrapper button{
      font-family: 'open_sansregular';
      width: 332px;
      height: 68px;
/* background-color: transparent; */
      border: 2px solid #562c00;
      background-color: white;
      color: #562c00;
      font-size: 20px;
      font-weight: bold;
      letter-spacing: 3.2px;
      text-align: center;
      margin-top: 30px;
      margin-left: -20px;
       overflow: hidden;
       -webkit-transition: all 250ms ease-in-out;
       -o-transition: all 250ms ease-in-out;
       transition: all 250ms ease-in-out;
    }
    .talk .talk-wrapper button:hover{
      background-color: #562c00;
      color: white;

    }


  /* --============ FOOTER ===============-- */

  footer{
    height: 300px;
    width: 100%;
    background: #341B00;
    color: white;

  }


  footer .info-wrapper{

  display: flex;
  justify-content: center;
  padding-top: 50px;

  }

  .info-wrapper .footer{
    display: inline;
    float: right;
    text-align: center;

  }

  .info-wrapper .career, .info-wrapper .location, .info-wrapper .contact{
      width: 33.33%;

    }



  .footer p{
      font-family: 'open_sanslight';
      line-height: 1.6;
      letter-spacing: 1px;
      font-size: 0.8em;

  }

  .footer h3{
    font-family: 'lobsterregular';
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-indent: -25px;
    margin-top: -40px;

  }
.footer h3 span{

  background-image: url('../img/footer-icon.png');
  position: relative;
  top:20px;
  width: 55px;
  height: 55px;
  display: inline-block;


}
  .social-media{
    padding-top: 20px;

  }
  .social-media ul{
    margin-left: 45%;
    display: inline-block;
  }
  .social-media ul li{
    display: inline-block;
    float: left;
    padding-right: 20px;
  }
  .social-media ul li a i{
      color: white;
  }


.policy{
    text-align: center;
  margin: 0 auto;
  padding-top: 10px;
}

.policy ul{
  display: inline-block;

}

.policy ul li{
  display: inline-block;
  float: left;
  padding-top: 10px;
  padding-right: 20px;


}
.policy ul li a{
  color: white;
  font-family: 'open_sansregular';
  font-size: 0.4em;
  /* letter-spacing: 1px; */
  text-decoration: none;

}
.policy p{
  font-family: 'open_sansregular';
  font-size: 0.4em;
  letter-spacing: 1px;
}


.back-to-top{
  font-family: 'open_sanssemibold';
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 60;
  bottom: 20px;
	right: 20px;
  text-align: center;
  vertical-align: middle;
  line-height: 50px;
  background: #FFD6A4;
  -webkit-box-shadow: -2px 10px 15px -4px rgba(77,43,8,1);
-moz-box-shadow: -2px 10px 15px -4px rgba(77,43,8,1);
box-shadow: -2px 10px 15px -4px rgba(77,43,8,1);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;

}
.back-to-top:hover{
  letter-spacing: 2px;
  background:  #562c00;
  color: white;
  width: 70px;

}
