/*Global Styling*/
body {
    font-family: 'Raleway', sans-serif;
    /* color: #a5a5a5; */
    color: #777777;
}

/*common font family*/
p, .heading-title > span, .process-wrapp li > .pro-step,
.progress-bars .progress p, .progress-bars .progress .progress-bar span,
.price-table .ammount .dur, .pagination li > a, .counters .count_nums,
.price-table .ammount h2, .price-table ul li, .webcats li a > span,
.getin_form .form-control{
    font-family: 'Open Sans', sans-serif;
}
p a{
   color: orange;
} 

p a:hover{
   color: rgb(189, 47, 100);
} 
.orange{
   color: orange;
}
.subred{
   color: #ff85a7;
}
.slides{
   width: 100%;
   height: 100%;
   float: left;
}
.iiot{
   font-family: Georgia, 'Times New Roman', Times, Verdana, serif;
   font-size: .8em;
}
.visible {
   visibility: visible;
   opacity: 1;
   transition: opacity 2s linear;
 }
 .hidden {
   visibility: hidden;
   opacity: 0;
   transition: visibility 0s 2s, opacity 2s linear;
 }
.imgbox{
   width: 60%;
   margin: 0 auto;
   margin-bottom: 20px;
}

.closemark button{
   float: left; 
   display: block; 
   padding: 20px;
}
.products h4{
   font-size: 1.6em;
   padding-top: 8px;
   color: #3e3e3e;
}

.counter-photo ::before{
   background-color: #f7144e;
}
.tp-caption h4 {
   font-size: 1.25rem;
}
.heading_space {
   margin-bottom: 1.6rem;
}
.tp-mask-wrap h1{ 
   background-color:black;
   opacity: .7; 
   padding: 30px 128px 80px 128px; 
}
.tp-mask-wrap h2{ 
   background-color:black;
   opacity: .7;
   padding: 30px 128px 80px 128px; 
}
.padding20{
   padding-top: 30px;
   padding-bottom: 20px;
}
.heading-title > span {
   text-transform: none;
}
.fullclear{
   clear: both;
   width: 100%;
}

.pincode{
   display: none;
}
.heading-title > span.live{
   color: rgb(241, 171, 3);
}
.card-title{
   font-weight: bold;
}
.card-subtitle{
   color: #f7144e;
}  
.three-col-pricing .price-table, .centered-table .price-table {
   padding: 1.8rem 1.5rem;
}
.price-table.items {
   padding: 1rem 3rem 2rem 3rem;
   border: none;
	/* border-right: 1px solid #f6f3f3; */
    background: #51617f;
    -webkit-border-radius: 10px; 
    border-radius: 10px;
}
.price-table.uses {
   padding: 0 1em 1.4em 0;
   border: none;
}
.price-table.uses ul li {
   margin-top: .4em;
}

.price-table.specs ul li {
   margin-top: .5em;
   text-align: left;
}

.price-table.uses ul li > span::before {
	content: "\f00c";
   /* color: #f7144e; */
   color: #1463f7;
	margin-right: 8px;
	width: 20px;
	margin-left: -20px;
} 

.price-table.items li {
   color:white;
}
.noborder{
   border: none;
}

.paddingsmall {
   padding: 2rem 0;
}

.paddinghalf {
   padding: 2.5rem 0;
}
#testimonial h5{
   font-weight: 100;
   line-height: 1.5em;
}
#testimonial h5 b{
   font-weight: 600;
   color: orange;
}
.grid-container{
   max-width: 1024px
}
.row.grid img{
   width: 100%;
}  

ul.steps li {
   width: 2em;
   height: 2em;
   text-align: center;
   line-height: 2em;
   border-radius: 1em;
   background: dodgerblue;
   margin: 0 1em;
   display: inline-block;
   color: white;
   position: relative;
 }
 
 ul.steps li::before{
   content: '';
   position: absolute;
   top: .9em;
   left: -4em;
   width: 4em;
   height: .2em;
   background: dodgerblue;
   z-index: -1;
 }
 .red{
    color: red;
 }
.kbs{
   color: #f7144e;
}
.orange{
   color: orange;
}

 ul.steps li:first-child::before {
   display: none;
 }


.exp {
   display: table;
   width: 100%;
   height: 100%;
 }
 .exp .checkbox {
   display: table-cell;
   width: 100%;
   height: 100%;
   vertical-align: middle;
   text-align: center;
 }
 
 label {
   display: inline-block;
   color: #fff;
   cursor: pointer;
   position: relative;
 }
 label span {
   display: inline-block;
   position: relative;
   background-color: transparent;
   width: 25px;
   height: 25px;
   transform-origin: center;
   border: 2px solid #fff;
   border-radius: 50%;
   vertical-align: -6px;
   margin-right: 10px;
   transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
 }
 label span:before {
   content: "";
   width: 0px;
   height: 2px;
   border-radius: 2px;
   background: #fff;
   position: absolute;
   transform: rotate(45deg);
   top: 13px;
   left: 9px;
   transition: width 50ms ease 50ms;
   transform-origin: 0% 0%;
 }
 label span:after {
   content: "";
   width: 0;
   height: 2px;
   border-radius: 2px;
   background: #fff;
   position: absolute;
   transform: rotate(305deg);
   top: 16px;
   left: 10px;
   transition: width 50ms ease;
   transform-origin: 0% 0%;
 }
 label:hover span:before {
   width: 5px;
   transition: width 100ms ease;
 }
 label:hover span:after {
   width: 10px;
   transition: width 150ms ease 100ms;
 }
 
 input[type="checkbox"] {
   display: none;
 }
 input[type="checkbox"]:checked + label span {
   background-color: #fff;
   transform: scale(1.25);
 }
 input[type="checkbox"]:checked + label span:after {
   width: 10px;
   background: #f7144e;
   transition: width 150ms ease 100ms;
 }
 input[type="checkbox"]:checked + label span:before {
   width: 5px;
   background: #f7144e;
   transition: width 150ms ease 100ms;
 }
 input[type="checkbox"]:checked + label:hover span {
   background-color: #fff;
   transform: scale(1.25);
 }
 input[type="checkbox"]:checked + label:hover span:after {
   width: 10px;
   background: #f7144e;
   transition: width 150ms ease 100ms;
 }
 input[type="checkbox"]:checked + label:hover span:before {
   width: 5px;
   background: #f7144e;
   transition: width 150ms ease 100ms;
 }
 
.ic{
   width: 40px;
   height: 56px;
   margin: 25px auto 0 auto;
}

.ic.ota{ background: url('../images/ic_ota.png') 0 0 no-repeat;}
.ic.mesh{ background: url('../images/ic_mesh.png') 0 0 no-repeat; } 
.ic.gsm{ background: url('../images/ic_gsm.png') 0 0 no-repeat; }
.ic.gauge{ background: url('../images/ic_gauge.png') 0 0 no-repeat; }
.ic.dcloud{ background: url('../images/ic_dcloud.png') 0 0 no-repeat; }
.ic.wifi{ background: url('../images/ic_wifi.png') 0 0 no-repeat; }
.ic.plug{ background: url('../images/ic_plug.png') 0 0 no-repeat; }

/* Helper Classes & Shorcodes */
.bglight {
    background: #f6f6f6; 
}
.bgdefault {
    background: #6e7b95;
}
.whitecolor {
    color: #ffffff;
}
.darkcolor {
    color: #212331;
}
.extradark-color {
    color: #212331;
}
.defaultcolor {
    color: #6e7b95;
}
section{
    position: relative;
}
.gradient_bg{
    background:#f7144e;
}
.gradient_bg_default{
    /* background: #6e7b95; */
    background: url('../images/bkdark2.jpg') 0 0 no-repeat;
    /* background: url('../images/bg-dashoee.jpg') 0 0 no-repeat; */
    background-size: 100%;  
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

/*heading Titles */
.heading-title > span{
    color: #f7144e;
}
.whitecolor.heading-title > span{
    color: #fff;
}


 /*hover on images*/
.hover-effect::before,
.hover-effect::after {
   background: #fff;
}

/*Back To Top*/
.back-top {
   color: #fff;
   background: #f7144e;
}
.back-top::before {
   background: #6e7b95;
}
.back-top:hover, .back-top:focus {
   color: #fff;
}

/* ----- Social Icons ----- */
ul.social-icons li a {
   color: #676767;
}
ul.social-icons.white li a,
ul.social-icons-simple.white li a{
    color: #fff;
}
ul.social-icons-simple li a:hover, 
ul.social-icons-simple li a:focus{
    color: #f7144e;
}
ul.social-icons li a:hover, 
ul.social-icons li a:focus,
ul.social-icons.white li a:hover, 
ul.social-icons.white li a:focus{
    color: #fff;
   -webkit-box-shadow: 0 0 15px 30px #f7144e inset;
   box-shadow: 0 0 15px 30px #f7144e inset;
}

/*-----Buttons-----*/
.btnprimary, .btnprimary-alt{
    background: #f7144e;
}
.btnsecondary{
   background: #f7144e ;
}
.btnwhite{
    background: #fff;
   color: #212331;
}
.btnok{
   background: lime;
   color:green;
}

.btnok:hover, .btnok:focus{
    background: orange;
    color: #FFF;
}
.btnwhite-hole {
   background: transparent;
   border: 1px solid #fff;  
}
.btnwhite:hover, .btnwhite:focus{
    background: #6e7b95;
}

.btnwhite-hole:hover, .btnwhite-hole:focus {
   color: #212331;
   background: #fff;
}
.btnprimary:hover, .btnprimary:focus{
   background: #f7144e ;
   border: 1px solid #f7144e ;
}
.btnprimary-alt:hover, .btnprimary-alt:focus {
   background: transparent;
   border: 1px solid #6e7b95;
   color: #6e7b95;
}
.rev_slider .btnprimary-alt:hover, .rev_slider .btnprimary-alt:focus {
   background: transparent;
   border: 1px solid #fff;
}

.btnsecondary:hover, .btnsecondary:focus {
   background: #6e7b95;
   border: 1px solid #6e7b95;
}
.btnsecondary.hvrwhite:hover, .btnsecondary.hvrwhite:focus,
.btnprimary.hvrwhite:hover, .btnprimary.hvrwhite:focus {
   background: #fff;
   border: 1px solid #fff;
   color: #212331;
}

.btn-gradient-hvr::before {
    background: -webkit-linear-gradient(90deg, #423f9c, #862359);
    background: -webkit-gradient(linear, left top, right top, color-stop(#423f9c), color-stop(#862359));
    background: -webkit-linear-gradient(left, #423f9c, #862359);
    background: -o-linear-gradient(left, #423f9c, #862359);
    background: -webkit-gradient(linear, left top, right top, from(#423f9c), to(#862359));
    background: linear-gradient(90deg, #423f9c, #862359);
}
.scndry-gradient-hvr::before {
    background: -webkit-linear-gradient(90deg, #00e4ce 31%, #00abc9 69%);
    background: -webkit-gradient(linear, left top, right top, color-stop(31%, #00e4ce), color-stop(69%, #00abc9));
    background: -webkit-linear-gradient(left, #00e4ce 31%, #00abc9 69%);
    background: -o-linear-gradient(left, #00e4ce 31%, #00abc9 69%);
    background: linear-gradient(90deg, #00e4ce 31%, #00abc9 69%);
}
.btn-gradient-hvr:hover, .btn-gradient-hvr:focus {
   border-color: #ec6d48 ;
}
.scndry-gradient-hvr:hover, .scndry-gradient-hvr:focus {
   border-color: #f7144e;
}

.btnwhite-hole, .btnwhite:hover, .btnwhite:focus,
.btnprimary, .btnsecondary, .btnprimary-alt,
.btnprimary:hover, .btnprimary:focus,
.btnsecondary:hover, .btnsecondary:focus,
.rev_slider .btnprimary-alt:hover, .rev_slider .btnprimary-alt:focus{
   color: #fff;
}


/*-------------------------------*/
    /*Navigation Starts */
/*-------------------------------*/
.bg-white {
   background: #fff;
}
.fixedmenu {
   background: #6e7b95;
}
.center-brand.fixedmenu,
.bg-white.fixedmenu,
.bg-transparent-light.fixedmenu,
.bg-transparent-white.fixedmenu{
   background: #fff;
}
.nav-whitebg {
   background: #fff;
}
.navbar-nav .nav-link {
   color: #212331;
}
.center-brand .navbar-nav .nav-link,
.transparent-bg .navbar-nav .nav-link,
.fixed-bottom .navbar-nav .nav-link{
   color: #fff;
}
.center-brand.fixedmenu .navbar-nav .nav-link {
   color: #212331;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
   color: #f7144e;
}
.fixedmenu .navbar-nav .nav-link.active,
.fixedmenu .navbar-nav .nav-link.active:hover,
.fixedmenu .navbar-nav .nav-link.active:focus,
.center-brand.fixedmenu .navbar-nav .nav-link.active{
   background: #f7144e;
   color: #fff;
}
.center-brand .navbar-nav .nav-link:first-of-type {
   background: rgba(0,0,0,0);
}

  
/*toggle responsive*/
.navbar-toggler span {
   background: #fff;
}
.bg-white .navbar-toggler span {
   background: #212331;
}
.center-brand.fixedmenu .navbar-toggler span {
   background:#f7144e;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    background-color: transparent;
}


/*-----Side Menu----*/
.side-menu {
	background: #96062d;
}
.just-sidemenu .side-menu {
	background: #6e7b95;
}
.transparent-sidemenu .side-menu {
    background: rgba(0,0,0,.95);
}
.side-menu.side-menu-active {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/*Side overlay*/
#close_side_menu {
    background-color: #000;
}

/*side clode btn*/
.side-menu .btn-close::before, .side-menu .btn-close::after {
	background: #fff;
}

/*side open btn*/
.sidemenu_btn > span {
   background: #212331;
}
.center-brand .sidemenu_btn > span,
.transparent-bg .sidemenu_btn > span,
.fixed-bottom .sidemenu_btn > span,
.just-sidemenu .toggle_white.sidemenu_btn > span {
   background: #fff;
}
.center-brand.fixedmenu .sidemenu_btn > span{
   background: #212331;
}
.side-nav .navbar-nav .nav-link,.side-nav .navbar-nav .nav-linke {
	color: #fff;
}
.side-nav .navbar-nav .nav-link::after{
   background: #fff;
}
.side-nav .navbar-nav .nav-link.active {
   background: transparent;  
}


@media (max-width: 992px) {
   .center-brand .navbar-nav .nav-link, 
   .transparent-bg .navbar-nav .nav-link {
      background: #6e7b95;
   }
   .center-brand.fixedmenu .navbar-nav .nav-link, 
   .transparent-bg.fixedmenu .navbar-nav .nav-link {
      background: transparent;
   }   
}

@media only screen and (max-device-width : 666px) {
   #rev_arrows h2{ font-size: 3.8em; }
   .slides.f1{ background: url('../images/robot-xsp.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f2{ background: url('../images/bdashboard-xsp.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f3{ background: url('../images/vineyards-xsp.jpg') 0 0 no-repeat; background-size: cover; }
   .slides.f4{ background: url('../images/buildings-xsp.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f5{ background: url('../images/industry-xsp.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f6{ background: url('../images/tubs-xsp.jpg') 0 0 no-repeat; background-size: cover; }
   .slides.f7{ background: url('../images/moon-xsp.jpg') 0 0 no-repeat; background-size: cover; } 
   .process-wrapp li > .pro-step {

      height: 52px;
      width: 52px;
      line-height: 52px;
      font-size: 16px;
      -webkit-border-radius: 50%;
      border-radius: 50%;
   }
   .process-wrapp h5{
      font-size: .9em;
   }
   .process-wrapp li p:last-child {
      font-size: 11px;
   }

}
@media only screen and (min-device-width : 667px) {
   .slides.f1{ background: url('../images/robot-xsl.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f2{ background: url('../images/bdashboard-xsl.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f3{ background: url('../images/vineyards-xsl.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f4{ background: url('../images/buildings-xsl.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f5{ background: url('../images/industry-xsl.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f6{ background: url('../images/tubs-xsl.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f7{ background: url('../images/moon-xsl.jpg') 0 0 no-repeat; background-size: cover; } 
   
}
@media only screen and (min-device-width : 768px) {
   .slides.f1{ background: url('../images/robot-sm.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f2{ background: url('../images/bdashboard-sm.jpg') 0 0 no-repeat; background-size: cover; }
   .slides.f3{ background: url('../images/vineyards-sm.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f4{ background: url('../images/buildings-sm.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f5{ background: url('../images/industry-sm.jpg') 0 0 no-repeat; background-size: cover; }
   .slides.f6{ background: url('../images/tubs-sm.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f7{ background: url('../images/moon-sm.jpg') 0 0 no-repeat; background-size: cover; } 
}
@media only screen and (min-width : 1024px) {
   .slides.f1{ background: url('../images/robot-md.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f2{ background: url('../images/bdashboard-md.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f3{ background: url('../images/vineyards-md.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f4{ background: url('../images/buildings-md.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f5{ background: url('../images/industry-md.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f6{ background: url('../images/tubs-md.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f7{ background: url('../images/moon-md.jpg') 0 0 no-repeat; background-size: cover; }  
}
@media only screen and (min-width : 1440px) {
   .slides.f1{ background: url('../images/robot-lg.jpg') 0 0 no-repeat;  background-size: cover; }
   .slides.f2{ background: url('../images/bdashboard-lg.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f3{ background: url('../images/vineyards-lg.jpg') 0 0 no-repeat;  background-size: cover; }
   .slides.f4{ background: url('../images/buildings-lg.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f5{ background: url('../images/industry-lg.jpg') 0 0 no-repeat;  background-size: cover; }
   .slides.f6{ background: url('../images/tubs-lg.jpg') 0 0 no-repeat; background-size: cover; } 
   .slides.f7{ background: url('../images/moon-lg.jpg') 0 0 no-repeat;  background-size: cover; }
}

/*-------------------------------*/
    /*OWl Slider*/
/*-------------------------------*/
/*Dots*/
.owl-dots .owl-dot {
   background: rgba(255, 255, 255, .35);
   border: 1px solid #f7144e;
}
#text-fading .owl-dots .owl-dot {
	background: #fff;
}
.vertical-dot .owl-dots .owl-dot {
   background: rgba(255, 255, 255, .5);
}

.owl-dots .owl-dot::after {
   background-color: #f7144e;
}
.vertical-dot .owl-dots .owl-dot.active {
   background: #fff;
}

/*Buttons*/
.owl-nav .owl-prev, .owl-nav .owl-next{
    background: #f7144e;
    color: #fff;
}
.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover,
.owl-nav .owl-prev:focus, .owl-nav .owl-next:focus{
	background: #ec6d48 ;
}

/*Service Slider*/
#services-slider .service-box{
   background: #f7144e;
   color: #fff;
}
#services-slider .service-box::before {
   background: #f7144e;
}
#services-slider .owl-item.center .service-box::before {
   background: #ec6d48 ;
}
#services-slider .owl-item.center .service-box {
   background: #ec6d48 ;
}

/*-------------------------------*/
    /*OWL Slider ends*/
/*-------------------------------*/


/*-------------------------------*/
      /*Revolution SLider*/
/*-------------------------------*/
.tp-bullet {
   background: rgba(255, 255, 255, .3);
}
.tp-bullet:hover, .tp-bullet:focus{
   background: rgba(255, 255, 255, .6);
}
.tp-bullet::before {
   background: #fff;
}

.uranus .tp-bullet-inner{
   background: #f7144e;
}
.uranus .tp-bullet.selected, .uranus .tp-bullet:hover {
    -webkit-box-shadow: 0 0 0 2px #ec6d48 ;
    box-shadow: 0 0 0 2px #ec6d48 ;
}
.uranus .tp-bullet.selected .tp-bullet-inner, 
.uranus .tp-bullet:hover .tp-bullet-inner {
   background: #ec6d48 ;
}

.tp-carousel-wrapper {
	cursor: url(../images/openhand.cur), move;
}
.rev_slider li.rev_gradient::after {
   background: #ec6d48 ; 
}
.banner-overlay::after {
   background: rgba(0,0,0,.39);
}

/*-------------------------------*/
/* Main Banner Ends*/
/*-------------------------------*/


/*-------------------------------*/
    /* Horizontal Half Blocks*/
/*-------------------------------*/
/* .half-section .img-container{} */
.half-section .imgone{
    background: url("../images/split-img1.jpg") no-repeat;
}
.half-section .imgtwo{
    background: url("../images/split-img2.jpg") no-repeat;   
}

/*-------------------------------*/
    /*Horizontal Half Blocks ends*/
/*-------------------------------*/


/*-------------------------------*/
    /*Page Headers */
/*-------------------------------*/
.page-header {
   background: url(../images/page-header.jpg) no-repeat;
}
.breadcrumb {
	background: transparent;
}
.breadcrumb .breadcrumb-item {
	color: #fff;
 }
.breadcrumb .breadcrumb-item:hover,
.breadcrumb .breadcrumb-item:focus,
.breadcrumb .breadcrumb-item.active {
	color: #ec6d48;
}
/*-------------------------------*/
    /*Page Headers */
/*-------------------------------*/

.feature-item img {
   border-radius: 5px;
}


/*-------------------------------*/
    /* Work Process */
/*-------------------------------*/
.process-wrapp li > .pro-step {
   /* border: 1px solid #fff; */
   /* color: #fff; */
   border: none;
   -webkit-box-shadow: 0 0 25px 50px #fff inset;
   box-shadow: 0 0 25px 50px #fff inset;
   color: #303c44; 
}
.process-wrapp li > .pro-step.active {
   -webkit-box-shadow: 0 0 25px 50px #0099ff inset;
   box-shadow: 0 0 25px 50px #0099ff inset;
   color:#FFF;
}
.process-wrapp {
   width: 100%;
}
.process-wrapp li{
   width: 25%;
}

/* .process-wrapp li:hover > .pro-step {
   -webkit-box-shadow: 0 0 25px 50px #fff inset;
   box-shadow: 0 0 25px 50px #fff inset;
   color: #f7144e;
} */
/* .process-wrapp li::before, .process-wrapp li::after {
    background: rgba(255,255,255, .5);
} */

/*process with box */
.process-number {
   background: #fff;
}
.process-number .pro-step {
	color: #fff;
	background: #d2d2d2;
}
.process-number .pro-step::after {
	background: #fff;
}
/*-------------------------------*/
    /*Work Process ends */
/*-------------------------------*/


/*-------------------------------*/
    /* Our Team */
/*-------------------------------*/
.team-box.grey-shade {
   -webkit-box-shadow: 0px 0px 0px 1px #b5b5b5;
   box-shadow: 0px 0px 0px 1px #b5b5b5;
}
.team-box::before {
   border: 20px solid #fff;
}

.team-box.no-hover .team-content { 
   -webkit-box-shadow: 0px 10px 5px -10px #b7b7b7;
   box-shadow: 0px 10px 5px -10px #b7b7b7;
   background: #fff;
}
.team-box.no-hover .team-content h3 {
   color: #212331;
}
.team-box.no-hover .team-content::before {
   background: #ec6d48 ;
}
.team-box.no-hover:hover .team-content::before,
.team-box.no-hover:hover .team-content,
.team-box.no-hover:hover .team-content h3 ,
.team-box.no-hover:hover .team-content ul.social-icons li a {
   color: #fff;
}

/*Progress Bars*/
.progress-bars .progress .progress-bar {
    background: -webkit-linear-gradient(90deg, #f6663f 31%, #ed145b 69%);
    background: -webkit-gradient(linear, left top, right top, color-stop(31%, #f6663f), color-stop(69%, #ed145b));
    background: -webkit-linear-gradient(left, #f6663f 31%, #ed145b 69%);
    background: -o-linear-gradient(left, #f6663f 31%, #ed145b 69%);
    background: linear-gradient(90deg, #f6663f 31%, #ed145b 69%);
}
/*-------------------------------*/
    /*Our Team ends */
/*-------------------------------*/


/*-------------------------------*/
    /* Gallery Portfolio */
/*-------------------------------*/
/*filters*/
.cbp-l-filters .cbp-filter-item span {
   color: #b7b7b7;
   border: 1px solid #b7b7b7;
}
.cbp-l-filters .cbp-filter-item:hover span {
    border: 1px solid #6e7b95 ;
   color: #222;
   background: #6e7b95;
}
.cbp-l-filters .cbp-filter-item-active span,
.cbp-l-filters .cbp-filter-item:focus span {
   border: 1px solid #f7144e;
   color: #fff;
   background: #f7144e;
}
#portfolio_top::before,
#portfolio_top::after {
   background: #fff;
}
.border-portfolio .cbp-item img {
   border: 20px solid #fff;
}
.bottom-text .port_head {
   font-family: 'Open Sans', sans-serif;
}

/*Overlays*/
.overlay {
   background: #f7144e;
}
.dark_overlay .overlay {
   background:#f7144e;
}
.overlay > .plus::before,
.overlay > .plus::after {
   background: #fff;
}
.gradient_text {
   color: #6e7b95;
}

/*Single Porfolio*/
.item-one {
   background: url(../images/bg-single-1.jpg) no-repeat;
}
.item-two {
   background: url(../images/bg-single-2.jpg) no-repeat;
}
.item-three {
   background: url(../images/bg-single-3.jpg) no-repeat;
}
.item-four {
   background: url(../images/bg-single-4.jpg) no-repeat;
}
.item-five {
   background: url(../images/bg-single-5.jpg) no-repeat;
}
.item-six {
   background: url(../images/bg-single-6.jpg) no-repeat;
}
.item-seven {
   background: url(../images/bg-single-7.jpg) no-repeat;
}
.item-eight {
   background: url(../images/arrow-slide1.jpg) no-repeat;
}
.item-nine {
   background: url(../images/arrow-slide1.jpg) no-repeat;
}

/*-------------------------------*/
    /*Gallery ends */
/*-------------------------------*/


/*-------------------------------*/
    /* Mobile Apps & Features */
/*-------------------------------*/

/*apps background*/
/* .bg-apps {
   background: url(../images/bg-dashb.jpg) no-repeat;
   background-color: #444; 
   color: black;
} */
.bg-apps {
   background: url(../images/city.jpg) no-repeat;
   background-attachment: fixed;
   background-position: center center;
   -webkit-background-size: cover;
   background-size: cover;
   color: white;
}
/*app features*/
.feature-item h4 {
	color: #222222;
}
.feature-item .icon {
	background: #53627d;
	color: #fff;
}
.feature-item .icon::before {
	background: transparent;
	border: 4px solid #fff;
}
/* temp disabled */

/* 
#app-feature .feature-item:hover .icon {
    background: #ff4533;
} 

.feature-item:hover .icon { 
	-webkit-box-shadow: 0 0 0 0 rgb(0, 108, 134);
	box-shadow: 0 0 0 0 rgba(0, 108, 134);
}
@-webkit-keyframes itg_pulse {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 59, 51, 0.9);
        box-shadow: 0 0 0 5px rgba(255, 59, 51, 0.9);
    }
    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 59, 51, 0.6);
        box-shadow: 0 0 0 10px rgba(255, 59, 51, 0.6);
    }
    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 59, 51, 0.3);
        box-shadow: 0 0 0 15px rgba(255, 59, 51, 0.3);
    }
    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(255, 59, 51, 0.1);
        box-shadow: 0 0 0 20px rgba(255, 59, 51, 0.1);
    }
}
@-o-keyframes itg_pulse {
    0% {
        box-shadow: 0 0 0 5px rgba(255, 59, 51, 0.9);
    }
    25% {
        box-shadow: 0 0 0 10px rgba(255, 59, 51, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 59, 51, 0.3);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255, 59, 51, 0.1);
   }
}
@keyframes itg_pulse {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 59, 51, 0.9);
        box-shadow: 0 0 0 5px rgba(255, 59, 51, 0.9);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 59, 51, 0.6);
        box-shadow: 0 0 0 10px rgba(255, 59, 51, 0.6);
    }
     50% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 59, 51, 0.3);
        box-shadow: 0 0 0 15px rgba(255, 59, 51, 0.3);
    } 
    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(255, 59, 51, 0.1);
        box-shadow: 0 0 0 20px rgba(255, 59, 51, 0.1);
   }
}
*/
.feature-item.active {
   background: #f7f7f7;
}
/*-------------------------------*/
    /*Mobile Apps ends */
/*-------------------------------*/


/*-------------------------------*/
    /* Counters */
/*-------------------------------*/

.fact-iconic h3::after {
   background: #ffffff;
}
.bg-counter-light .icon-counters:hover .img-icon {
   color: #fff;
   background: #f7144e;
}
.bg-counter-light {
   background: url(../images/bg-counter-light.jpg) no-repeat;
}
/*-------------------------------*/
    /*Counters ends */
/*-------------------------------*/


/*-------------------------------*/
    /* Pricings */
/*-------------------------------*/
.pricing-bg {
   background: url(../images/page-header-2.jpg)no-repeat;
}
.pricing-bg::before {
   background: #f6f6f6;
}
.price-table {
	border: 1px solid #f6f3f3;
    background: #fff;
}
.price-table img{
   width: 100%;
   padding: 0 2em 1.4em 2em;
}
.price-table .ammount .dur {
	color: #545661;
}
.price-table.active .ammount h2 {
   color: #53627d ;
}
.price-table ul li{
    color: #6e6e6e;
}
.price-table ul li.not-support{
   color: #9b9b9b;
}
.price-table ul li > span::before {
   color: #1463f7;
   /* color: #30e512; */
}
.price-table ul li.notick > span::before {
	color: red;
}

.price-table ul li.inprocess > span::before {
	color: #ffd414;
}
.price-table ul li.not-support > span::before{
   color: #ff434b;
}
.centered-table .price-table ul li > span::after {
   background: #f6f6f6;
}

/*-------------------------------*/
    /*Backgrounds Parallax */
/*-------------------------------*/

/*banner parallax*/
#video-parallax{
    background: url(../images/bg-video.jpg) no-repeat;
}
.rotating-slider {
   background: url(../images/page-header-2.jpg)no-repeat;
}
.rotating-words {
   background: url(../images/page-header-2.jpg)no-repeat;
}
.rotating-slider {
   background: url(../images/banner-fade.jpg)no-repeat;
}
.button-play {
	color: #fff;
	background: #f7144e ;
}
.button-play::before {
   background: #6e7b95;
}
.button-play:hover, .button-play:focus {
   color: #fff;
}

/*Background Video*/
.bg-video-container::before{
   background: rgba(33,35,49,.7);
}
/*-------------------------------*/
    /*Backgrounds Parallax ends */
/*-------------------------------*/


/*-------------------------------*/
    /* Testimonials*/
/*-------------------------------*/
.testimonial-wrapp .quoted {
	background: #f7144e;
	color: #fff;
}
.testimonial-wrapp .testimonial-text {
	background: #f6f6f6;
	border: 1px solid #f1f1f1;
}
#testimonial-slider .owl-item:nth-child(2n) .testimonial-wrapp .quoted,
#testimonial-slider .owl-item:nth-child(2n) .testimonial-wrapp:hover .testimonial-text{
   background: #666;
}
.testimonial-wrapp:hover .testimonial-text{
   background: #ff3e48;
   color: #fff;
}

/*Testimonial Quotes*/
.testimonial-bg{
   background: url(../images/quotesop.png) no-repeat #1f212e;
   background-position: 95% 75%;
}
.testimonial-bg-light {
	background: url(../images/bg-testimonial-light.jpg) no-repeat;
}
#owl-thumbs.owl-dots .owl-dot {
	background: transparent;
	border: 5px solid rgba(255,255,255,.3);
}
.testimonial-bg-light #owl-thumbs.owl-dots .owl-dot {
   border: 5px solid rgba(0,0,0,.3);
}
#owl-thumbs.owl-dots .owl-dot:hover,
#owl-thumbs.owl-dots .owl-dot.active{
   border: 5px solid rgba(255,255,255,.53);
}
.testimonial-bg-light #owl-thumbs.owl-dots .owl-dot.active {
   border: 5px solid rgba(0,0,0,.53);
}
/*-------------------------------*/
    /* Testimonials ends*/
/*-------------------------------*/


/*-------------------------------*/
    /* Partner/ Logo's*/
/*-------------------------------*/


/*-------------------------------*/
    /* Partner/ Logo's ends*/
/*-------------------------------*/


/*-------------------------------*/
    /* Our Blog*/
/*-------------------------------*/
.news_item{
	background:#fff;
}
.meta-tags li a {
	color: #a5a5a5;
}
.news_item:hover h3,
.meta-tags li a:hover,
.meta-tags li a:focus{
	color:#f7144e;
}

/*Pagination*/
.pagination li > a {
   color: #a5a5a5;
}
.pagination li > a:hover, .pagination li > a:focus {
   background: #f7144e;
}
.pagination li > a:hover, .pagination li > a:focus,
.pagination li.active > a{
   color: #fff;
}
.pagination li.active > a {
   background: #ec6d48  !important;
}

blockquote.blockquote::before {
	color: #a1a1a1;
}
ul.rounded li::before {
	background: #f7144e;
}

/*Post Comments*/
.eny_profile {
	border-bottom: 1px solid #e4e4e4;
}

/*Widget Newlatter or search*/
.widget_search .form-control, .widget_search .input-group-addon {
	border-color: #d6d5d5;}
.widget_search .input-group-addon {
	background-color: #f7144e;
	color: #fff;
}
.widget_search .form-control:focus {
   border: 1px solid #414141;
}

/*web Tags*/
.webtags li a,
.btn_reply {
   color: #6a6a6a;
   border: 1px solid #c7c7c7;
}
.webtags li a:hover, .webtags li a:focus {
   color: #fff;
   background: #ff941f;
   border: 1px solid #ff941f;
}
/*Recent Sidebar*/
.single_post:hover a, .single_post:focus a {
   color: #ff941f;
}

/*Categories*/
.webcats li a::before {
	background: #ff941f;
}
.webcats li a:hover, .webcats li a:focus {
   color: #ff941f;
}
.whitebox .widget {
	background: #fff;
}
/*-------------------------------*/
    /* Our Blog ends*/
/*-------------------------------*/

/*-------------------------------*/
    /* Ccntact US*/
/*-------------------------------*/
.our-address h5 {
	color: #222;
}
.our-address .pickus {
   text-transform: uppercase;
   color: #ff941f;
}
.our-address .pickus::after {
	color: #212331;
}
.our-address .pickus:hover, 
.our-address .pickus:focus {
   color: #212331;
}

/*Contact Form*/
.getin_form .form-control {
   border-bottom: 1px solid #a5a5a5;
   background: #fff;
   color: #a5a5a5;
}
.getin_form .form-control:focus {
   border-bottom: 1px solid #212331;
}
.border-form .form-control {
	border: 1px solid #dedada;
}
.border-form .form-control:focus {
   border: 1px solid #212331;
}

/*CheckBox*/
.form-group label, .checkbox label {
	color: #a5a5a5;
}
.form-check label::before {
	border: 1px solid #cccccc;
	background-color: #fff;
}
.form-check input[type="checkbox"]:checked + label::before {
	background-color: #fff;
}
.form-check input[type="checkbox"]:checked + label::before {
	background-color: #f7144e;
	border-color: #f7144e;
   color: #fff;
}
.log-meta > a:hover, .log-meta > a:focus {
   color: #f7144e;
}

/* Form general- */
::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
   color: #a5a5a5;
}
:-moz-placeholder,
.form-control:-moz-placeholder {
   /* Firefox 18- */
   color: #a5a5a5;
}
::-moz-placeholder,
.form-control::-moz-placeholder {
   /* Firefox 19+ */
   color: #a5a5a5;
}
:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
   color: #a5a5a5;
}
textarea::-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder {
   color: #a5a5a5;
}
/*-------------------------------*/
    /*  COntact US */
/*-------------------------------*/


/*-------------------------------*/
    /* Footer*/
/*-------------------------------*/

footer ul.social-icons:not(.small) li a {
   background: transparent;
}
footer ul.social-icons li a {
   background: #f5f5f5;
}
footer .copyrights > a:hover,
footer .copyrights > a:focus {
   color: #f7144e;
}
/*-------------------------------*/
    /* Footer ends*/
/*-------------------------------*/


/*-------------------------------*/
    /*PreLoader*/
/*-------------------------------*/
.loader {
  background:#fff;
}
.loader span {
   background: #f7144e;
}
/*-------------------------------*/
      /*Loader ends*/
/*-------------------------------*/
