/* 
TEMPLATE NAME : Skapp - APP Landing Page
VERSION : 1.2
CREATED : 1 May 2017
LAST UPDATE : 15 May 2017
AUTHOR : Saerox
URL : http://themeforest.net/user/Saerox
*/
/* -----------------------------------------------------------
TABLE OF CONTENTS:
--------------------------------------------------------------
01) Elements
02) Hero
03) Stunning
04) Features
05) Milestones
06) Screenshots
07) Team
08) Review
09) Video
10) Pricing Tables
11) FAQ
12) Download
13) Blog
14) Newsletter
15) Footer
16) Responsive
-------------------------------------------------------------
------------------------------------------------------------*/
/*-----------------------------------------
01) Elements
--------------------------------------------------*/
.owl-dots {
  float: left;
  margin-top: 50px;
  text-align: center;
  width: 100%;
}
.owl-dots .owl-dot {
  border: 2px solid #40545a;
  border-radius: 50%;
  display: inline-block;
  height: 16px;
  margin: 0 5px;
  width: 16px;
  transition: all 0.3s ease 0s;
}
.owl-dots .owl-dot:hover {
  border-color: #06cefc;
}
.owl-dots .owl-dot.active {
  border: 2px solid #06cefc;
}
/*-----------------------------------------
02) Hero
--------------------------------------------------*/
#hero-video {
  min-width: 100%;
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  display: block;
}
.wrap-hero-content-video {
  background: -webkit-linear-gradient(45deg, rgba(38,44,51,0.9) 20%, rgba(0,201,255,0.9) 100%);
     background: -moz-linear-gradient(45deg, rgba(38,44,51,0.9) 20%, rgba(0,201,255,0.9) 100%);
          background: linear-gradient(45deg, rgba(38,44,51,0.9) 20%, rgba(0,201,255,0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc262c33', endColorstr='#e600c9ff',GradientType=1 );
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-content-video {
  position: absolute;
  min-width: 1170px;
  left: 50%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
video#bgvid {
  position: absolute; 
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100vh;
  width: auto; 
  height: auto; 
  z-index: -100;
  background: url('../../images/background/01.jpg') no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}
#hero-video h1 {
  margin: 60px 0 0;
  color: #fff;
  font-size: 130px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 1px 0 #ccc, 
               0 2px 0 #c9c9c9, 
               0 3px 0 #bbb, 
               0 4px 0 #b9b9b9, 
               0 5px 0 #aaa, 
               0 6px 1px rgba(0,0,0,.1), 
               0 0 5px rgba(0,0,0,.1), 
               0 1px 3px rgba(0,0,0,.3), 
               0 3px 5px rgba(0,0,0,.2), 
               0 5px 10px rgba(0,0,0,.25), 
               0 10px 10px rgba(0,0,0,.2), 
               0 20px 20px rgba(0,0,0,.15);
}
.sub-title {
  font-family: Century Gothic, sans-serif;
    margin-top: 10px;
  color: #fff;
  font-size: 30px;
  text-transform: none;
  font-weight: 400;
}
.mouse-icon {
  position: absolute;
  border: 2px solid #fff;
  opacity: 0.8;
  border-radius: 50px;
  height: 50px;
  width: 30px;
  margin: 0 auto;
  display: block;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 100;
}
.mouse-icon .scroll {
  -webkit-animation-name: scrolling;
  -webkit-animation-duration: 1.4s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-name: scrolling;
  animation-duration: 1.4s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-play-state: running;
}
.mouse-icon .scroll {
  background: #06cefc;
  position: relative;
  border-radius: 50px;
  width: 5px;
  height: 10px;
  top: 6px;
  margin-left: auto;
  margin-right: auto;
}
@-webkit-keyframes scrolling  {
  0%   { top:2px;  opacity: 0;}
  30%  { top:8px; opacity: 1;}
  100% { top:16px; opacity: 0;}
}
@keyframes scrolling  {
  0%   { top:2px;  opacity: 0;}
  30%  { top:8px; opacity: 1;}
  100% { top:16px; opacity: 0;}
}
/*-----------------------------------------
03) Stunning
--------------------------------------------------*/
#stunning {
  padding: 80px 0;
}
.options {
  display: block;
}
.options-box{
  text-align: center;
}
.options-box .options-icon{
  margin: 0 auto 25px;
  position: relative;
  transition: all 0.3s ease-in-out 0s;
}
.options-box .options-icon i{
  font-size: 60px;
  color: #40545a;
  transition: all 0.3s ease-in-out 0s;
}
.options-box:hover .options-icon i{
  color: #06cefc;
}
.options-box .title{
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  color: #06cefc;
}
.options-box .title:after{
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin: 0 auto;
  background: #06cefc;
  transition: all 0.3s ease-in-out 0s;
}
.options-box:hover .title:after{
  width: 70px;
  margin: 15px auto 20px;
}
.options-box .description{
  font-size: 14px;
  line-height: 25px;
}
/*-----------------------------------------
04) Features
--------------------------------------------------*/
.about {
  padding-bottom: 120px;
}
.about .mockup {
  max-width: 600px;
  position: relative;
  display: inline-block;
  text-align: center;
}
.about .mockup img {
  width: 100%;
  height: auto;
}
.about .desc-list {
  padding: 100px 0;
}
.about .desc-list h2 {
  color: #40545a;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 20px;
}
.about .desc-list p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 30px;
}
.features .mockup-2 {
  max-width: 350px;
  padding: 60px 0;
  position: relative;
  display: inline-block;
  text-align: center;
}
.features .mockup-2 img {
  width: 100%;
}
.features .box {
  padding: 10px 25px;
  text-align: center;
  display: block;
  margin-top: 30px;
  -webkit-transition: ease .6s;
     -moz-transition: ease .6s;
      -ms-transition: ease .6s;
       -o-transition: ease .6s;
          transition: ease .6s;
}
.features .box-icon {
  display: table;
  margin: 0 auto 20px;
}
.features .box-icon span {
  color: #40545a;
  display: table-cell;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  vertical-align: middle;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: ease .6s;
     -moz-transition: ease .6s;
      -ms-transition: ease .6s;
       -o-transition: ease .6s;
          transition: ease .6s;
}
.box-icon span:hover {
  background: #06cefc;
  color: #fff;
}
.features .info h4 {
  color: #06cefc;
  font-size: 18px;
  text-transform: uppercase;
  padding-top: 0;
}
.features .info > p {
  font-size: 16px;
}
/*-----------------------------------------
05) Milestones
--------------------------------------------------*/ 
#milestones {
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  min-width: 100%;
  width: 100%;
  display: block;
}
.bg-image-1 {
  background: url('../../images/background/02.jpg');
}
.parallax {
  background-attachment: fixed !important;
  background-position: center center !important;
}
.wrap-milestones-content {
  background: rgba(38, 44, 51, 0.7);
  width: 100%;
}
.milestones-content {
  padding: 80px 0;
}
.milestones .counter-box {
  font-family: Century Gothic, sans-serif;
    text-align: center;
}
.counter-box .counter-icon {
  margin: 0 auto 0;
}
.counter-box .counter-icon i {
  font-size: 46px;
  color: #fff;
}
.counter-box span.counter {
  color: #06cefc;
  font-size: 34px;
}
.counter-box .counter-title {
  color: #fff;
  font-size: 18px;
  margin-top: -10px;
}
/*-----------------------------------------
06) Screenshots
--------------------------------------------------*/ 
.screenshots .owl-item {
  transition: all 200ms cubic-bezier(0.694, 0.0482, 0.335, 1) 0s;
}
.screenshots .owl-item {
  opacity: 0.3;
  transform: scale(0.8)!important;
}
.screenshots .owl-item.active.center {
  opacity: 1!important;
  transform: scale(1)!important;
}
/*-----------------------------------------
07) Team
--------------------------------------------------*/ 
.owl-carousel .owl-item {
  margin: 10px 0;
}
.our-team {
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.our-team .pic {
  position: relative;
  overflow: hidden;
}
.our-team .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  transition: all 0.3s ease 0s;
}
.our-team:hover .pic:before {
  background: rgba(85, 98, 112, 0.8)
}
.pic img {
  width: 100%;
  height: auto;
}
.our-team .social-links {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
.our-team .social-links li {
  display: inline-block;
  margin-right: 10px;
  transform: scale(0,0);
  transition: all 0.3s ease-in-out 0s;
}
.our-team:hover .social-links li:nth-child(1){
  transition-delay: 0.1s;
  transform: scale(1,1);
}
.our-team:hover .social-links li:nth-child(2){
  transition-delay: 0.2s;
  transform: scale(1,1);
}
.our-team:hover .social-links li:nth-child(3){
  transition-delay: 0.3s;
  transform: scale(1,1);
}
.our-team:hover .social-links li:nth-child(4){
  transition-delay: 0.4s;
  transform: scale(1,1);
}
.our-team .social-links li a {
  font-size: 30px;
  color: #fff;
}
.our-team .social-links li a:hover {
  text-decoration: none;
}
.our-team .info {
  padding: 30px;
}
.our-team .team-title {
  font-size: 16px;
  color: #06cefc;
  margin: 0;
}
.our-team .job {
  font-family: Century Gothic, sans-serif;
    display: block;
  font-size: 14px;
}
/*-----------------------------------------
08) Review
--------------------------------------------------*/ 
.review {
  background: url('../../images/geometric-bg.png') repeat;
}
.testimonial{
  text-align: center!important;
  margin-top: 50px;
}
.testimonial .pic{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.testimonial .pic img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.testimonial .testimonial-title{
  display: inline-block;
  font-size: 22px;
  color: #06cefc;
  margin: 0 0 50px 0;
}
.testimonial .testimonial-title small{
  font-size: 15px;
  color: #40545a;
}
.testimonial .description{
  font-size: 16px;
  line-height: 27px;
  position: relative;
  margin: 0;
}
.testimonial .description:before{
  content: "\f10d";
  font-family: fontawesome;
  font-size: 36px;
  color: #06cefc;
  margin: 20px;
}
.testimonial ul.rating {
  margin-top: 25px;
  padding: 0;
}
.testimonial ul.rating li {
  display: inline;
  color: #f2b01e;
  font-size: 18px;
  margin: 0 2px;
}
.review .owl-carousel .owl-nav {
  margin-top: 50px;
  text-align: center!important;
}
.review .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {  
  display: inline;
  margin: 0 15px;
}
.review .owl-prev, .owl-next {
  color: #40545a; 
  font-size: 36px;
  -webkit-transition: ease .6s;
     -moz-transition: ease .6s;
      -ms-transition: ease .6s;
       -o-transition: ease .6s;
          transition: ease .6s;
}
.review .owl-prev:hover, .owl-next:hover {
  color: #06cefc; 
}
/*-----------------------------------------
09) Video
--------------------------------------------------*/ 
#video {
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  min-width: 100%;
  width: 100%;
  display: block;
}
.bg-video {
  background: url('../../images/video/02.jpg');
  background-position: center center;
}
.wrap-video-content {
  background: -webkit-linear-gradient(45deg, rgba(0,201,255,0.8) 0%, rgba(38,44,51,0.7) 80%);
     background: -moz-linear-gradient(45deg, rgba(0,201,255,0.8) 0%, rgba(38,44,51,0.7) 80%);
          background: linear-gradient(45deg, rgba(0,201,255,0.8) 0%, rgba(38,44,51,0.7) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e606cefc', endColorstr='#e6262c33',GradientType=1 );
  width: 100%;
}
.video-content {
  position: relative;
  min-height: 565px;
}
.video-content .play-button {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  -webkit-box-shadow: 0 0 0 4px #fff;
     -moz-box-shadow: 0 0 0 4px #fff;
          box-shadow: 0 0 0 4px #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.video-content .play-button i {
  font-size: 36px;
  color: #fff;
  margin-top: 31px;
}
.work-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, .8);
  display: none;
}
.work-video iframe {
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.close-video {
  text-decoration: none;
  position: absolute;
  width: 38px;
  height: 38px;
  top: 50px;
  right: 50px;
  background: url('../../images/close_video.png') no-repeat;
  z-index: 9999;
}
/*-----------------------------------------
10) Pricing Tables
--------------------------------------------------*/ 
.pricing-position {
  margin-top: 90px;
}
.pricing-table {
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  padding-bottom: 40px;
  transform: translateZ(0px);
}
.pricing-table.best {
  transform: scale(1.08);
  z-index: 1;
}
.pricing-table .pricing-table-header {
  background: #fff;
  color: #40545a;
  margin: 0 0 10px;
  padding: 10px 0;
}
.pricing-table .heading {
  font-size: 30px;
  font-weight: 600;
  margin: 28px 0 5px 0;
}
.pricing-table.best .price-value {
  color: #06cefc;
}
.pricing-table .price-value {
  color: #40545a;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
.pricing-table .pricing-content {
  list-style: none;
  padding: 20px;
}
.pricing-table hr {
  width: 50%;
  border-color: #e3e3e3;
}
/*-----------------------------------------
11) FAQ
--------------------------------------------------*/
#accordion .panel {
  background: #fff!important;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1)!important;
     -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1)!important;
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1)!important;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
  border: none;
  border-radius:0;
  margin-bottom: 6px;
  border-left:3px solid #06cefc;
}
#accordion .panel-heading {
  padding:0;
  background-color:#fff;
}
#accordion .panel-title a {
  display: block;
  font-size: 15px;
  text-transform: none;
  padding: 18px 40px;
  position: relative;
}
#accordion .panel-title a.collapsed {
  border-top: 0;
  border-bottom:1px solid transparent;
}
#accordion .panel-title a:focus {
  color: #06cefc;
}
#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before { 
  content: "\f068";
  font-family: FontAwesome;
  position: absolute;
  top: 14px;
  left: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #06cefc;
}
#accordion .panel-title a.collapsed:before {
  content: "\f067";
}
#accordion .panel-body {
  line-height: 20px;
  border-top: 0 none;
  padding: 20px 30px 30px;
}
.faq .contact {
  margin-top: 140px;
}
.faq .contact h3 {
  color: #06cefc;
}
.faq .contact p {
  font-size: 17px;
}
.faq .contact .contact-btn {
  margin-top: 25px;
  display: inline-block;
  padding: 15px 60px;
  position: relative;
  cursor: pointer;
}
.faq .contact .contact-btn span {
  font-family: Century Gothic, sans-serif;
    font-size: 18px;
  color: #40545a;
  text-shadow: 0 2px 0 #fff;
  position: relative;
}
.faq .contact-btn span:hover {
  color: #06cefc;
}
.faq .contact .contact-btn:before { 
  content: "\f27b";
  font-family: FontAwesome;
  position: absolute;
  top: -45px;
  right: 20px;
  font-size: 100px;
  color: #ededed;
}
.faq .contact .contact-btn i {
  color: #06cefc;
  font-size: 60px;
  padding-right: 8px;
  vertical-align: -14px;
}
.contact-us {
  padding-top: 30px;
}
.contact-us .slider-masks {
  background-color: rgba(129, 129, 129, 0.7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.contact-us .group {
  position: relative;
  margin-bottom: 30px;
}
.contact-us input,
.contact-us textarea {
  font-size: 14px;
  padding: 15px 10px 15px 15px;
  display: block;
  width: 100%;
  border: 0 none;
  border-bottom: 2px solid #eaedf2;
  color: #969696;
}
.contact-us textarea {
  min-height: 150px;
}
.contact-us input:focus,
.contact-us textarea:focus {
  outline: none;
  border-color: #06cefc;
}
.contact-us label {
  color: #2b2b2b;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 20px;
  -webkit-transition: 0.2s ease all;
     -moz-transition: 0.2s ease all;
          transition: 0.2s ease all;
}
.contact-us input:focus ~ label,
.contact-us input:valid ~ label,
.contact-us textarea:focus ~ label,
.contact-us textarea:valid ~ label {
  top: -20px;
  font-size: 14px;
  color: #06cefc;
}
#help .modal-header .close {
  color: #fff;
  opacity: 1;
  font-size: 30px;
  position: relative;
  z-index: 1;
}
#help .modal-header {
  background: #06cefc;
  color: #fff;
  padding: 20px;
  border-bottom: none;
}
#help .modal-header {
  position: relative;
  overflow: hidden;
}
#help .modal-header:after {
  content: "\f27b";
  font-family: FontAwesome;
  position: absolute;
  top: -92px;
  right: -20px;
  font-size: 130px;
  color: rgba(0, 0, 0, 0.09);
}
#help .gradient-btn {
  margin: 0;
  position: relative;
  z-index: 1;
}
/*-----------------------------------------
12) Download
--------------------------------------------------*/ 
#download {
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  min-width: 100%;
  width: 100%;
  display: block;
}
.bg-image-2 {
  background: url('../../images/background/03.jpg');
}
.wrap-download-content {
  background: -webkit-linear-gradient(45deg, rgba(38,44,51,0.8) 20%, rgba(0,201,255,0.9) 100%);
     background: -moz-linear-gradient(45deg, rgba(38,44,51,0.8) 20%, rgba(0,201,255,0.9) 100%);
          background: linear-gradient(45deg, rgba(38,44,51,0.8) 20%, rgba(0,201,255,0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc262c33', endColorstr='#e600c9ff',GradientType=1 );
  width: 100%;
}
.download-content {
  padding: 100px 0;
}
.download-content h2 {
  color: #fff;
  margin-bottom: 0;
}
.download p {
  color: #fff;
  margin-top: 0;
}
.download .store {
  position: relative;
  top: 10px;
}
.download .store.space {
  margin: 0 15px;
}
.download .store {
  display: inline-block;
  background: #fff;
  color: #40545a;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  text-align: center;
}
.download .store i {
  font-size: 30px;
  padding-top: 18px;
}
.download .store:hover {
  color: #06cefc;
}
/*-----------------------------------------
13) Blog
--------------------------------------------------*/
.blog .blog-box {
  display: inline-block;
  margin-bottom: 50px;
}
.blog .post-image {
  position: relative;
  z-index: -1;
}
.blog .post-image-left {
  margin-right: -75px;
}
.blog .post-content {
  background: rgba(255, 255, 255, 0.92);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
     -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  padding: 20px 30px;
  margin-top: 60px; 
  position: relative;
  z-index: 1;
}
.blog .post-content.n-left {
  margin-left: -185px;
}
.blog .post-content h3 {
  margin-bottom: 25px;
}
.blog .post-content h3 a {
  color: #40545a;
}
.blog .post-content h3 a:hover {
  color: #06cefc;
} 
.blog .post-content .author {
  margin-top: 10px;
  color: #06cefc;
}
/*-----------------------------------------
14) Newsletter
--------------------------------------------------*/
.bottom-content .newsletter input {
  border-radius: 25px;
  height: 50px;
  padding-left: 25px;
  margin-bottom: 10px;
}
.bottom-content .newsletter .form-control:focus {
  border-color: #06cefc;
}
.bottom-content p {
  font-family: Century Gothic, sans-serif;
    font-size: 16px;
  color: #40545a;
  margin-bottom: 20px;
}
/*-----------------------------------------
15) Footer
--------------------------------------------------*/
.footer {
  background: rgb(255,255,255);
  background: -webkit-linear-gradient(top,       rgba(255,255,255,1) 0%, rgba(233,240,242,1) 70%);
     background: -moz-linear-gradient(top,       rgba(255,255,255,1) 0%, rgba(233,240,242,1) 70%);
          background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(233,240,242,1) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9f0f2',GradientType=0 );
  padding: 50px 0;
}
ul.social-network {
  list-style: none;
  margin-left:0 !important;
  padding: 0;
}
ul.social-network li {
  display: inline;
  margin: 0 10px;
}
.social-network a.ico-behance:hover {
  background-color:#1769ff;
}
.social-network a.ico-deviantart:hover {
  background-color:#05cc47;
}
.social-network a.ico-dribbble:hover {
  background-color:#ea4c89;
}
.social-network a.ico-facebook:hover {
  background-color:#3b5998;
}
.social-network a.ico-google:hover {
  background-color:#bd3518;
}
.social-network a.ico-instagram:hover {
  background-color:#405de6;
}
.social-network a.ico-linkedin:hover {
  background-color:#007bb7;
}
.social-network a.ico-pinterest:hover {
  background-color:#bd081c;
}
.social-network a.ico-rss:hover {
  background-color:#f26522;
}
.social-network a.ico-twitch:hover {
  background-color:#6441a5;
}
.social-network a.ico-twitter:hover {
  background-color:#33ccff;
}
.social-network a.ico-vimeo:hover {
  background-color:#1ab7ea;
}
.social-network a.ico-youtube:hover {
  background-color:#cd201f;
}
.social-network a:hover i {
  color:#fff;
}
.social-network li a {
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
     -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  display:inline-block;
  position:relative;
  margin:0 auto;
  -webkit-border-radius:50%;
     -moz-border-radius:50%;
          border-radius:50%;
  text-align:center;
  width: 60px;
  height: 60px;
  font-size:26px;
}
.social-network li i {
  margin:0;
  line-height:60px;
  text-align: center;
}
.social-network li a:hover i, .triggeredHover {
  -webkit-transform: rotate(360deg);
     -moz-transform: rotate(360deg);
     -ms--transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: all 0.4s;
     -moz-transition: all 0.4s;
      -ms-transition: all 0.4s;
       -o-transition: all 0.4s;
          transition: all 0.4s;
}
.social-network i {
  color: #40545a;
  -webkit-transition: all 0.8s;
     -moz-transition: all 0.8s;
      -ms-transition: all 0.8s;
       -o-transition: all 0.8s;
          transition: all 0.8s;
}
.copyright {
  font-size: 16px;
  text-align: center;
  margin-top: 30px; 
}
/*-----------------------------------------
16) Responsive
--------------------------------------------------*/
@media screen and (max-width: 480px){
  .parallax {
    background-attachment: scroll!important;
    background-position: top!important;
    -webkit-background-size: auto!important;
       -moz-background-size: auto!important;
            background-size: auto!important;
  }
  .white-bg, .grey-bg, .blue-bg, .gradient-bg {
    padding: 40px 0;
  }
}

@media screen and (max-width: 768px){
  .parallax {
    background-attachment: scroll!important;
    background-position: top!important;
    -webkit-background-size: auto!important;
       -moz-background-size: auto!important;
            background-size: auto!important;
  }
  .counter-box .counter-title {
    margin-top: -10px;
  }
  .about .features-list h2 {
    font-size: 30px;
  }
  .section-title {
    font-size: 38px;
  }
  .hero-content-video {
    min-width: 100%; 
    padding: 10px;
  }
  .about .desc-list {
    padding-top: 0;
  }
  .about .mockup, .features .mockup-2 {
    width: 240px;
    margin-bottom: 30px;
  }
  .hero-text {
    margin-top: 30px;
  }
  #hero-video h1 {
    margin-top: 50px;
    font-size: 80px;
    text-align: center;
  }
  #hero-video .hero-img {
    display: none;
  }
  #hero-video .sub-title {
    text-align: center;
  }
  .sub-title {
    font-size: 18px;
  }
  .bounce {
    bottom: 5px;
  }
  .milestones .counter-box {
    margin-bottom: 15px;
  }
  .counter-box span.counter {
    font-size: 40px;
  }
  .pricing .col-md-4 {
    padding: 15px!important;
  }
  .pricing-table.best {
    transform: scale(1);
  }
  .video-content {
    min-height: 385px;
  }
  .blog .post-content {
    padding: 25px;
    margin-top: 0;
  }
  .blog .post-image-left {
    margin-right: 0;
  }
  .blog .post-content.n-left {
    margin-top: -150px;
    margin-left: 0;
  }
  .faq .contact {
    margin-top: 35px;
  }
  .faq .contact .contact-btn i {
    display: block;
    margin-bottom: 5px;
  }
  ul.social-network li {
    margin: 0 5px;
  }
  .social-circle li a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .social-circle li i {
    line-height: 50px;
  }
}

@media screen and (max-width: 992px) {
  .nav > li > a {
    padding-right: 10px;
    padding-left: 10px;
  }
  .hero-content-video {
    min-width: 100%; 
    padding: 10px;
  }
  .options-box { 
    margin-bottom: 30px; 
  }
  .pricing-table { 
    margin-bottom: 25px;
  }
  .blog .post-image-left {
    margin-right: 0;
  }
  .blog .post-content.n-left {
    margin-left: 0;
  }
  .blog .post-content {
    margin-top: 0;
  }
}