/**
* 	@template:  Alex
	author: Idesignt7
	version: 1.1

TABLE OF CONTENTS

	* Global
		+ Navbar
		+ Side Menu
		+ Header
		+ Hero
		+ Portfolio
		+ footer
		+ Responsive
		
*/
/* -------------------------------------------------------
                     Global 
-------------------------------------------------------- */
@import url(main.css);
body {
  font-family: 'Montserrat', sans-serif;
  color: #353535;
  font-weight: 400;
}

.section-padding {
  padding: 80px 0;
}

.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}

.section-gray {
  background: #f7f7f7;
}
.section-gray .section-border:after, .section-gray .section-border:before {
  border-color: #fff;
}
.section-gray .main-title {
  color: #999;
}

p {
  line-height: 1.8;
  margin: 0;
  font-size: 14px;
  color: #7e7e7e;
  font-family: 'Open Sans', sans-serif;
}

.main-title {
  font-size: 44px;
  font-weight: 900;
  color: #ccc;
  opacity: .8;
  margin-bottom: 30px;
}

.sm-titl {
  /*text-transform: uppercase;*/
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.butn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 25px;
  margin: 0;
  color: #fff;
  background-color: #3b414c;
  border: 1px solid #3b414c;
  width: 100%;

  width: auto;
  text-align: center;
}

.social-butn{
    padding: 10px;
    width: 45px;
    background-color: #ccc;
    border: 1px solid #ccc; 

}

.butn-light {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 25px;
  margin: 0;
  color: #3b414c;
  background-color: #fff;
  border: 1px solid #3b414c;  width: 100%;
  width: auto;
  text-align: center;
}

.butn-outline {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 25px;
  margin: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;  width: 100%;

  width: auto;
  text-align: center;
}

.butn:hover {
  color: #3b414c;
  background-color: #fff;
    -webkit-transition: all .5s;
  transition: all .5s;
}

.social-butn:hover {
  color: #ccc;
  background-color: #fff;
    -webkit-transition: all .5s;
  transition: all .5s;
}

.butn-light:hover {
  color: #fff;
  background-color: #3b414c;
    -webkit-transition: all .5s;
  transition: all .5s;
}

.butn-outline:hover {
  color: #000;
  background-color: #fff;
    -webkit-transition: all .5s;
  transition: all .5s;
}

.butn:active {
  background-color: #3b414c;
}

.link-light {
  font-weight:500;
  /*text-decoration: underline !important;*/
}
.link-light:hover {
  color: #000;
}
.link-dark:hover {
  color: #ccc;
}

a i:hover {
  color: #ccc;
}

/* -------------------------------------------------------
                     Navbar 
-------------------------------------------------------- */
.navbar-default {
  padding: 20px 0 30px;
  background: none;
  border: none;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
}
.navbar-default .navbar-nav > li > a {
  margin: 20px 15px 0 !important;
  color: #eee !important;
  padding: 4px 5px !important;
  position: relative;
}
.navbar-default .navbar-nav > li > a:hover {
  color: #ccc!important;
}
.navbar-default .navbar-nav > li > a:after, .navbar-default .navbar-nav > li > a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #3b414c;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  transition: all .4s;
}
.navbar-default .navbar-nav > li {
  font-size: 13px;
  background: none;
  cursor: pointer;
  position: relative;
}
.navbar-default .navbar-nav > li .active {
  background: none;
}
.navbar-default .navbar-nav > li .active:after {
  bottom: 0;
  top: 100%;
  opacity: 1;
}
.navbar-default .navbar-nav > li .active:before {
  top: 0;
  opacity: 1;
}

.nav-scroll {
  background: #fff;
  border-bottom: 1px solid rgba(12, 12, 12, 0.04);
  min-height: 60px;
  line-height: 60px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all .5s;
}
.nav-scroll .logo {
  color: #343434;
  padding-top: 5px;
}
.nav-scroll .logo span {
  color: #3b414c;
}
.nav-scroll .navbar-nav > li > a {
  color: #111 !important;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  float: left;
  padding-top: 15px;
}

/* -------------------------------------------------------
                     Header 
-------------------------------------------------------- */
.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  overflow: hidden;
}
.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.header {
  position: relative;
  height: 100vh;
  width: 100%;
 background-image: url(../img/background.jpg);
  background-size: cover;
  background-attachment: fixed;
 /* background-position: center center;*/
  overflow: hidden;
}
.header:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.header .v-middle {
  z-index: 99;
}
.header .caption {
  padding-top: 50px;
  color: #fff;
  text-align: center;
}
.header .caption .sub-title {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
}
.header .caption h1 {
  font-weight: 900;
  font-size: 70px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 30px auto;
}
.header .caption h6 {
  letter-spacing: 1px;
  font-size: 22px;
  font-weight: 300;
  padding-right: 10px;
  display: inline-block;
}
.header .caption .typed-cursor {
  font-size: 25px !important;
  font-weight: 300;
  opacity: 1;
  -webkit-animation: blink 1s infinite;
  -moz-animation: blink 1s infinite;
  animation: blink 1s infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header .caption .botn {
  margin-top: 30px;
  padding: 10px 30px;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  transition: all .5s;
}
.header .caption .botn:hover {
  background: #3b414c;
  border-color: #3b414c;
}
.header .button-scroll {
  position: absolute;
  bottom: 5vh;
  left: calc(50% - 13px);
  width: 26px;
  height: 50px;
  border-radius: 15px;
  border: 2px solid #fff;
  cursor: pointer;
  z-index: 9999;
}
.header .button-scroll span {
  position: absolute;
  left: calc(50% - 4px);
  color: #fff;
  -webkit-animation: scroll .5s infinite alternate;
  -moz-animation: scroll .5s infinite alternate;
  animation: scroll .5s infinite alternate;
}
@keyframes scroll {
  0% {
    top: 50%;
  }
  50% {
    top: 55%;
  }
  100% {
    top: 60%;
  }
}
@-webkit-keyframes scroll {
  0% {
    top: 50%;
  }
  50% {
    top: 55%;
  }
  100% {
    top: 60%;
  }
}
@-moz-keyframes scroll {
  0% {
    top: 50%;
  }
  50% {
    top: 55%;
  }
  100% {
    top: 60%;
  }
}
.sub-header {
  height: 60vh;
  background-image: url(../img/blog/blog-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  color: #fff;
}
.sub-header:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 1;
}
.sub-header .v-middle {
  z-index: 8;
}

/* -------------------------------------------------------
                     Hero 
-------------------------------------------------------- */

.hero {
  padding-top: 0;
}

.hero .hero-img {
  position: relative;
}

.hero .hero-img img {
  position: relative;
  z-index: 9;
}

.hero .hero-info h5 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}
.hero .hero-info .data {
  margin-top: 40px;
}
.hero .hero-info .data div {
  padding: 0;
}
.hero .hero-info .data li {
  margin-bottom: 15px;
  font-weight: 500;
}
.hero .hero-info .data li span {
  padding-left: 5px;
  color: #a7a7a7;
  font-weight: 400;
}
.hero .hero-info .order {
  margin-top: 30px;
}

/* -------------------------------------------------------
                     Portfolio 
-------------------------------------------------------- */
.portfolio {
  overflow: hidden;
}
.portfolio .filtering span {
  padding: 8px 10px;
  margin: 0 15px;
  color: #777;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.portfolio .filtering span:hover {
  color: #ccc!important;
}

.portfolio .filtering span:after, .portfolio .filtering span:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #3b414c;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  transition: all .4s;
}
.portfolio .filtering .active {
  color: #3b414c;
  cursor: default;
}
.portfolio .filtering .active:hover {
  color: #3b414c!important;
}
.portfolio .filtering .active:after {
  bottom: 0;
  top: 100%;
  opacity: 1;
}
.portfolio .filtering .active:before {
  top: 0;
  opacity: 1;
}
.portfolio .item-img {
  /*margin: 15px auto;*/
  position: relative;
  overflow: hidden;
}
.portfolio .item-img:hover .item-img-overlay {
  opacity: 1;
  transform: translateY(0);
}
.portfolio .item-img:hover h6,
.portfolio .item-img:hover a,
.portfolio .item-img:hover .icons
{
  transform: translateY(0);
}
.portfolio .item-img h6 {
  text-transform: uppercase;
  position: relative;
  color: #fff;
  margin-bottom: 20px;
  transform: translateY(-15px);
  transition: all .5s;
}
.portfolio .item-img a {
  transform: translateY(15px);
  transition: all .5s;
}
.portfolio .item-img .icons {
  transform: translateY(15px);
  transition: all .5s;
}

.portfolio .item-img img {
  transform: scale(1.05,1.05);
  transition: all .5s;
}
.portfolio .item-img:hover img {
  transform: scale(1.2,1.2);
  transition: all .5s;
}
.portfolio .item-img .icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background: #fff;
  color: #212121;
  font-weight: bold;
  margin: 0 2px;
  transition: all .5s;
  cursor: pointer;
}
.portfolio .item-img .icon:hover {
  background: #3b414c;
  color: #fff;
}
.portfolio .item-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  opacity: 0;
  transition: all .5s;
  z-index: 2;
/*  transform: translateY(10px);*/
}
.portfolio .load {
  margin: 30px auto 0;
  border: 1px solid #eee;
  padding: 12px 30px;
  color: #555;
  transition: all .5s;
}
.portfolio .load:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

.portfolio .downloadBTN {
  margin-top: 40px;
}

.social{
  margin-top: 30px;
}


/* -------------------------------------------------------
                    Footer
-------------------------------------------------------- */
footer {
  padding: 30px;
  text-align: center;
}
footer p {
  color: #a7a7a7;
}

/* -------------------------------------------------------
                    Responsive
-------------------------------------------------------- */
@media screen and (max-width: 767px) {
  * {
    /*background-position: 50% 0%;*/
  }

  .butn {
    width: 100%;
  }

  .section-padding {
    padding: 30px 0;
  }

  .skills .numbers {
    margin-top: 80px;
  }

  .header {
    background-position: center center !important;
  }

  .navbar-default .logo {
    margin-left: 20px;
  }
  .navbar-default .navbar-toggle {
    background: none !important;
    margin-top: 15px !important;
    border: none !important;
  }
  .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background: transparent !important;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background: #fff;
  }
  .navbar-default .navbar-nav li a {
    color: #111 !important;
    display: inline-block;
  }
  .navbar-default .navbar-collapse {
    text-align: center;
    border: none;
    border-top: 1px solid rgba(12, 12, 12, 0.04);
    background: #fff;
    margin-top: 5px;
  }

  .nav-scroll .navbar-toggle .icon-bar {
    background: #111;
  }

  .section-border {
   /* padding: 15px 30px !important;*/
  }
  .section-border:after, .section-border:before {
    display: none;
  }

  .portfolio .filtering span {
    margin: 5px 2px;
  }

  .filtering {
    margin-bottom: 30px !important;
  }

  .services .item {
    padding: 0;
    margin-bottom: 40px;
  }
  .skills h4,
  .services h4,
  .portfolio h4,
  .clients h4,
  .contact h4
  {
    margin-bottom: 60px !important;
  }
    .resume h4
  {
    margin-top: 0 !important;
    margin-bottom: 90px !important;
  }

}
@media screen and (max-width: 991px) {
  .navbar-nav {
    margin-bottom: 25px;
  }

  .navbar-default .navbar-nav > li > a {
    padding: 4px !important;
    margin: 20px 10px 0 !important;
  }

  .header h1 {
    font-size: 40px !important;
  }

  .section-border {
    /*padding: 30px 30px;*/
  }

  .hero .hero-img,
  .numbers .item,
  .blog .item,
  .contact .form {
    margin-bottom: 50px;
  }

  .hero .hero-info .order .butn:first-child {
   /*margin-bottom: 5px;*/
  }

  .resume .content .butn:first-child {
   margin-bottom: 5px;
  }

  .skills .skills-info {
    margin-bottom: 30px;
  }

  .column-left {
    margin-left: 5%;
    margin-bottom: 100px;
    padding-left: 50px;
    padding-right: 0 !important;
    border-left: 2px solid #eee;
    border-right: 0 !important;
    text-align: left !important;
  }
  .column-left .icon {
    left: calc(5% - 6px);
  }
  .column-left .item:after {
    left: -54px !important;
  }

  .clients .owl-carousel {
    width: 95%;
    margin: auto;
  }

  .portfolio .items {
    width: 100%;
  }
}


/*Unlisted*/
.list-unstyled{
  color:orange;
  font-size: 12px;
  font-style: italic;
}

/*# sourceMappingURL=style.css.map */
