body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #14548e;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #37abf2;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 0px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}


/* Navigation Styles */
nav { position: relative; float: right; }
header.dark nav {}
header.light nav { background-color:rgba(0,0,0,0.5); }

ul.main-nav { 
  list-style-type: none; 
  padding: 0px;
  font-size: 0px;
  max-width: 1000px;
  margin: 0 auto;
}

ul.main-nav > li.active{
  border-bottom: 3px solid #ef3b01;
}
ul.main-nav > li:hover{
  border-bottom: 3px solid #ef3b01;
}
ul.main-nav > li { 
  display: inline-block;
  padding: 0; 
}

ul.main-nav > li > a { 
  display: block; 
  padding: 20px 30px; 
  position: relative;
  font-size: 16px;
  font-weight: 400;
  box-sizing: border-box;
  cursor: pointer;
}

ul.main-nav > li:hover {color: #ef3b01; font-weight: 500; }
ul.main-nav > li:hover > a { color: #333; font-weight: 400; }

ul.main-nav > li ul.sub-menu-lists {
  margin: 0px;
  padding: 0px;
  list-style-type : none;
  display:block;
}

ul.main-nav > li ul.sub-menu-lists > li {
  padding: 2px 0;
}

ul.main-nav > li ul.sub-menu-lists > li > a {
  font-size: 13px;
}

.ic {
  position: fixed; 
  cursor: pointer;
  display: inline-block;
  right: 25px;
  width: 32px;
  height: 24px;
  text-align: center;
  top:0px;
  outline: none;
}

.ic.close { 
  opacity: 0; 
  font-size: 0px; 
  font-weight: 300; 
  color: #fff;
  top:8px;
  height:40px;
  display: block;
  outline: none;
}

/* Menu Icons for Devices*/
.ic.menu { top:25px; z-index : 20; }

.ic.menu .line { 
  height: 4px; 
  width: 100%; 
  display: block; 
  margin-bottom: 6px; 
}
.ic.menu .line-last-child { margin-bottom: 0px;  }

.sub-menu-head { margin: 10px 0; font-size: 15px!important; border-bottom: 2px solid #37abf2; padding: 10px 0px;}
.banners-area { margin-top: 20px; padding-top: 15px; }


@media only screen and (max-width:768px) {
	.sub-menu-single-block {
		padding:10px 30px;
	}
  .sub-menu-head { color:orange; }
  .ic.menu { display: block; }
  header.dark .ic.menu .line { background-color: #333; } 
  header.light .ic.menu .line { background-color: #000; }
  .ic.menu .line {
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
  }
  .ic.menu:focus .line { background-color: #fff !important; }
  
  .ic.menu:focus .line:nth-child(1) { 
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); 
  }
  
  .ic.menu:focus .line:nth-child(2){ 
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); 
    margin-top: -10px;
  }
  
  .ic.menu:focus .line:nth-child(3){
    transform: translateY(15px);
    opacity: 0;
  }
  
  .ic.menu:focus{ outline: none; }
  .ic.menu:focus ~ .ic.close { opacity: 1; z-index : 21;  outline: none;  }
  
  /*
  
  .ic.menu:focus ~ .ic.close { opacity: 1.0; z-index : 21;  }
  .ic.close:focus { opacity: 0; }
  */
  .ic.menu:hover, 
  .ic.menu:focus{ opacity: 1; }
  

  nav { background-color: transparent; }
  
 /* Main Menu for Handheld Devices  */
  ul.main-nav {
    z-index:2; 
    padding: 50px 0;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 0px;
    background-color:rgba(0,0,0,1);
    height: 100%;
    overflow: auto;
    /*CSS animation applied : Slide from Right*/
   -webkit-transition-property: background, width;
    -moz-transition-property: background, width;
    -o-transition-property: background, width;
    transition-property: background, width;
    -webkit-transition-duration: 0.6s;
      -moz-transition-duration: 0.6s;
      -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
  }
  
  .ic.menu:focus ~ .main-nav { width: 300px; background-color:rgba(0,0,0,1); }
  
  ul.main-nav > * { 
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.4s;
      -moz-transition-duration: 0.4s;
      -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    opacity: 0;
  }
  .ic.menu:focus ~ .main-nav > * {opacity: 1;}
  
  ul.main-nav > li > a:after {display: none;}
  ul.main-nav > li:first-child { border-radius: 0px; }
  ul.main-nav > li {
    display: block;
    border-bottom: 1px solid #444;
  }
  
  ul.main-nav > li > a { font-weight: 600; }
  
  ul.main-nav > li ul.sub-menu-lists > li a { color: #eee; font-size: 13px; }
  .sub-menu-head { font-size: 15px;}
  ul.main-nav > li:hover { background-color: transparent;  }
  ul.main-nav > li:hover > a {color: #fff; text-decoration: none; font-weight: 600;}
 .ic.menu:focus ~ ul.main-nav > li > div.sub-menu-block {
    border-left: 0px solid #ccc;
    border-right: 0px solid #ccc;
    border-bottom: 0px solid #ccc;
    position: relative;
    visibility: visible;
    opacity: 1.0;
    width: 100%;
    
  }
  
  .sub-menu-block { padding: 0 30px; }
  .banners-area { padding-bottom: 0px;  }
  .banners-area div { margin-bottom: 15px;  }
  .banners-area { border-top: 1px solid #444; }
}

@media only screen and (min-width:769px) {
  .ic.menu { display: none; }
  /* Main Menu for Desktop Devices  */
  ul.main-nav { display: block; position: relative; }
  .sub-menu-block { padding: 25px 40px; }
  
  /* Sub Menu */
  ul.main-nav > li > div.sub-menu-block { 
  visibility: hidden;
  background-color: #fff;
  box-shadow:0px 5px 8px #666;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  position: fixed;
  margin-top: 3px;
  width: 100%;
  color: #333;
  left: 0;
  box-sizing: border-box;
  z-index : 3;
  font-size: 16px;
  opacity: 0;
    
  /*CSS animation applied for sub menu : Slide from Top */
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  -ms-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  
  }
  
  /* Sub Menu */
  ul.main-nav > li > div.sub-menu-single-block { 
    visibility: hidden;
    background-color: #fff;
    box-shadow:0px 5px 8px #666;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    position: fixed;
    margin-top: 3px;
    width: auto;
    min-width: 180px;
    color: #333;
    box-sizing: border-box;
    z-index : 3;
    font-size: 16px;
    opacity: 0;
      
    /*CSS animation applied for sub menu : Slide from Top */
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    
    }
    ul.main-nav > li:hover > div.sub-menu-single-block{ 
      background-color: #f9f9f9; 
      visibility: visible;
      padding: 12px 20px;
      opacity: 1;
      -webkit-transform: rotateX(0deg);
      -moz-transform: rotateX(0deg);
      -ms-transform: rotateX(0deg);
      transform: rotateX(0deg);
    }
    
    ul.main-nav > li:hover > div.sub-menu-single-block a{
      padding: 8px 0px;
    }

    ul.main-nav > li > div.sub-menu-single-block > * {
      -webkit-transition-property: opacity;
      -moz-transition-property: opacity;
      -o-transition-property: opacity;
      transition-property: opacity;
      -webkit-transition-duration: 0.4s;
        -moz-transition-duration: 0.4s;
        -o-transition-duration: 0.4s;
      transition-duration: 0.4s;
      opacity: 0;
    }
    
    ul.main-nav > li:hover > div.sub-menu-single-block > * {
      opacity: 1;
    }

  ul.main-nav > li:hover > div.sub-menu-block{ 
    background-color: #f9f9f9; 
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  
  ul.main-nav > li > div.sub-menu-block > * {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.4s;
      -moz-transition-duration: 0.4s;
      -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    opacity: 0;
  }
  
  ul.main-nav > li:hover > div.sub-menu-block > * {
    opacity: 1;
  }
  
  .sub-menu-head { font-size: 20px;}
  
  /* Drop Down/Up Arrow for Mega Menu */
  ul.main-nav > li > a.mega-menu > span { display: block; vertical-align: middle; }
  ul.main-nav > li > a.mega-menu > span:after {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    content: '';
    background-color: transparent;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
  }

  ul.main-nav > li:hover > a.mega-menu span:after{
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 0px solid transparent;
    border-bottom: 5px solid #666;
  }
  .banners-area { border-top: 1px solid #ccc; }
}

body::-webkit-scrollbar { display: none; }

#slide-window
  {
  position: relative;
  width:100%;
  height: 600px;
  top: 0px;
  margin-top:77px;
  left:0px;
  }

#slides
  {
  height:100%;  
  position:absolute;
  margin:0px;
  padding:0px;
  
  -webkit-transform: translate3d(0px,0px,0px);
  transform: translate3d(0px,0px,0px);
    
  transition: all 0.66s ease; -webkit-transition: all 0.66s ease; 
  
  }

.slide 
  {
  list-style:none;
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 500px;
  height: 100%;
  background: #ccc;
  text-align: center;
  line-height: 300px; 
  background-size: cover; 
  background-position:50% 50%;
  color:#fff;
  -webkit-transform: translate3d(0px,0px,0px);
  visibility:hidden;
  -webkit-transform-style: preserve-3d;
  }

.alive { visibility:visible; }

.nav 
  { 
  position:fixed; 
  z-index:9; 
  top:50%; 
  cursor:pointer; 
  color:#fff; 
  opacity:0.7; 
  transition: all 0.66s ease; -webkit-transition: all 0.66s ease; 
  }

.nav:hover { opacity:1.0; }
#left { left:20px; position: absolute;}
#right { right:20px; position: absolute;}






/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(45deg, #ef3b01, #f5a644);
  color: #fff;
  padding: 2px 20px 8px 20px;
  font-size: 16px;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
}

.back-to-top:focus {
  color: #ef3b01;
  background: #e7e7e7;
  outline: none;
}

.back-to-top:hover {
  color: #ef3b01;
  background: #e7e7e7;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 10px 0;
  height: 77px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: -4px 0 0 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height:56px ;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
    margin-top: 0;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background:#fff;;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  height: 77px;
  transition: all 0.5s;
  box-shadow:1px 2px 6px #666
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 10px 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #333;
  font-weight: 400;
  font-size: 14px;
  outline: none;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #c90203;
}
.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #c90203;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #333;
}

@media (max-width: 768px) {
  .intro-text{
    padding-top: 200px;
  }
  .product-screens{
    display: none;
  }
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

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

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #bababa;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
  background: #333;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #1dc8cd;
}

#mobile-nav ul .menu-item-active {
  color: #1dc8cd;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 36px;
  color: #11538c;
  text-align: center;
  font-weight: 400;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #777;
  font-style: italic;
}

.section-divider {
  display: block;
  width: 250px;
  height: 2px;
  background: #37abf2;
  margin: 0px auto 20px auto;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #fff;
}

/* About Us Section
--------------------------------*/
#featured_section {
  padding: 90px 0;
  overflow: hidden;
}
.feature_block:hover{
  background: #fff;
  border: 1px solid #ddd;
  padding:40px 30px;
  text-align: center;
  color: #333;
  box-shadow:0px 5px 8px #ddd;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.feature_block{
  background: #fff;
  padding:40px 30px;
  border: 1px solid #fff;
  text-align: center;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.feature_block .icon_why{
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.feature_block h2{
  color: #333;
}
.feature_block a{
  font-weight: 500;
}
.feature_block:hover a{
  color: #222!important;
}
.feature_block:hover h3{
  color: #222;
}
.feature_block p{
  color: #999;
}
.feature_block:hover p{
  color: #666;
}


/* Product Features Section
--------------------------------*/
#features {
  background: #fff;
  padding: 90px 0;
  overflow: hidden;
}

#features .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#features .features-img img {
  max-width: 100%;
}

#features .box {
  margin-bottom: 0px;
  text-align: left;
  background: url('../img/bullets_icon.png') 20px center no-repeat;
  padding-left: 40px; 
}
#features .box p{
  margin-bottom: 10px;
}
#features .title {
  font-weight: 300;
  margin-bottom: 5px;
  font-size:16px;
}

#features .title a {
  color: #111;
}

#features .description {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #999;
}

#features .section-description {
  padding-bottom: 10px;
}

.product_feature_img img{
  max-width: 100%;
}
.product_features_list{
  
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  overflow: hidden;
  background: linear-gradient(-25deg, rgba(11, 53, 153, 0.6), rgba(29, 200, 205, 0.2)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-weight: 500;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  background: linear-gradient(45deg, #ef3b01, #f5a644);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 33px;
  border-radius: 5px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  margin: 10px;
  color: #fff;
  box-shadow: 0px 4px 10px #222;
}

#call-to-action .cta-btn:hover {
  color: #ef3b01;
  background: #fff;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;  
}

/* More Features Section
--------------------------------*/
#more-features {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#more-features .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
}

#more-features .icon {
  float: left;
}

#more-features .icon i {
  color: #666666;
  font-size: 80px;
  transition: 0.5s;
  line-height: 0;
}

#more-features .icon i:before {
  background: #dd131e;
  background: linear-gradient(45deg, #dd131e, #d6285d);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#more-features h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#more-features h4 a {
  color: #111;
}

#more-features p {
  font-size: 14px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #more-features .box {
    margin-bottom: 20px;
  }
  #more-features .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #more-features h4, #more-features p {
    margin-left: 0;
    text-align: center;
  }
}


/* Contact Section
--------------------------------*/

.footer_image_text{
  background:#14548e ;
}
#footer_links {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0 50px;
  overflow: hidden;
  /* background: #131e38; */
}
.footer_messaging h1{
  color: #fff;
  font-size: 400%;
  text-shadow: 0px 3px 10px #000;
}
.footer_messaging p{
  color: #adc8db;
  font-size: 120%;
  padding: 0px 10%;
}
#footer_links .footer_sec{
  margin-bottom: 15px;
}
#footer_links .footer_sec h5 {
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
}

#footer_links .footer_sec ul{
  padding: 0px;
  margin: 0px;
}
#footer_links .footer_sec ul li{
  list-style: none;
}
#footer_links .footer_sec ul a{
  color: #80bce4;
  background: url(../img/foot_bullet_icon.png) left center no-repeat;
  padding: 0px 10px 5px 20px;
  display: block;
}
#footer_links .footer_sec ul a:hover{
  color: #fff;
  background: url(../img/foot_bullet_icon_hover.png) left center no-repeat;
}

#footer_links .footer_sec p {
  font-size: 14px;
  line-height: 24px;
  color: #f8f8f8;
}

#footer_links .social-links {
  padding-bottom: 20px;
}

#footer_links .social-links a {
  display: inline-block;
  color: #717888;
  transition: 0.3s;
  margin-bottom: 18px;
}
#footer_links .social-links a:hover{
  color: #fff;
}

#footer_links .social-links a:hover i{
  background: linear-gradient(45deg, #ef3b01, #f5a644);
  color: #fff;
}

#footer_links .social-links a i{
  font-size: 18px;
  width: 36px;
  height: 36px;
  background:#ccc;
  line-height: 1;
  padding: 10px 0;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
}
#footer_links .info {
  color: #f8f8f8;
}

#footer_links .info i {
  font-size: 32px;
  color: #f8f8f8;
  float: left;
  line-height: 1;
}

#footer_links .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #191919;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  color: #717888;
  font-size: 14px;
}
.text-white{color: #fff;}

#footer .footer-links a {
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

.btn_vtech {
  background: linear-gradient(360deg, #ef3b01, #f5a644);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 33px;
  border-radius:5px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;  margin: 10px;
  color: #fff;
  box-shadow: 0px 4px 10px #000;
}

.btn_vtech:hover, .btn_vtech:focus {
  color: #ef3b01;
  background: #fff;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;  
}

.MultiCarousel { float: left; overflow: hidden; padding: 15px; width: 100%; position:relative; }
.MultiCarousel .MultiCarousel-inner { transition: 1s ease all; float: left; }
.MultiCarousel .MultiCarousel-inner .item { float: left; width: 290px!important; padding: 15px;}
.MultiCarousel .MultiCarousel-inner .item:hover .pad15{border: 1px solid #d1d1d1; box-shadow:1px 6px 18px #bababa;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.MultiCarousel .MultiCarousel-inner .item > div { text-align: left; padding:0px;  background:#fff; color:#666; border-radius: 10px;}
.MultiCarousel .leftLst, .MultiCarousel .rightLst { position:absolute; border-radius:50%;top:calc(50% - 20px); }
.MultiCarousel .leftLst { left:5px; width: 38px;}
.MultiCarousel .rightLst { right:5px; width: 38px;}    
.MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over { pointer-events: none; background:#ccc;  border: 0px;}
.MultiCarousel .MultiCarousel-inner .item .pad15{
  border: 1px solid #ddd; border-radius: 10px;
}
.MultiCarousel .card_content{
  padding: 20px;
}
.MultiCarousel .card_cta{
  background: #f8f8f8;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #e7e7e7;
  border-radius: 0px 0px 10px 10px;
}
.MultiCarousel .card_cta a{color: #d83d08;}
.MultiCarousel .card_cta a:hover{
  color:#333;
}
.MultiCarousel .card_image img{
  border-radius:10px 10px 0px 0px;
  border-bottom: 1px solid #ddd;
  max-width: 100%;
}
.MultiCarousel .card_image{

}
.MultiCarousel .card_title{
  font-weight: 500;
  font-size: 18px;
}


@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

fieldset, label { margin: 0; padding: 0; }

/****** Style Star Rating Widget *****/

.rating { 
  border: none;
  float: left;
}

.rating > input { display: none; } 
.rating > label:before { 
  margin: 5px;
  font-size: 1.25em;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}

.rating > .half:before { 
  content: "\f089";
  position: absolute;
}

.rating > label { 
  color: #ddd; 
 float: right; 
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85;  } 


.slider_caption{
  width: 80%;
  margin: 15% auto 0px auto;
}
.slider_caption h2{
  color: #51bdff;
  text-shadow: 2px 1px 3px #111;
}
.slider_caption h2 strong{
  color: #fff;
}
.slider_caption h5{
  color: #d1d1d1;
  text-shadow: 2px 1px 3px #111;
}




fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact input[type="password"],
#contact input[type="date"],
#contact input[type="number"],
#contact select,
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type="text"]:hover, #contact input[type="text"]:focus,
#contact input[type="email"]:hover, #contact input[type="email"]:focus,
#contact input[type="tel"]:hover, #contact input[type="tel"]:focus,
#contact input[type="url"]:hover, #contact input[type="url"]:focus,
#contact textarea:hover, #contact textarea:focus {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #f5a644;
  background: #fff5dc
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #ef3b01;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type="submit"]:hover {
  background: #f5a644;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}


.section_text{
  padding: 90px 0px 40px;
  color: #666;
  line-height: 26px;
  font-size: 17px;
}



ul.main-nav > li > a.mega-menu-single > span { display: block; vertical-align: middle; }
ul.main-nav > li > a.mega-menu-single > span:after {
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  content: '';
  background-color: transparent;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

ul.main-nav > li:hover > a.mega-menu-single span:after{
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 0px solid transparent;
  border-bottom: 5px solid #666;
}