/*
  Theme Name: Triangle
  Theme Uri: http://designscrazed.org/
  Author: Allie
  Author Uri: http://designscrazed.org/
  Description: Creative Site Template
  Version: 1.1
  */
  

 /* @import url(http://fonts.googleapis.com/css?family=Lato:100,300,400,700);
  @import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700);
  @import url(http://fonts.googleapis.com/css?family=Noto+Sans:400,700);
  @import url(https://fonts.googleapis.com/css?family=Playfair+Display:400,700,900);
  @import url(http://fonts.googleapis.com/css?family=Alegreya+Sans:300italic,400italic,600italic,700italic,400,300,600,700);
  
 */
  @import url(http://fonts.googleapis.com/css?family=Fira+Sans:300italic,400italic,600italic,700italic,400,300,600,700);
  @import url(https://fonts.googleapis.com/css?family=Fira+Sans:300italic,400italic,600italic,700italic,400,300,600,700);
	@import URL(https://fonts.googleapis.com/css2?family=Fira+Sans);

  body {
    background: #fff;
    /*font-family: 'Lato', sans-serif;*/
	font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #000;
  }
  
  .imgSize {
  max-width:auto;
  max-height:auto;
  }
  
  .portfolioDivTop {
	padding: 0px 5px 5px 0px;
  }
  
  .portfolioDivBot {
	padding: 0px 5px 5px 0px;
  }
  
  .progression {
	  font-size: 8px;
	  font-color: 000;
  }

  html {
    height: 100%;
  }
  
  img[name=VCRImage]:hover
{
  cursor:pointer;
}


  a{
    color:#C03035;
  }

  a:hover {
    outline: none;
    text-decoration:none;
    color:#4fcccd;
  }

  a:focus {
    outline:none;
    outline-offset: 0;
  }

  a {
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
  }
  
  
  
 .CTA {
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 60px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.CTA-clear {
  color: black;
  border: 2px solid #555555;
  background-color: rgba(0,0,0,0);
}

.CTA:hover {
  background-color: #555555;
  color: white;
}



/* Style the buttons */
.btnFilter {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
}

/* Add a grey background color on mouse-over */
.btnFilter:hover {
  background-color: #ddd;
}

/* Add a dark background color to the active button */
.btnFilter.active {
  background-color: #666;
   color: white;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}
  
  
  .fa-user, .fa-users, .fa-wrench, .fa-globe, .fa-video-camera, .fa-check, fa-search-plus {
  color: #686868;
  margin-right:10px;
  }
  
  .fa-search-plus {
  color: rgba(0, 0, 0, 0.2);
  margin-right:10px;
  font-size: 72px;
  }
  
  .fa-thumbs-o-up {
  margin-right:10px;
  }
  
  .rounded {
	  border-radius: 15px;
  }

  ul {
    list-style: none;
  }

  h1, h2, h3, h4, h5, h6, h9 {
    /*font-family: 'Playfair Display';*/
	font-family: 'Fira Sans';
    /*font-family: 'Lato';*/
	font-weight: 300;
  }
  
  key{
    font-weight: 500;
  }
  
   .vl {
	  border-left: 2px solid black;
	  height: 100%;
  }
  
  * {
  box-sizing: border-box;
}

.col-container {
  display: table;
  table-layout: fixed;
  border-spacing: 10px;
  width: 100%;
}

.col1 {
  display: table-cell;
  padding: 16px;
  border-collapse: separate;
  border-radius: 5px 5px 5px 5px;
  margin-bottom: 10px;
  overflow-wrap: break-word;
}

.back2top {
  padding: 10px;
  color: #fff;
  background: gray;
  border-radius: 100px;
}

hr.solid {
  border-top: 2px solid #bbb;
}

portfolioGrid {
  padding-right:0px;
  padding-left:0px;
}

.modalCenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* CLIENT LOGOS START */

* {
  box-sizing: border-box;
}

.columnlogo {
  float: left;
  width: 14.2%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}


/* PORTFOLIO TILES */


.hoverP {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}

.hoverP:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



$mobile: 600px; // Screen min
$desktop: 1200px; // Screen max
$font-min: 20px; 
$font-max: 40px;
$screen-diff: ($desktop / 1px - $mobile / 1px);
$font-diff: ($font-max / 1px - $font-min / 1px);

hpa1 {
  // Mobile
  @media (max-width: 599px) {
    font-size: $font-min;
  }
  
  // Everything in between mobile (600px) to desktop (1200px)
  @media (min-width: 600px) and (max-width: 1200px) {
    font-size: calc(#{$font-min} + (100vw - #{$mobile}) / #{$screen-diff} * #{$font-diff});
  }

  // Desktop
  @media (min-width: 1201px) {
    font-size: $font-max;
  }
}




/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .column {
    width: 100%;
  }
}

/* CLIENT LOGOS END */

@media screen and (prefers-reduced-motion: no-preference) {
html {
  scroll-behavior: smooth;
}
}

.pFooter {
  column-count: 3;
}

.col-containerFoot {
  display: table;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 10px;
}

.colFoot {
  display: table-cell;
  padding: 16px;
}

.vertAlign {
  vertical-align: baseline;
}

@media only screen and (max-width: 600px) {
  .col1 { 
    display: block;
    width: 100%;
  }
  
  .col2 { 
    display: block;
    width: 100%;
  }
}
  
  /*  FONT STYLES - PORTFOLIO  */
  
    .headerPad {
  padding-top: 40px;
  padding-bottom: 20px;
}

	.portfolioPad {
  padding-top: 10px;
  padding-bottom: 10px;
}

    .colPad {
  padding: 10px;
  line-height: 160%;
}

  logo1{
    font-size: 22px;
	font-weight: normal;
    color: #444444;
  }
  
  logo2{
    font-size: 16px;
	font-weight: light;
    color: #444444;
  }
  
  logo3{
    font-size: 13px;
	font-weight: light;
    color: #444444;
  }
  
  grid1{
    font-size: 16px;
	font-weight: normal;
    color: #FFFFFF;
  }
  
  grid2{
    font-size: 14px;
	font-weight: light;
    color: #FFFFFF;
  }
  
  grid3{
    font-size: 16px;
	font-weight: normal;
    color: #000000;
  }
  
  grid4{
    font-size: 14px;
	font-weight: light;
    color: #000000;
  }
  
  header1{
    font-size: 36px;
	font-weight: normal;
    color: #444444;
  }
  
  header1foot{
    font-size: 36px;
	font-weight: normal;
    color: #FFFFFF;
  }
  
  header2{
    font-size: 24px;
	font-weight: normal;
    color: #444444;
  }
  
    header2light{
    font-size: 24px;
	font-weight: normal;
    color: #FFFFFF;
  }
  
  header3{
    font-size: 18px;
	font-weight: bold;
    color: #444444;
  }
  
  copyOverlay{
    font-size: 18px;
	font-weight: regular;
    color: #FFFFFF;
  }
  
  bc1{
    font-size: 30px;
	font-weight: light;
    color: #FFFFFF;
  }
  
  bc2{
    font-size: 18px;
	font-weight: light;
    color: #444444;
  }
  
  bc2l{
    font-size: 18px;
	font-weight: light;
    color: #FFFFFF;
  }
  
  bc3{
    font-size: 26px;
	font-weight: normal;
    color: #444444;
  }
  
  bc3foot{
    font-size: 26px;
	font-weight: normal;
    color: #FFFFFF;
  }

  bclight{
    font-size: 18px;
	font-weight: light;
    color: #FFFFFF;
  }
  
  
  /*  END  */
  
  
  .animate-copy
{
	font-weight: bold;
  background-image: linear-gradient(
    90deg, red, blue, green, red
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
  
  /*  END  */
  
  

  h1{
    color: #686868;
  }
  
  h7{
    color: #000000;
  }

  h2{
    font-size: 24px;
    color: #686868;
  }

  h3{
    font-size: 18px;
  }
  
  h9{
    font-size: 15px;
	font-weight: 400;
    color: #000000;
  }
  
  hp1{
    font-size: 1.8vw;
	font-weight: 400;
    color: white;
  }
  
  @media (max-width:1000px) {
  hp1{
    font-size: 16px;
	font-weight: 400;
    color: white;
  }
}
  
  @media (max-width:600px) {
  hp1{
    font-size: 16px;
	font-weight: 400;
    color: white;
  }
}
  
  @media (max-width:800px) {
  hp1{
    font-size: 16px;
	font-weight: 400;
    color: white;
  }
}
  
  h10{
    font-size: 14px;
	font-weight: 300;
    color: #000000;
  }

  .overflow{
    overflow: hidden;
  }
  
  .col-md-20{
	
  }
  
  .logoColumn {
	width: 100%;
	height: auto;
  }
  
  .logoP {
	display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: 3px solid green; 
  }
  
  .portfolioColumn {
	width: 100%;
	height: 100%;
  }

  
  .logoRow {
	padding:2px 0px 2px 0px;
	}
  
  .logoSecBot { padding:0px 0px 40px 0px; }
  
  .hero {
  color: #FFFFFF;
  padding: 40px 12px 0px 12px;
}

  .heroImage {
  color: #000000;
  padding: 40px 0px 0px 0px;
}

  .gifWide {
  width: 500px;
}

  .gifWider {
  width: 800px;
}
  
  #banner {
  /*  background-image: url(../images/portfolio/img_gameathon.jpg);  */
  background-image: #FFFFFF;
  background-repeat: repeat-x;
  background-position: center;
  display: table;
  position: static;
  width: 100%;
  color: #FFFFFF;
}

  .uppercase{
    text-transform: uppercase;
  }

  .btn-common {
    font-size: 14px;
    color: #0099ae;
    border: 1px solid #0099ae;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    padding: 10px 25px;
  }
  
  .btn-timeline {
    font-size: 14px;
    border: 1px solid #000000;
    font-family: 'Fira Sans', sans-serif;
  	color: #FFF;
  	font-weight: 300;
  	border-radius: 0;
  	padding: 17px 40px;
  	background: #B6B6B6;
  }
  
  .btn-timeline:hover, 
  .btn-timeline:focus{
    font-size: 14px;
    border: 1px solid #000000;
    font-family: 'Fira Sans', sans-serif;
  	color: #FFF;
  	font-weight: 300;
  	border-radius: 0;
  	padding: 17px 40px;
  	background: #B6B6B6;
  }
  
  .titletimeline {
    font-size: 15px;
    border: 0px solid #000000;
    font-family: 'Fira Sans', sans-serif;
  	color: #000;
    font-weight: 300;
  	border-radius: 0;
  	padding: 20px 20px;
	margin: 0px 15px 0px 15px;
  	background: rgba(67, 193, 255, 0.2);
	text-align: center;
	display: inline-block;
	border-radius: 10px;
  }
  
    .timelineheader {
    font-size: 16px;
    font-weight: 400;
  }
  
  .titletimelinecomplete {
    font-size: 14px;
    border: 0px solid #000000;
    font-family: 'Fira Sans', sans-serif;
  	color: #FFF;
    font-weight: 300;
  	border-radius: 0;
  	padding: 17px 40px;
	margin: 0px 15px 0px 15px;
  	background: rgba(66, 193, 113, 1);
	text-align: center;
	display: inline-block;
	border-radius: 10px;
  }
  
    .projectoverlay {
    font-size: 22px;
    font-family: 'Fira Sans', sans-serif;
  	color: rgba(255, 255, 255, 1);
  	font-weight: 400;
  	border-radius: 0;
  	padding: 6px 6px;
  	background: rgba(67, 193, 255, 0.5);
	text-align: center;
  }

  #action .col-sm-5{
    position: absolute;

    top: 0;
    height: 100%;
    right: 0;
  }


  .btn-common:hover, 
  .btn-common:focus{
    outline: none;
    background: none;
    box-shadow: none;
    color: #01707f;
    border-color:#01707f;
  }

  .align-right{
    text-align: right;
  }

  .inline{
    display: inline-block;
  }

  .padding{
    padding: 65px 0;
  }

  .padding-bottom{
    padding-bottom: 65px;
  }
  
   .padding-timeline{
    padding: 10px;
  }

  .padding-top{
    padding-top: 90px;
  }

  .padding-right{
    padding-right: 40px;
  }

  .padding-left{
    padding-left: 40px;
  }

  .margin-bottom{
    margin-bottom: 35px;
  }
  
  .margin-process{
    margin-bottom: 70px;
  }
  
  .margin-processtitle{
    margin-bottom: 20px;
  }

     .carousel-indicators.visible-xs {
      height: 20px;
      margin: 0;
      padding: 0;
      position: absolute;
      top: -35px;
      width: 100%;
      left: 0;
    }

  .carousel-indicators.visible-xs li {
    border-color: #D29948;
    border-width: 2px;
    height: 12px;
    margin: 0 5px 0 0;
    width: 12px;
  }

  .carousel-indicators.visible-xs li.active {
    background: rgba(210, 153, 72, 0.7);
  }


/*************************
*******Header******
**************************/


#header{
  background: #fff;
  margin-bottom: 0;
  padding: 30px 0 0 0;
}

#header .navbar-inverse .container{
  position: relative;
}

.field-toggle{
  position: relative;
  top: 30px;
  right: 15px;
  display: none;
  height: 50px;
}

.search-form{
  padding-left: 10px;
  height: 40px;
  font-size: 18px;
  color: #818285;
  font-weight: 300;
  outline: none;
  border: 1px solid #00aeef;
  margin-top: 20px;
  border-radius: 4px;
}

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

.social-icons ul li:last-child{
  padding-right: 0;

}

.social-icons ul li a{
  font-size: 18px;
  color: #d3d3d3;
  padding: 0;
}

.social-icons ul li a:hover .fa-twitter {
  color:#2AA7DC;
}

.social-icons ul li a:hover .fa-linkedin {
  color:#006DC0;
}

.social-icons ul li a:hover,
.social-icons ul li a:focus{  
  background: none;
}

#header .navbar {
  background: #fff;
  border: 0;
  margin-bottom: 0;
}

#header .navbar-brand{
  padding: 8px 0px 0px 0px;
  margin-left: 0;
  /*width: 80%;   THIS IS THE VALUE THAT ADJUSTS POSITION OF MOBILE MENU*/
}

#header .navbar-brand h1{
  padding: 0;
  margin: 0;
}


#header .navbar-nav.navbar-right >li a {
  color: #000;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}


#header .navbar-inverse .navbar-nav  li.active > a,  
#header .navbar-inverse .navbar-nav  li.active > a:focus, 
#header .navbar-nav.navbar-right li > a:hover,
.navbar-inverse .navbar-nav > .open > a {
  background-color: inherit;
  border: 0;
  color: #00aeef;
}

#header .navbar-inverse .navbar-nav  li a:hover{
  color: #00aeef;
}


/*  Dropdown menu*/

ul.sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

#header .navbar-nav li ul.sub-menu li a{
  color: #818285;
  padding: 5px 0;
  font-size: 13px;
  display: block;
  text-transform: capitalize;
}

#header .navbar-nav li ul.sub-menu li .active{
  background: #00aeef;
  color: #fff;
  position: relative;
}

#header .navbar-nav li ul.sub-menu li .active i{
  position: absolute;
  font-size: 56px;
  top: -13px;
  color: #0884d5;
}

#header .navbar-nav li ul.sub-menu li .active .fa-angle-right{
  left: -3px;
}

#header .navbar-nav li ul.sub-menu li .active .fa-angle-left{
  right: -3px;
}

#header .navbar-nav li ul.sub-menu li a:hover,
#header .navbar-nav li ul.sub-menu li a:focus{
  background: #00aeef;
  color: #fff;
}

.fa-angle-down{
  padding-left: 5px; 
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}


/*************************
*******Footer******
**************************/

#footer {
  padding-bottom: 10px;
  background: url(../images/home/'');
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: contain;
}

#footer h1{
  margin-bottom: 65px;
  margin-top: 36px;
}

#footer .bottom-separator {
  margin-bottom: 20px;
}

#message {
  height: 110px;
  resize: none;
}

.bottom > h2 {
  margin-top: 0;
  margin-bottom: 26px;
}

.bottom .media-body h3 {
  margin-top: 0;
  padding-left: 25px;
}

.bottom .media-body h3 a{
  color: #ea2c00;
}

.contact-info.bottom {
  padding-left: 25px;
}

.bottom > address {
  line-height: 22px;
  margin-bottom: 40px;
}

.form-control {
  border: 1px solid #eaeaea;
  font-weight: 300;
  outline: none;
  box-shadow: none;
  height: 40px;
}

.form-control:hover, 
.form-control:focus{
  border-color: #4fcccd;
  outline: none;
  box-shadow: none;
}

.btn-submit {
  width: 100%;
  background-color: #4fcccd;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  border-radius: 3px;
  margin-top: 5px;
  border-bottom: 3px solid #2f9697;
  box-shadow: none;
  padding: 10px;
}

.btn-submit:hover, 
.btn-submit:focus{
  color: #fff;
  outline: none;
  box-shadow: none;
  opacity: .8;
}

.copyright-text{
  margin-top: 70px;
  color: #fff;
  font-size: 16px;  
  padding-bottom: 15px;
}

.copyright-text a {
  color: #3e848a
}

.copyright-text p {
  margin-bottom: 0;
}

/*************************
*******Home Page******
**************************/
#home-slider {
  background: url(../images/home/slider-bg.png) 0 100% repeat-x;
  position: relative;
}

#home-slider .main-slider {
  position: relative;
  height: 450px;
}

#home-slider .slide-text{
  position: absolute;
  top: 50px;
  left: 0;
  width: 450px;
}

.animate-in .slide-text {
  -webkit-animation: fadeInLeftBig 700ms cubic-bezier(0.190,1.000,0.220,1.000) 200ms both;
  animation: fadeInLeftBig 700ms cubic-bezier(0.190,1.000,0.220,1.000) 200ms both;
}

#home-slider .slider-hill {
  position: absolute;
  right: 0;
  bottom: 0;
}

.animate-in .slider-hill {
  -webkit-animation: bounceInDown 1000ms ease-in-out 200ms both;
  animation: bounceInDown 1000ms ease-in-out 200ms both;
}

#home-slider .slider-house {
  position: absolute;
  right: 110px;
  bottom: -30px;
}

.animate-in .slider-house {
  -webkit-animation: bounceInDown 500ms ease-in-out 800ms both;
  animation: bounceInDown 500ms ease-in-out 800ms both;
}

#home-slider .slider-sun {
  position: absolute;
  right: 365px;
  bottom: 100px;
}

.animate-in .slider-sun {
  -webkit-animation: scaleIn 500ms ease-in-out 1200ms both;
  animation: scaleIn 500ms ease-in-out 1200ms both;
}

#home-slider .slider-birds1 {
  position: absolute;
  right: 470px;
  bottom: 75px;
}

.animate-in .slider-birds1 {
  -webkit-animation: fadeInLeft 500ms ease-in-out 1200ms both;
  animation: fadeInLeft 500ms ease-in-out 1200ms both;
}

#home-slider .slider-birds2 {
  position: absolute;
  right: 40px;
  bottom: 150px;
}

.animate-in .slider-birds2 {
  -webkit-animation: fadeInRight 500ms ease-in-out 1200ms both;
  animation: fadeInRight 500ms ease-in-out 1200ms both;
}


#home-slider h1{
  margin-top: 100px;
  margin-bottom: 25px;
}

#home-slider .btn-common {
  margin-top: 20px;
}

#home-slider .preloader {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -30px;
  right: 0;
  background: #fafafa;
  text-align: center;
}

#home-slider .preloader > i {
  font-size: 48px;
  height: 48px;
  line-height: 48px;
  color: #00aeef;
  position: absolute;
  left: 50%;
  margin-left: -24px;
  top: 50%;
  margin-top: -24px;
}

#action {
  background-image: url(../images/home/tour-bg.png);
  background-color: #fbfafa;
  background-repeat: repeat-x;
  height: 157px;
  background-position: center;
  display: table;
  position: static;
  width: 100%;
}

.vertical-center{
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  position: statice;
}

.single-service{
  overflow: hidden;
  display: block;
}

.single-service img {
  margin-bottom: 35px;
}

.single-service .fold {
  margin-bottom: 35px;
}

.single-service h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

.single-service p {
  padding: 0 48px;
}

.action h1{
  margin-top: 0;
}

.action p{
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 300;
}

.action .btn-common{
  margin-top: 55px;
  float: left;
}

.title {
  color: #404040;
  font-weight: 300;
}

.single-features {
  overflow: hidden;
  padding-top: 65px;
  padding-bottom: 40px;
}

.single-features .col-sm-6 {
  margin-top: 50px;
}

.single-features:last-child {
  padding-bottom: 95px;
  padding-top: 0;
}

.single-features h2{
  margin-bottom: 15px;
}

#clients{
  padding-bottom: 45px;
}

.clients {
  margin-bottom: 45px;
}

.clients img {
  display: inline-block;
}

.clients-logo {
  overflow: hidden;
  margin-bottom: 10px;
}

/*************************
*******Portfolio Default**
**************************/

/**Portfolio Hover**/

.portfolio-overlay {
  position: relative;
}

.portfolio-overlay:hover .portfolio-view{
  display: block;
  -webkit-animation: fadeIn 400ms;
  animation: fadeIn 400ms;
  
  /**-webkit-animation: fadeInUp 400ms;
  animation: fadeInUp 400ms;**/
}

.portfolio-thumb {
  position: relative;
}

.portfolio-thumb img {
  width: 100%;
  padding: 5px 5px 5px 5px;
}

/*#portfolio .row{
  margin-left: 100px;
  margin-right: 100px;
}*/

.portfolio-view {
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  background:rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px black;
  width: 100%;
  text-align: center;
}

.portfolio-view .nav-pills {
  padding: 0;
  display: inline-block;
  margin-top: -30%;
  top: 50%;
  position: relative;
}

.portfolio-view .nav-pills li {
  display: inline-block;
  margin: 0 5px;
}

.portfolio-view .nav-pills li a {
  color: #fff;
  border: 1px solid #fff;
  width: 100px;
  height: 100px;
  line-height: 38px;
  text-align: center;
  padding: 0;
  border-radius: 40px;
  -webkit-animation: scaleIn 4800ms linear 100ms both;
  animation: scaleIn 400ms linear 100ms both;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.portfolio-view .nav-pills li a:hover {
  color: #702340;
  border-color: #702340;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.portfolio-filter li {
  display: inline-block;
  position: relative;
}

.portfolio-filter li a {
  border-radius: 0;
  color: #686868;
  font-size: 16px;
  font-weight: 300;
  padding: 0 20px;
  text-transform: capitalize;
  border: none;
}

.portfolio-filter li .active{
  background: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.portfolio-filter li a:hover, 
.portfolio-filter li a:focus,
.portfolio-filter li a.active {
  background: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.portfolio-filter li a.active:before{
  position: absolute;

  content: "";
  left: 0;
  width: 13px;
  height: 16px;
  background: url(../images/portfolio/icon.png);
  top: 5px;
}

.pagination li{
  display: inline-block;
  margin: 0 10px;
}

.pagination li a{
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #fff;
}

.pagination li:first-child a{
  background: url(../images/portfolio/left.png);
  background-repeat: no-repeat;
  text-indent: -999999999px;
  background-position: center top 10px;
  width: 32px;
  height: 36px;
  border: none;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.pagination li:first-child a:hover{
  background: url(../images/portfolio/left.png);
  background-position: center top -37px;
  background-repeat: no-repeat;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.pagination li:last-child a{
  background: url(../images/portfolio/right.png);
  background-repeat: no-repeat;
  text-indent: -999999999px;
  background-position: center top 10px;
  width: 32px;
  height: 36px;
  border: none;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.pagination li:last-child a:hover{
  background: url(../images/portfolio/right.png);
  background-position: center top -37px;
  background-repeat: no-repeat;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.pagination li a:hover,
.pagination .active a, 
.pagination a:active, 
.pagination .active a:hover,
.pagination .active a:focus, 
.pagination a:focus {
  background: transparent;
  border-color: #C03035;
  color: #C03035;
}

/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}




/*****************************
Portfolio Details
*****************************/

#portfolio-information.padding-top{
  padding-top: 20px;
}

.project-name h2{
  margin-top: 0;
  margin-bottom: 15px;
}

#related-work .title{
  margin-bottom: 55px;
  margin-top: 10px;
}

.navbar-default {
  background: none;
  padding: 0;
}

.navbar-default li a{
  font-size: 12px;
  padding: 0;
  padding-right: 15px;
}

.navbar-default li a i{
  padding-right: 8px;
}

/* THIS IS THE HOVER STATE FOR NAVBAR */
.navbar-default li a:hover{
  color: #0884d5;
  background: none;
}

.skills .navbar-default,
.client .navbar-default{
  margin-left: 35px;
  
}

.live-preview .btn-common{
  margin-top: 21px;
  padding: 13px 45px;
}

/*Features*/
.feature-inner{
  text-align: center;
}
.icon-wrapper{
  display: inline-block;
  background-color: #0884d5;
  color: #fff;
  padding: 25px;
  box-shadow: 0 0 0 5px rgba(0,0,0,.1) inset;
  -webkit-box-shadow: 0 0 0 5px rgba(0,0,0,.1) inset;
  border-radius: 100%;
  margin: 10px 0;
}


/* (A) WRAPPER */
.fullwrap {
  position: relative; /* required for (c2) */
  /* max-width: 500px; optional */
  transition: all .5s ease-in-out;
}
 
/* (B) RESPONSIVE IMAGE */
.fullwrap img { width: 100%; transition: all .5s ease-in-out; }
.fullcap img { max-width: 100px; width: 100%; opacity: 1; transition: all .5s ease-in-out; }

 
/* (C) CAPTION */
.fullcap {
  /* (C1) DIMENSIONS */
  box-sizing: border-box;
  width: 100%;
  height: 100%;
 
  /* (C2) POSITION */
  position: absolute;
  top: 0; left: 0;
  text-align: center;
  padding-top: 20%;
 
   /* (C3) COLORS */
  background-color: rgba(255, 255, 255, 0.0);
  color: black;
  font-weight: bold;
}
 
/* (D) SHOW/HIDE */
.fullcap {
  visibility: none; opacity: 0;
  transition: opacity 0.5s;
}
.fullwrap:hover .fullcap {
  visibility: visible; opacity: 1;
}

.fullwrap:hover .portfolio{
  transform: scale(1.02);
  opacity: .2;
  z-index: 1;
  position:relative;
  transition: all .4s ease-in-out;
}


/* LIGHTBOX - NEW */

.lightboxrow > .lightboxcolumn {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.lightboxcolumn {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.lightboxcaption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.modal-backdrop {
  z-index: -1;
}