
/*-------------------------------------------------------*/
/* General
/*-------------------------------------------------------*/

.clearfix { *zoom: 1; }
.clearfix:before, .clearfix:after { display: table; line-height: 0; content: ""; }
.clearfix:after { clear: both; }
.clear { clear: both; }

.oh { overflow: hidden; }
.relative { position: relative; }
.section-wrap { padding: 150px 0; position: relative; overflow: hidden; background-attachment: fixed; }
.color-white { color: #fff !important; }
.left { float: left; }
.right { float: right; }
.bg-light { background-color: #f7f9fa; }
.bg-dark { background-color: #171919; }
.last { margin-bottom: 0 !important;}

.mt0 {margin-top: 0px !important; }
.mt10 {margin-top: 10px !important; }
.mt20 {margin-top: 20px !important; }
.mt30 {margin-top: 30px !important; }
.mt40 {margin-top: 40px !important; }
.mt50 {margin-top: 50px !important; }
.mt60 {margin-top: 60px !important; }
.mt70 {margin-top: 70px !important; }
.mb0 {margin-bottom: 0px !important; }
.mb10 {margin-bottom: 10px !important; }
.mb15 {margin-bottom: 15px !important; }
.mb20 {margin-bottom: 20px !important; }
.mb30 {margin-bottom: 30px !important; }
.mb40 {margin-bottom: 40px !important; }
.mb50 {margin-bottom: 50px !important; }
.mb60 {margin-bottom: 60px !important; }
.mb70 {margin-bottom: 70px !important; }
.ml0 {margin-left: 0 !important; }
.mr0 {margin-right: 0 !important; }
.mr10 {margin-right: 10px !important; }
.b0 { border: 0 !important;}

::-moz-selection { color: #fff; background: #000; }
::-webkit-selection { color: #fff; background: #000; }
::selection { color: #fff; background: #000; }

a {
  text-decoration: none;
  color: #5c5c5c;
  outline: none;
  -webkit-transition: color .2s ease-in-out;
  -moz-transition: color .2s ease-in-out;
  -o-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #7a7a7a;
  outline: none;
}

:focus {
  outline: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: #7a7a7a;
}

video {
  height: 100%;
  width: 100%;
}

body img {
  border: none;
  max-width: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  margin-top: 0;
  text-transform: uppercase;
  color: #121212;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.5;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 21px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; }

p {
  font-size: 15px;
  color: #7a7a7a;
  font-weight: normal;
  line-height: 25px;
}


/*-------------------------------------------------------*/
/* Preloader
/*-------------------------------------------------------*/

.loader-mask {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#fff; 
  z-index:99999;
}

.loader {
  display: block;
  position: absolute;
  font-size: 0;
  color: #f36b21;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.loader > div {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.loader > div:first-child {
  position: absolute;
  width: 42px;
  height: 42px;
  background: transparent;
  border-style: solid;
  border-width: 3px;
  border-right-color: transparent;
  border-left-color: transparent;
  -webkit-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(.09, .57, .49, .9) infinite;
  -moz-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(.09, .57, .49, .9) infinite;
  -o-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(.09, .57, .49, .9) infinite;
  animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(.09, .57, .49, .9) infinite;
}
.loader > div:last-child {
  width: 21px;
  height: 21px;
  -webkit-animation: ball-clip-rotate-pulse-scale 1s cubic-bezier(.09, .57, .49, .9) infinite;
  -moz-animation: ball-clip-rotate-pulse-scale 1s cubic-bezier(.09, .57, .49, .9) infinite;
  -o-animation: ball-clip-rotate-pulse-scale 1s cubic-bezier(.09, .57, .49, .9) infinite;
  animation: ball-clip-rotate-pulse-scale 1s cubic-bezier(.09, .57, .49, .9) infinite;
}

@-webkit-keyframes ball-clip-rotate-pulse-rotate{0%{-webkit-transform:translate(-50%,-50%) rotate(0);transform:translate(-50%,-50%) rotate(0)}50%{-webkit-transform:translate(-50%,-50%) rotate(180deg);transform:translate(-50%,-50%) rotate(180deg)}100%{-webkit-transform:translate(-50%,-50%) rotate(360deg);transform:translate(-50%,-50%) rotate(360deg)}}@-moz-keyframes ball-clip-rotate-pulse-rotate{0%{-moz-transform:translate(-50%,-50%) rotate(0);transform:translate(-50%,-50%) rotate(0)}50%{-moz-transform:translate(-50%,-50%) rotate(180deg);transform:translate(-50%,-50%) rotate(180deg)}100%{-moz-transform:translate(-50%,-50%) rotate(360deg);transform:translate(-50%,-50%) rotate(360deg)}}@-o-keyframes ball-clip-rotate-pulse-rotate{0%{-o-transform:translate(-50%,-50%) rotate(0);transform:translate(-50%,-50%) rotate(0)}50%{-o-transform:translate(-50%,-50%) rotate(180deg);transform:translate(-50%,-50%) rotate(180deg)}100%{-o-transform:translate(-50%,-50%) rotate(360deg);transform:translate(-50%,-50%) rotate(360deg)}}@keyframes ball-clip-rotate-pulse-rotate{0%{-webkit-transform:translate(-50%,-50%) rotate(0);-moz-transform:translate(-50%,-50%) rotate(0);-o-transform:translate(-50%,-50%) rotate(0);transform:translate(-50%,-50%) rotate(0)}50%{-webkit-transform:translate(-50%,-50%) rotate(180deg);-moz-transform:translate(-50%,-50%) rotate(180deg);-o-transform:translate(-50%,-50%) rotate(180deg);transform:translate(-50%,-50%) rotate(180deg)}100%{-webkit-transform:translate(-50%,-50%) rotate(360deg);-moz-transform:translate(-50%,-50%) rotate(360deg);-o-transform:translate(-50%,-50%) rotate(360deg);transform:translate(-50%,-50%) rotate(360deg)}}@-webkit-keyframes ball-clip-rotate-pulse-scale{0%,100%{opacity:1;-webkit-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1)}30%{opacity:.3;-webkit-transform:translate(-50%,-50%) scale(.15);transform:translate(-50%,-50%) scale(.15)}}@-moz-keyframes ball-clip-rotate-pulse-scale{0%,100%{opacity:1;-moz-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1)}30%{opacity:.3;-moz-transform:translate(-50%,-50%) scale(.15);transform:translate(-50%,-50%) scale(.15)}}@-o-keyframes ball-clip-rotate-pulse-scale{0%,100%{opacity:1;-o-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1)}30%{opacity:.3;-o-transform:translate(-50%,-50%) scale(.15);transform:translate(-50%,-50%) scale(.15)}}@keyframes ball-clip-rotate-pulse-scale{0%,100%{opacity:1;-webkit-transform:translate(-50%,-50%) scale(1);-moz-transform:translate(-50%,-50%) scale(1);-o-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1)}30%{opacity:.3;-webkit-transform:translate(-50%,-50%) scale(.15);-moz-transform:translate(-50%,-50%) scale(.15);-o-transform:translate(-50%,-50%) scale(.15);transform:translate(-50%,-50%) scale(.15)}}


/*-------------------------------------------------------*/
/* Navigation
/*-------------------------------------------------------*/

.navbar-default {
  background: none;
  margin-bottom: 0;
}

.slogan {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.050em;
  line-height: 1;
  margin-top: 12px;
  margin-bottom: 0;
  opacity: 0.7;
  font-weight: 600;
  color: #909090;
}

.navigation {
  background-color: #171919;
  width: 100%;
  z-index: 500;
}

.logo {
  padding: 60px 0;
}

.navbar-nav {
  margin: 0;
}


/* Select Demo
-------------------------------------------------------*/

.row-clear .col-xs-6:nth-child(3n + 1) { clear: left; }

@media (max-width: 767px) {

  .row-clear .col-xs-6:nth-child(3n + 1) { clear: none; }
  .row-clear .col-xs-6:nth-child(2n + 1) { clear: left; }

}

@media (min-width: 1600px) {

  .select-demo > .container {
    width: 1400px;
  }
}

@media (max-width: 400px) {
  .work-item.col-xs-6 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .call-to-action .cta-text {
    margin-bottom: 15px;
  }
}

.coming-sction {
  padding-top: 115px;
}
.coming-sction h2 {
  margin-bottom: 30px;
}

.work-item {
  position: relative;
  overflow: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin-bottom: 20px;
}

.work-item > a {
  display: block;
  position: relative;
}

.work-item img {
  max-width: 100%;
  display: block;
  margin: auto;
  height: auto;
  overflow: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  backface-visibility: hidden;
  position: relative;
}


.work-item .work-description h2 {
  margin-top: 20px;
  font-size: 14px;
}

.work-item .work-description a {
  color: inherit;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.work-item .work-description a:hover {
  color: #f36b21;
}

.work-img {
  position: relative;
  overflow: hidden;
}

.work-item:hover img {
  opacity: 0.8;
}

.label-new {
  z-index: 2;
  background-color: #03dedf;
  width: 56px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

/* Call to Action
-------------------------------------------------------*/

.call-to-action {
  padding: 70px 0;
}

.call-to-action h2 {
  font-size: 24px;
  margin: 0;
  line-height: 46px;
}


/* Footer
-------------------------------------------------------*/

.footer.minimal {
  padding: 100px 0;
  text-align: center;
}

.footer.minimal .copyright {
  display: block;
  margin-top: 20px;
  font-size: 14px;
}

.footer.minimal .copyright a {
  color: #a1a1a1;
}

.footer.minimal .copyright a:hover {
  color: #f36b21;
}

.footer-logo h2 {
  color: #fff;
}


/* Buttons
-------------------------------------------------------*/

.btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  overflow: hidden;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.14em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: none;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  color: #fff;
  background-color: #333;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  z-index: 1;
}

.btn-lg {
  font-size: 13px;
  padding: 0 34px;
  line-height: 46px;
}

.btn-md {
  font-size: 12px;
  padding: 0 27px;
  line-height: 40px;
}

.btn-sm {
  font-size: 12px;
  padding: 0 22px;
  line-height: 30px;
}

.btn.btn-color {
  background-color: #03dedf;
}

.btn.btn-transparent {
  background-color: transparent;
  border: 2px solid #fff;
}

.btn.btn-stroke {
  color: #121212;
  border: 2px solid #333333;
  background-color: transparent;
}

.btn.btn-dark {
  background-color: #121212;
}

.btn.btn-white {
  background-color: #fff;
  color: #121212;
}

.btn.btn-light {
  background-color: #f5f5f5;
  color: #121212;
}

.btn:focus {
  outline: none;
  color: #fff;
}

.btn.btn-white:focus {
  color: #121212;
}

.btn.btn-lg.btn-stroke,
.btn.btn-lg.btn-transparent {
  line-height: 42px;
}

.btn-icon span {
  position: relative;
  display: inline-block;
  left: 0;
  transition: left .2s ease-in-out, right .2s ease-in-out;
  -moz-transition: left .2s ease-in-out, right .2s ease-in-out;
  -webkit-transition: left .2s ease-in-out, right .2s ease-in-out;
  -o-transition: left .2s ease-in-out, right .2s ease-in-out;
}

.btn-icon > i {
  position: absolute;
  left: auto;
  font-size: 18px;
  width: 36px;
  line-height: 46px;
  background-color: rgba(0,0,0,.05);
  right: -36px;
  top: 0;
  text-align: center;
  display: block;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  transition: left .2s ease-in-out, right .2s ease-in-out;
  -moz-transition: left .2s ease-in-out, right .2s ease-in-out;
  -webkit-transition: left .2s ease-in-out, right .2s ease-in-out;
  -o-transition: left .2s ease-in-out, right .2s ease-in-out;
}

.btn-md.btn-icon > i {
  line-height: 40px;
  font-size: 14px;
  width: 30px;
}

.btn.btn-md.btn-icon:hover span {
  left: -13px;
}

.btn.btn-icon:hover span {
  left: -16px;
}

.btn.btn-icon:hover i {
  right: 0;
}

.btn:hover {
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  color: #fff;
  background-color: #f36b21;
  border-color: transparent;
}