/*ActiveBox Web Design*/

/******************** global styles ********************/
body, html{
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}


/******************** banner styles ********************/

#banner{
  background: url('../images/banner_background.jpg') no-repeat;
  background-size: cover;
}

/*** wraps the banner to certain width ***/
.wrapper{
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  display: block;
  max-height: 760px;
}

/*** banner header ***/
header{
  padding: 4rem 0;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav{
  float: right;

}

p#logo{
  float: left;
  margin: 0 auto;
  position: relative;
  top: -15px;
}

/*** font style for nav ***/
header p{
  font-family: 'Archivo Black', sans-serif;
  font-size: 35px;
  color: rgba(255,255,255,0.2);
}
header p span{
  font-family: 'Quicksand', sans-serif;
  font-size: 35px;
  color: rgba(255,255,255,0.5);
}

header nav a{
  text-decoration: none;
  color: #fff;
  padding: 0 15px;
  text-transform: uppercase;
  font-family: 'Raleway',sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

header nav a:hover{
  color: #fff;
  text-decoration: none;
}

/*** burger nav ***/
.burger-container{
  position: relative;
  float: right;
  display: none;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: #e84545;
  z-index: 9999;
}

.burger{
  cursor: pointer;
  display: block;
}

.burger span{
  background-color: #fefefe;
  color: white;
  display: block;
  height: 1px;
  width: 25px;
  margin-bottom: 6px;
  position: relative;
  top: 13px;
  left: 7px;
  transition: all ease-in-out 0.2s;
}

/*hides the middle span when 'open' class is toggled*/
.burger-container.open span:nth-child(2){
  width: 0;
}

.burger-container.open span:nth-child(1){
  transform: rotate(-45deg);
  top: 20px;
}
.burger-container.open span:nth-child(3){
  transform: rotate(45deg);
  top: 5px;
}


/*** fullscreen navigation ***/
/*** when hidden ***/
.fullnav{
  position: fixed;
  background-color: #000;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%; /* hidden */
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
  z-index: 999;
}

.fullnav nav ul{
  opacity: 1;
  transform: translateY(-25%) rotateX(35deg);
  transition: transform 0.5s, opacity 0.5s;
  text-align: center;
  list-style: none;
}

.fullnav-contents{
  font-size: 30px;
  line-height: 60px;
  position: relative;
  top: 40rem;
  left:-130%;
  font-weight: bold;
  color: #fff;
}

.fullnav.open{
  opacity: 0.9;
  visibility: visible;
  height: 100vh;
  transition: 0.5s;
}

.fullnav.close{
  height: 0%;
}

/*** banner content ***/
.content{
  padding: 10rem 0;
  margin: 4rem auto;
  text-align: center;
}

.title{
  font-family: 'Open Sans',sans-serif;
  font-weight: 700;
  font-size: 65px;
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: 1200px;
  margin: 0 auto;
  color: #F8FAFF;
}

.subtitle{
  font-family: 'Raleway',sans-serif;
  font-weight: 300;
  font-size: 23px;
  width: 80%;
  margin: 0 auto;
  color: #d5d5d8;
  padding: 1rem;
  line-height: 35px;
}

.button-wrapper{
  height: 50px;
  width:200px;
  background-color: #e84545;
  border-radius: 4px;
  margin: 8rem auto;
}

.button-wrapper:hover{
  background-color: #d93030;
}

.button-wrapper a{
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  color: #d5d5d8;
  font-size: 15px;
  position: relative;
  top: 15px;
  margin: 0 auto;
}

/******************** features styles ********************/
.feature-wrapper{
  padding:10px;
  padding-bottom: 80px;
}

.feature-contents{
  padding: 45px 22px;
  font-family: Raleway, sans-serif;
  margin: 0 auto;
  position: relative;
}

.feature-img{
  padding-bottom: 40px;
  position: relative;
  left: 40%;
}

.feature-title{
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.feature-subtitle{
  font-weight: 200;
  text-align: center;
}

/******************** works styles ********************/
#works{
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  display: block;
}

/*hover effect*/
.works-contents{
  border: 1px #fff solid;
  overflow: hidden;

  position: relative;
  margin: auto;
  max-width: 100%;
}

/* .content-overlay is just an empty div that is placed over the object you want to have overlay effect*/

.works-contents .content-overlay{
  background: rgba(232,69,69,0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.works-contents:hover .content-overlay{
  opacity: 1;
}

.fadeIn-top{
  top: 20%;
}
/*end of hover effect*/

.works-title{
  text-transform: uppercase;
  position: absolute;
  z-index: 5;
  color: #fff;
  top: 150px;
  left: 150px;
  font-family: Raleway, sans-serif;
}

.works-contents:hover .works-title{
  color: white;
  font-weight: 600;
}

.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.009);
  transform: scale(1.009);
}

.col-lg-3, .col-md-6, .col-sm-6{
  padding-left: 0;
  padding-right: 0;
}



/******************** team styles ********************/
#team{
  padding-top: 100px;
  padding-bottom: 100px;
  margin: 0;
}

.team-members{
  margin: 0 auto;
  max-width: 80%;
  height: auto;
}

.team-members .person{
  position: relative;
  margin: 0 auto;;
  padding: 10px 17px;
}

.team-caption{
  padding: 20px 0;
  font-family: Raleway, sans-serif;
}

.team-name{
  font-size: 25px;
  text-align: left;
  padding: 0 17px;
}

.team-position{
  font-size: 15px;
  text-transform: uppercase;
  color: #e84545;
  text-align: left;
  padding: 0 17px;
}

.team-desc{
  text-align: left;
  line-height: 23px;
  color: #6e6d6d;
  padding: 0 17px;
  padding-bottom: 30px;

}

.social-icons{
  padding-bottom: 0 10px;
}

.social-icons span{
  letter-spacing: 10px;
  color: #a7a4a4;
  font-size: 20px;
}

.social-icons span:hover{
  color: #e84545;
}

.social-icons li{
  list-style: none;
  display: inline;
}

/******************** testimonials styles ********************/

.flexslider{
  background-color: #53354a;
  display: inline-block;;
  /*position: ;*/
  z-index: 5;
}

.flex-direction-nav a.flex-next:before, .flex-direction-nav a:before {
  content:'>';
}
.flex-direction-nav a:before {
  content: '<';
}

.test-img{
  height: auto;
  float: left;
}


.test-quote .q{
  font-family: "Satisfy", sans-serif;
  color: white;
  line-height: 45px;
  padding: 0 10rem 2rem 10rem;
  padding-top: 10%;
  font-size: 30px;
  text-align: center;
}

.test-quote .sub-q{
  font-family: Raleway, sans-serif;
  text-transform: uppercase;
  color: white;
  text-align: center;
}

/******************** downloads styles ********************/
.downloads-contents{
  position: relative;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 100px;
  font-family: Quicksand, sans-serif;
  font-size: 36px;
}

.downloads-contents .d2{
  font-size: 18px;
  font-weight: bolder;
  padding-bottom: 20px;
}

#downloads .button-wrapper{
  padding:0;
  margin: 0;
  position: relative;
  display: inline-block;
}

/******************** footer styles ********************/
.footer1{
  width: 100%;
  height: auto;
  background-color: #3a3e64;
  display: inline-block;
  padding: 65px;
  font-family: Raleway, sans-serif;
  font-weight: bolder;
  color: white;
}
.footer-title{
  color: white;
}

.footer-1st, .footer-2nd, .footer-3rd{
  margin: 20px 0;
}

.footer-1st{
  padding: 0 100px;
  text-align: center;
  color: #888a9d;
}
.footer-title{
  text-transform: uppercase;
  text-align: center;
}

.footer-2nd ul li a {
  text-decoration: none;
  color: rgba(136, 138, 157, 0.5)
}

.footer-2nd ul li a:hover{
  color: white;
}

.footer-2nd ul li{
  list-style: none;
  display: inline-block;
  font-size: 35px;
  letter-spacing: 10px;
  position: relative;
  left: -18px;

}

.footer-icon{
  text-align: center;
}

.footer-3rd{
  padding: 0 60px;
  text-align: center;
  color: #888a9d;
}

/*2nd footer*/

.footer2{
  width: 100%;
  height: auto;
  background-color: #313454;
  text-align: center;
  padding: 10px 0;
  color: #888a9d;
}

.footer2 .made span{
  color: #e3e4ed;
}
