
/*-------------------------------------------------------*/
/* AirStar Demo Page
/*-------------------------------------------------------*/

.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: 50px 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: #008489;
  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:#008489; 
  z-index:99999;
}

.loader {
  display: block;
  position: absolute;
  font-size: 0;
  color: #fff;
  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: 20px 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;
  }
}

.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%;
  width: 100%;
  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;
  font-size: 22px;
  -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: #ff5c63;
}

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

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

.label-new {
  position: absolute;
  top: 26px;left: 80px;width: 110px;
  z-index: 2;
  background-color: #34dc7f;
  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;
}

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

.call-to-action {
  padding: 70px 0;
  background-color: #fff;
}

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


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

.footer.minimal {
  padding: 5px 0 20px;
  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;
}
/*.slider {
    align-items: center;
    animation: slideUpContent 600ms 1.8s cubic-bezier(.4, .2, 0, 1) both;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}
.logo {
    animation: fadeIn 600ms both, bounce 1s 600ms linear both;
    height: 96px;
    position: relative;
    width: 96px;
}
.logo-icon {
    animation: spin 2.4s cubic-bezier(.4, .2, 0, 1) both, colorize 300ms 700ms linear both;
    background-image: url(http://abservetechdemo.com/img/logo.png);
    background-size: 100%;
    height: 96px;
    width: 96px;
}
.logo-shadow {
    animation: fadeInAndSlideDownShadow 300ms 600ms both;
    background: rgba(0, 0, 0, .2);
    border-radius: 50%;
    filter: blur(16px);
    height: 96px;
    position: absolute;
    top: 16px;
    width: 96px;
    z-index: -1;
}
.heading {
    animation: fadeInAndSlideUp 600ms 1.9s cubic-bezier(.4, .2, 0, 1) both;
    font-size: 2.125em;
    margin-bottom: .25em;
    margin-top: 1.5em;
    text-align: center;
}.subheading {
    animation: fadeInAndSlideUp 600ms 1.9s cubic-bezier(.4, .2, 0, 1) both;
    color: #939393;
    font-size: 1em;
    font-weight: 500;
    margin-top: .25em;
    text-align: center;
}
.llogo {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

/* 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: #f36b21;
}

.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;
}

.system{/*z-index: 1;*/overflow: hidden;}
.work-item img.preview{position: absolute;z-index: 0;left: 70px;overflow: hidden; top: 5%; z-index: 0;left: 11%;width: 77.5%;height: 70%;}
.work-item:hover img{opacity:1;}
.work-item:hover div.overlay:after {
    background: rgba(0, 0, 0, 0.75);
    width: 79.5%;
    height: 71%;
    content: "";
    position: absolute;
    z-index: 0;
    top: 5%;
    left: 10%;
}
iframe{height: 70%; position: absolute; /* z-index: 2; */top: unset;left: 0px;  width: 76%;}
.navigation {
    background-color: #008489;
}.slogan {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
}
img.small-logo {
    width: 25%;
}
.label-new {top: 5%;left: 12%;width: 110px;}
.label-new.coming {background-color: #ff6767;}
.work-item .demo { display:none;}
.work-item:hover .demo {display:block;}
.work-item:hover .demo {
    position: absolute;
    z-index: 1;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    right: 0;
    text-align: center;
}
.work-item:hover span.label-demo {
    background: #008489;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 21px;
}
.livechat_button a:nth-child(2){
    background: #008489;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 21px;
    cursor:pointer;
}