/* 
Template Name : Apps Up
*/



/* ------------------------------------------ */
/*             TABLE OF CONTENTS
/* ------------------------------------------ */

/*    General Style                         */
/*    Typography                            */
/*    Buttons & Icons                       */
/*    Header & Navigation                   */
/*    Sections Settings                     */
/*    Features Tab                          */
/*    Newsletter and Social                 */
/*    Pricing Tabs                          */
/*    Team Section                          */
/*    Footer                                */


/* ==========================================================================
    GENERAL STYLE
========================================================================== */ 
body {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #788890;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    padding: 0;
    background-color: #ffffff;
}

.main-wrapper {
    overflow: hidden;
}

section{
    position: relative;
    overflow: hidden;
}


@-webkit-viewport { 
	width: device-width; 
}

@-moz-viewport { 
	width: device-width; 
}

@-ms-viewport { 
	width: device-width; 
}

@-o-viewport { 
	width: device-width; 
}

@viewport { 
	width: device-width; 
}

/*------------------------------------------*/
/*	 Link 
/*------------------------------------------*/
a {
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

a:hover, a:focus {
	color: #3e3e3e;
	text-decoration: none;
}

/*------------------------------------------*/
/*	 Lists
/*------------------------------------------*/
ul {
	padding-left: 0;
	list-style: none;
}

/*------------------------------------------*/
/*	 Backgrounds
/*------------------------------------------*/
.light-bg{
	background-color: #fafafa;
}

.dark-bg{
    background-color: #323a45;
}

.white-bg{
    background-color: #ffffff;
}

/*------------------------------------------*/
/*   Text
/*------------------------------------------*/
.white-text {
    color: #fff;
}

/*------------------------------------------*/
/*	 Overlay Effect
/*------------------------------------------*/
.overlay{
    /* Provides cross-browser RGBa background */
    zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#80000000', endColorstr='#80000000');
    background: transparent;
    background: rgba(13, 128, 245, 0.8);
}

/* set filter as none for IE9+, because IE9+ support RGBa */
:root .overlay {
    filter: none\0/IE9;
}

/*------------------------------------------*/
/*   Form Settings
/*------------------------------------------*/
.form-group {
    margin-bottom: 25px;
}

.control-label {
    display: block;
    font-size: 13px;
    line-height: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 7px 0;
    color: #3e3e3e;
}

.form-control {
    display: inline-block;
    width: 100%;
    height: 39px;
    padding: 9px;
    font-size: 13px;
    line-height: 17px;
    color: #3e3e3e;
    background-color: transparent;
    background-image: none;
    border: 2px solid #cb6060;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
}

/*------------------------------------------*/
/*   Modal Settings
/*------------------------------------------*/
.modal-content {
    text-align: center;
}

/*------------------------------------------*/
/*   Notifications
/*------------------------------------------*/
.signup-success,.signup-failed,.lm-success,.lm-failed,.sm-success,.sm-failed,.fast-failed,.fast-success,.subscription-success,.subscription-failed,.mc-success,.mc-failed{
    display: none;
    margin-top: 5px;
}

.lm-success,.sm-success{
    color:#27ae60;
}

.signup-success,.signup-failed,.fast-success,.fast-failed,.subscription-success,.subscription-failed,.mc-success,.mc-failed {
    color:#ffffff;
}

.lm-failed,.sm-failed{
    color:#c0392b;
}

/*------------------------------------------*/
/*	 Blockquote
/*------------------------------------------*/
blockquote {
    border: 0;
    padding: 0 20px;
}

blockquote:before {
    height: 0;
    float: left;
    position: relative;
    top: 14px;
    left: -30px;
    content: "“";
    font-family: Georgia, Times, "Times New Roman", serif;
    font-size: 50px;
    color: #999;
}

blockquote img {
	float: left;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	height: 75px;
	width: 75px;
	margin-right: 15px;
}

/*------------------------------------------*/
/*   Wrappers & Boxes
/*------------------------------------------*/
.wrapper-lg{
    padding: 120px 0;
}

.wrapper-md{
    padding: 80px 0;
}

.wrapper-sm{
    padding: 50px 0;
}

.wrapper-xs{
    padding: 20px 0;
}

/* vertical align */
.vmiddle{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*------------------------------------------*/
/*   Preloader
/*------------------------------------------*/
.preloader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    height: 100%;
    width: 100%;
    text-align: center;
    overflow: hidden !important;
}

.loader-container{
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -80px;
}

.signal {
    display: inline-block;
    border: 3px solid #fff;
    border-radius: 30px;
    height: 30px;
    opacity: 0;
    width: 30px;
    margin-top: 10px;
    -webkit-animation: pulsate 1s ease-out;
    -moz-animation: pulsate 1s ease-out;;
    -webkit-animation-iteration-count:infinite;
    -moz-animation-iteration-count:infinite;
}

@-webkit-keyframes pulsate {
    0% {
      transform:scale(.1);
      opacity: 0.0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform:scale(1.2);
      opacity: 0;
    }
}

@-moz-keyframes pulsate {
    0% {
      transform:scale(.1);
      opacity: 0.0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform:scale(1.2);
      opacity: 0;
    }
}

/*------------------------------------------*/
/*   New Venobox Close Icon
/*------------------------------------------*/
.vbox-close {
    top: 5px;
    right: 8px;
    width: 60px;
    height: 50px;
    background: url(../../../../../../../www.designcrazzy.com/demo/appsup/site/solid-color/assets/images/venobox/close.html) no-repeat #161617;
}

/*------------------------------------------*/
/*   Logo
/*------------------------------------------*/
.logo{
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 19px;
    line-height: 40px;
    color: #323245;
}


/* ==========================================================================
    TYPOGRAPHY
========================================================================== */
h1, h2, h3, h4 {
 	font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
 	margin: 0 0 20px;
    color: #3e3e3e;
}

h1 {
    font-size: 50px;
    line-height: 70px;
    font-weight: 300;
}

h2 {
    font-size: 46px;
    line-height: 56px;
    font-weight: 300;
    text-align: center;
}

h3 {
    font-size: 38px;
    line-height: 46px;
    font-weight: 300;
}

h4 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 400;
    color: #444444;
}

h5 {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3e3e3e;
}

b, strong {
    font-weight: 400;
}

p {
    margin: 0;
}

.large{
	font-size: 18px;
    line-height: 25px;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
}

.heading-con h2 {
    color: #fff;
}

.heading-con p {
    color: #fff;
}



/* ==========================================================================
   BUTTONS & ICONS
========================================================================== */ 
.btn {
 	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
 	line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    margin-right: 15px;
    margin-bottom: 5px;
    border-radius: 3px;
    display: inline-block;
    padding: 14px 28px 13px 28px;
    border:1px solid;
}

.btn:focus {
 	outline: none;
}

.btn:hover {
 	text-decoration: none;
}

.btn>i {
    font-size: 16px;
    margin-right: 5px;
    vertical-align: text-bottom;
}

.btn-box {
    padding:20px 0;
}

/*------------------------------------------*/
/*	 Buttons Color
/*------------------------------------------*/
.btn-ghost {
	background: transparent;
	color: #ffffff;
	border-color: #ffffff;
}

.btn-ghost:hover {
	background: #ffffff;
	color: #3e3e3e;
	border-color: #ffffff;
}

.btn-white {
	background: #ffffff;
	color: #0d80f5;
	border-color: #ffffff;
}

.btn-white:hover {
    background: #0d80f5;
    color: #3e3e3e;
    border-color: #0d80f5;
}

.btn-grey {
	color: #3e3e3e;
	background-color: transparent;
	border-color: #7f8c8d;
}

.btn-grey:hover {
	color: #3e3e3e;
	border-color: #3e3e3e;
	background-color: transparent;
}

/*------------------------------------------*/
/*	 Icons Style
/*------------------------------------------*/
.icon-lg, .icon-sm {
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    -moz-transition: all .2s ease;
    color: #3e3e3e;
}

.icon-lg {
    font-size: 65px;
}

.icon-sm {
    font-size: 40px;
}


/* ==========================================================================
   HEADER
========================================================================== */
.header{
    background: url("../images/banner-bg.jpg") no-repeat center top fixed;
    -webkit-background-size: cover;
    -moz-background-size:cover;
    background-size: cover;   
}

.header .overlay {
    height: 800px;
}

/*------------------------------------------*/
/*   Navbar General Settings
/*------------------------------------------*/
.navbar{
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.navbar-fixed-top {
    padding-top: 25px;
    padding-bottom: 25px;
}

.navbar-fixed-top.is-scrolling{
    background: #131823;
    border: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-right{
    position: relative;
    top: 5px;
    float: left;
    text-align: left;
}

/* Img-Logo */
.navbar-brand.img-logo{
    padding:0;
    line-height: 46px;
}

/*------------------------------------------*/
/*   Navbar Links Menu
/*------------------------------------------*/
.navbar-nav>li>a{
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 15px;
    color: #ffffff;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

.navbar-nav>li>a:hover, .navbar-nav>li>a:focus, .navbar-nav>.active>a, .navbar-nav>.active>a:hover, .navbar-nav>.active>a:focus{
    color: #ffffff;
    background-color: transparent;
}

/*------------------------------------------*/
/*   Navbar Mobile Menu
/*------------------------------------------*/
.navbar-toggle, .navbar-toggle:hover, .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-toggle {
    color: #ffffff;
    padding: 0; 
    margin-top: 13px;
    margin-bottom: 0;
    font-size:26px;
}

.navbar-collapse {
    box-shadow:none;
    border:0;
}

/*------------------------------------------*/
/*   Navbar Buttons
/*------------------------------------------*/
.navbar-nav>li>a.btn-nav {
    margin: 6px 0 10px 15px;
    padding: 7px;  
}

.navbar-nav>li>a.btn-nav:hover, .navbar-nav>li>a.btn-nav:focus {
    background: #ffffff;
    color: #3e3e3e;
    border-color: #ffffff;
}

/*------------------------------------------*/
/*   Hero-Section
/*------------------------------------------*/
.hero-section .btn-color:hover{
    border-color: #ffffff;
}

.hero-section p{
    font-size: 21px;
    line-height: 27px;
    margin-bottom: 35px;
    color: #fff;
}

.hero-section h1 {
    color: #fff;
}

.hero-section .btn-box{
    padding: 0;
}

.hero-section .btn{
    margin-bottom: 0;
} 

/*------------------------------------------*/
/*   Header Solid-Background
/*------------------------------------------*/
.solid-bg .overlay {
    background: none;
}

.solid-bg .btn-white:hover{
    border-color:#ffffff;
    color:#ffffff;
}

/*------------------------------------------*/
/*   Header App
/*------------------------------------------*/
.hero-app .hero-section{
    padding-top: 20%;
}

.phone0 {
    position: absolute;
    z-index: 4;
}

.phone1 {
    position: absolute;
    z-index: 4;
    top: -40px;
    right: 250px;
}

.phone2 {
    position: absolute;
    z-index: 2;
    right: -200px;
    top: -100px;
}

/*------------------------------------------*/
/*   Header Type
/*------------------------------------------*/
.type h1{
    line-height: 59px;
}

/*------------------------------------------*/
/*   Header Video Background
/*------------------------------------------*/
.header.video-bg{
    background: transparent;
}

/*------------------------------------------*/
/*   Header Video Background
/*------------------------------------------*/
.header.youtube-bg .overlay {
    height: 650px;
}

/*------------------------------------------*/
/*   Header Slider
/*------------------------------------------*/
.header.slider{
    background: none;  
}

.header.slider .overlay{
    height: 100%;
}

.slider-text{
    display: block;
}

/*------------------------------------------*/
/*   Header Dashboard
/*------------------------------------------*/
.header.dashboard .overlay{
    overflow:hidden;
}

.dashboard .hero-section{
    padding-top: 25%;
}

.image-dashboard {
    overflow: hidden;
    padding-top: 30px;
}

.image-dashboard img {
    max-width: 85%;
}


/* ==========================================================================
   SECTIONS SECTIONS
========================================================================== */ 

.early-features .large{
    margin-bottom: 20px;
}

.early-features .feature-box{
    margin-top: 50px;
}

.feature-box .icon-box i{
    margin: 0 0 0;
    width: 60px;
    height: 120px;
    float: left;
    font-size: 48px;
    color: #444444;
}

.feature-box .icon-box .icon-sm{
    clear: both;
}

.feature-box h4{
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 10px;
}

.feature-box p{
    font-size: 16px;
    line-height: 20px;
}

/*------------------------------------------*/
/*   About - Intro Features
/*------------------------------------------*/
.intro-features {
    text-align: center;
}

.intro-features .icon-lg{
    margin-bottom: 20px;
}

/*------------------------------------------*/
/*   Image with Action
/*------------------------------------------*/
.img-with-action .btn-color:hover{
    background: transparent;
}

.img-with-action .btn-box{
    padding-bottom: 0;
}

.img-col-bg{
    position: absolute;
    height: 100%;
    padding: 0;
    top: 0;
}

/* light img overlay*/
.img-col-bg:before{
    opacity: 0.2;
    position: absolute;
    content: ' ';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #b0babf;
}

.img-right {
    right: 0;
    background: url(../images/img-right.png) 50% 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}



/* ==================================================================================
    NEWSLETTER, FAST-REGISTRATION HEADER & SIGNUP DIVIDER SECTIONS
=================================================================================== */ 
/* Newsletter */
.newsletter .table{
    display: table;
    width: 100%;
    margin: 0;
}

.newsletter .table-row{
    display: table-row;
}

.newsletter .follow{
    width: 120px;
}

.newsletter .getnewsletter{
    width: 190px;
}

.newsletter .table-cell {
    display: table-cell;
    vertical-align: middle;
}

.newsletter .table-title {
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
}

.newsletter .social-list{
    display: block;
    margin: 0 0 0 -10px;
    list-style: none;
}

.newsletter .social-list>li {
    float: left;
    margin: 0 7px;
}

.newsletter .social-list>li a{
    font-size: 20px;
    color: #fff;
    text-align: center;
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    padding: 8px;
    line-height: 10px;
    display: inline-block;
    border-radius: 3px;
}

.newsletter .social-list>li a:hover{
    color: #0d80f5;
    background: #fff;
}

.newsletter .input-group .form-control{
    background: transparent;
    border-color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    height: 48px;
    color: #fff;
}

.newsletter .form-control:focus{
    box-shadow: none;
}

.newsletter .form-control::-moz-placeholder {
    color: #ffffff;
}

.newsletter .form-control:-ms-input-placeholder {
    color: #ffffff;
}

.newsletter .form-control::-webkit-input-placeholder {
    color: #ffffff;
}

.newsletter .btn{
    padding: 16px 28px 15px 28px;
    margin-right:0;
}

.newsletter .btn:hover{
    background: #333333;
    color: #fff;
    border-color: #333333;
}

.newsletter .subscription-success, .newsletter .subscription-failed {
    font-weight: 600;
    color: #ffffff;
}

.newsletter .subscription-success i, .newsletter .subscription-failed i{
    margin-right: 5px;
}

/* Signup Divider */
.signup-divider{
    text-align: center;
}

.signup-divider h2{
    font-weight: 400;
}

.signup-divider canvas{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:-1;
}

.signup-divider .form-group,.fast-reg .form-group{
    width:25%;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0;
}

.signup-divider .form-control,.fast-reg .form-control{
    background: transparent;
    border-color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    height: 50px;
    color:#fff;
}

.signup-divider .btn{
    margin-bottom: 0;
    margin-right: 0;
    font-size: 16px;
    padding: 16px 28px 15px;
}

.fast-reg .btn{
    margin-bottom: 0;
    font-size: 13px;
    padding: 16px 28px 15px;
}

.signup-divider .btn:hover,.fast-reg .btn:hover{
    border-color: #ffffff;
}

.signup-divider .btn i,.fast-reg .btn i{
    font-size: 16px;
    margin-right: 0
}

.signup-divider.dark-bg {
    z-index: 0;
}

.signup-divider .form-control::-moz-placeholder {
    color: #fff;
}

.signup-divider .form-control:-ms-input-placeholder {
    color: #fff;
}

.signup-divider .form-control::-webkit-input-placeholder {
    color: #fff;
}

.signup-divider .form-container{
    background-color: #3e3e3e;
    background-color: rgba(62,62,62,0.8);
    padding: 10px 0;
    margin: 0 auto;
    width: 70%;
    border-radius: 6px;
}

/* Fast-reg Fixes */
.fast-reg .hero-section{
    text-align: center;
}

.fast-reg .form-control{
    background: #ffffff;
    border-color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    height: 50px;
    color: #333;
}


/* ==========================================================================
   features-app
========================================================================== */ 
.features-app p{
    margin-bottom: 20px;
}

.features-app p.large{
    margin-bottom: 70px;
}

.features-app h4{
    font-size: 24px;
    line-height: 30px;
}

.big-content-box{
    margin-bottom: 90px;
}
.big-content-box .text-box {
    margin-top: 200px;
}

.features-app .wrapper-lg {
    padding-bottom:0 ;
}


/* ========================================================================
   PRICING TABLE
======================================================================= */ 
.pricing-tab {
    padding: 50px 30px 30px;
    color:#fff;
    text-align: center;
    position: relative;
}

.seprator {
    width: 100px;
    height: 3px;
    text-align: center;
    margin: 15px auto;
}

.pricing-tab p.price{
    font-size: 56px;
    margin-bottom: 30px;
    font-weight: 300;
}

.pricing-tab p.price span {
    font-size: 22px;
}

.pricing-tab h4 {
    margin: 0 60px 10px;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px;
}

.pricing-tab .btn{
    padding:11px 35px;
    font-size:13px;
}

.pricing-tab .btn:hover {
    background: #333333;
    color: #fff;
    border-color: #333333;
}

.pricing-tab .ribbon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 115px;
    height: 115px;
    overflow: hidden;
}

.pricing-tab .ribbon .popular{
    position: relative;
    left: -8px;
    top: 18px;
    width: 158px;
    padding: 10px 10px;
    color: #fff;
    -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
    -moz-transform: rotate(45deg) translate3d(0, 0, 0);
    -ms-transform: rotate(45deg) translate3d(0, 0, 0);
    -o-transform: rotate(45deg) translate3d(0, 0, 0);
    transform: rotate(45deg) translate3d(0, 0, 0);
}

.pricing-tab .ribbon .popular:after, .pricing-tab .ribbon .popular:before{
    content: '';
    position: absolute;
    bottom: -5px;
    border-top: 5px solid #3e3e3e;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.pricing-tab .ribbon .popular:before{
    left: 0;
}

.pricing-tab .ribbon .popular:after{
    right: 0;
}

.pricing-features{
    margin-bottom: 30px;
}

.pricing-features li{
    padding: 3px 0;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}

.pricing-features li span{
    font-weight: 600;
}

.pricing-more {
    margin-top:30px;
    padding-left: 15px;
}

.pricing-more strong {
    color: #333333;
}

.pricing-more i{
    vertical-align: baseline;
}

.bg-dark-grey {
    background: #323a45;
}


/* ==========================================================================
   TEAM SECTION
========================================================================== */ 
.team h4{
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
}

.team p {
    /*text-align: center;*/
    color: #999;
}

.team-img{
    position: relative;
    overflow: hidden;
    perspective: 300px;
    -webkit-perspective: 300px;
    -ms-perspective: 300px;
    -o-perspective: 300px;
    opacity:0.85;
}

.team-img .img-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    background: rgba(27,27,27,.7);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.team-img:hover .img-overlay{
    opacity: 1;
}

.team-img:hover img{
    -ms-transform: scale(1.5,1.5);
    -moz-transform: scale(1.5,1.5);
    -o-transform: scale(1.5,1.5);
    -webkit-transform: scale(1.5,1.5);
    transform: scale(1.5,1.5);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.team-img .img-icons {
    width: 100%;
    height: 100%;
    text-align: center;
}

.team-img .img-icons span{
    display: inline-block;
    position: relative;
    top: 42%;
    margin: 0 3%;
}

.team-img .img-icons .icon-white a{
    color:#ffffff;
}

.team-img .img-icons span i{
    text-align: center;
    font-size: 20px;
    width: 40px;
    height: 40px;
    padding: 5px;
}

/* Client Logo */
.clients-block {
    padding: 50px 0;
    background: #F3F3F3;
}



/* ==========================================================================
   FOOTER
========================================================================== */ 
.footer, .footer a{
    color: #888888;
}

.footer h5{
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.footer.white-bg h5 {
    color: #323245;
}

.footer-links li, 
.footer-links li a {
    font-size: 14px;
    color: #848888;
    line-height: 34px;
}

.footer-links li p {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-hero, .footer-cta{
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
    font-weight: 400;
}

.footer-hero strong{
    font-weight: 600;
}

.footer-cta .btn{
    color: #fff;
}

.footer-cta .btn:hover{
    border-color: #ffffff;
    background: #f1f1f1;
}

.contact-item {
    margin: 11px 0 16px;
}

.contact-icon {
    margin-right: 10px;
    font-size: 22px;
    margin-bottom: 10px;
    height: 20px;
    width: 20px;
    display: inline-block;
    vertical-align: top;
}

.contact-content {
    display: inline-block;
    line-height: 21px;
}

.contact-content a {
    color: #c0392b;
    font-weight: 600;
}

.footer-nav{
    margin-top: 100px;
    font-family: 'Open Sans',Helvetica,Arial,sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 15px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    text-align: center;
}

.footer-nav li{
    display: inline-block;
    margin-left: 15px;
}

.footer-nav a {
    color: #fff;
}

.footer-copy{
    margin-top:15px;
    font-size:13px;
    line-height: 16px;
    text-align: center;
    color: #848888;
}