/*
 * A Design by GraphBerry
 * Author: GraphBerry
 * Author URL: http://graphberry.com
 * License: http://graphberry.com/pages/license
 */

/* Table of content
1.General - This is created general styles and overide some bootstrap classes.
2.Layout
 2.1 Animations
 2.2 Buttons
 2.3 Thumbnail - overide bootstrap thumbnail and add mased efect
 2.4 Socail icons -style for social icons list
3 Sections - definition for section and subsection
 3.1 Services
 3.2 Functions
 3.3 About
 3.4 Clients
 3.5 Price table
 3.6 Newsletter
 3.7 Contact
 3.8 Footer
 3.9 Cookie Law
4 Responsive
**********************************************************************/


@import url('./fonts/Roboto-Regular.ttf');

/*
1. General
**********************************************************************/
html {  height:100%;min-height:100% !important;margin:0;padding:0;   /** see height, min-height values here. **/ }
body {
	background-color: #0097df;
    color: #FFF;
    line-height:1.2em;
    font-family: 'Roboto', sans-serif;
    font-size:17px;
    line-height:20px;
    overflow:auto;padding:0;margin:0;height:100%;min-height:100% !important;
}
.main {
  position:relative;min-height:100%; height:auto;
}
.navbar { display:block;position:relative;z-index:9999; }
.footer { display:block;position:absolute;width:100%;padding: 25px 0 15px; font-size:11px }

/** following are some of the good practices in my book so including it here... **/

/** clearfix may not be necessary in all situations, but I have found it to be very useful and handy tool almost all the time **/
.clearfix:before { clear:both; }
.clearfix { clear:both; /* :before, :after not recognized in all browsers. */ }
.clearfix:after {content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}
/** without border-box, AND with height 100%, any padding will likely expand the box beyond 100% in browsers like Mozilla. **/
*, *:after, *:before {
   -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
       -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
           box-sizing: border-box;
}

a {
    color:#2c2c2c;
    text-decoration: none;
}
a:hover {
    color: #0097df;
    text-decoration:none;
}
.secondary-section a:hover {
    color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
h1 {
    margin: 10px;
}
p {
    padding: 10px;
    font-weight: 100;
    color: #fff;
}
.navbar {
    background: #2c2c2c;
    margin-bottom:0;
    min-height:70px;
}

.navbar-fixed-top {
    min-height:60px;
    height:60px;
    padding-top:0;
    position:fixed;
}
.navbar-inner {
    background: #2c2c2c;
    border-radius:0;
    filter: none;
    border: none;
    box-shadow: none;
}
.navbar .brand img {
    width:190px;
    height:auto;
}
.navbar .nav li > a,
.navbar .nav li > a:active,
.navbar .nav li > a:visited,
.navbar .nav li > a:focus {
    text-transform:uppercase;
    line-height: auto;
    vertical-align: middle;
    margin:10px 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: 1px solid #2c2c2c;
    box-shadow: none;
    font-size:15px;
    text-shadow: none;
    color: #fff;
    transition: border-color 1s ease;
}
.navbar .nav li.login a {
	background-color: #0097df;
}
.navbar .nav li:hover> a, .navbar .nav .active > a, .navbar .nav .active > a:hover, .navbar .nav .active > a:focus {
    color: #0097df;
    background-color: #2c2c2c;
    transition: color 0.5s ease;
}
.nav-pills {
    margin-bottom: 30px;
}
.nav-pills > li > a {
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-right:5px;
    padding-left:25px;
    padding-right:25px;
    border: 1px solid #2c2c2c;
}
.nav-pills > li > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover, .nav-pills > .active > a:focus {
    background: #2c2c2c;
    color: #fff;
}
.navbar .btn-navbar {
    color: rgba(255,255,255,.5);
    padding: .35rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background: 0 0;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .25rem;
    margin-top: 10px;
}

.navbar .btn-navbar:hover,
.navbar .btn-navbar:focus,
.navbar .btn-navbar:active,
.navbar .btn-navbar.active,
.navbar .btn-navbar.disabled,
.navbar .btn-navbar[disabled] {
  color: #0097df;
  border: 1px solid #0097df;
}

/******
2. Layout
**********************************************************************/
.centered {
    margin-left:auto;
    margin-right:auto;
    float: none;
    text-align: center;
}
/* Use this class if you want ceter element with span* class */
 .center {
    float: none !important;
    margin: 0 auto !important;
    text-align: center;
}
.highlighted-box {
    background:#F4F8F9;
    padding:20px 30px;
}
.highlighted-box h1 {
    margin:0px;
}
.large-text {
    line-height:1.2em;
    font-size: 30px;
    color: #2c2c2c;
    padding:20px;
    margin-bottom:20px;
}
.primary-section .large-text {
	color: #fff;
}
blockquote {
	margin: 17px 0;
	position: relative;
	border: 0;
}
blockquote::after {
    content: '\201C';
    font-family: serif;
    font-style: normal;
    font-weight: 700;
    position: absolute;
    font-size: 100px;
    line-height: 50px;
    text-align: center;
    top: -20px;
    margin-left: -28px;
    color: #2c2c2c;
    text-shadow: 6px 10px 10px rgba(0, 0, 0, 0.2);
}
blockquote cite {
	color: #2c2c2c;
	font-size: 14px;
	display: block;
}
blockquote p {
	padding: 10px 0;
}
.primary-section blockquote::after {
	color: #f0f0f0;
    text-shadow: 6px 10px 10px rgba(235, 235, 235, 0.1);
}
.primary-section blockquote cite {
	color: #fff;
}

.highlighted-box h1, .highlighted-box p {
    color: #2c2c2c !important;
}
.circle-border {
    display: inline-block;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    -khtml-border-radius: 500px;
    border: 3px solid #fff;
}
.left-align {
    text-align:left;
}
.right-align {
    text-align:left;
}
.error {
    color: #CF0000;
    display: none;
}
.invisible {
    display:none;
    visibility:visible;
}
.triangle {
    margin: 0 auto;
    text-align:center;
    width: 0;
    height: 0;
    border-top: 30px solid #2c2c2c;
    border-left: 585px outset transparent;
    border-right: 585px outset transparent;
    position: relative;
}
/*
2.1 Animations
**********/
 .zoom-in {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    transition: all 250ms ease;
}
.zoom-in:hover {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
}
/*
2.2 Buttons - There are buttons on a transparent background, primary and secondary color background.
**********/
button {
	cursor: pointer;
}
primary-section .button, primary-section .button:visited, primary-section .button:focus,
 #pricing .button, #pricing .button:visited, #pricing .button:focus {
    color:#fff;
    background-color:#0097df;
}
primary-section .button:hover, primary-section .button:active,
#pricing .button:hover, #pricing .button:active {
    background-color: transparent;
    color:#0097df;
}
.button, .button:visited, .button:focus {
	display:inline-block;
	background-color:#fff;
    color:#0097df;
    padding:15px 30px;
    font-size:17px;
    line-height:auto;
    transition: color 250ms ease-in-out,background-color 250ms ease-in-out;
    -webkit-transition: color 250ms ease-in-out,background-color 250ms ease-in-out;
}
.button:hover, .button:active{
    background-color: transparent;
    color:#fff;
}
.button-sp, .button-sp:visited, .button-sp:focus {
    border:none;
	background-color: #0097df;
	color:#2c2c2c;
}
.button-sp:hover, .button-sp:active {
    background-color:#2c2c2c;
    color: #0097df;
}
.button-ps, .button-ps:visited, .button-ps:focus {
    border:none;
    background-color:#2c2c2c;
    color: #0097df;
}
.button-ps:hover, .button-ps:active {
    background-color: #0097df;
	color:#2c2c2c;
}
/*
2.3 Thumbnails - Predefined bootstrap's thumbnail class.
**********/
 .thumbnail {
    width:100%;
    height:100%;
    padding:0;
    overflow: hidden;
    position: relative;
    border:0;
    border-radius:0;
    box-shadow:none;
    text-align:center;
    background: #191a1c;
}
.thumbnail .more {
    display:block;
    z-index:4;
    position:absolute;
    top:-100px;
    margin:0 auto;
    width:100%;
    height:100%;
    font-size:40px;
    color:#fff;
    text-decoration:none;
    line-height: 70px;
    text-align: center;
}
.thumbnail:hover .more {
    top:0;
    margin-top:0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3 s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.thumbnail:hover .more .fa {
    top: 28%;
    position: relative;
}
.thumbnail h3,
.thumbnail p {
    margin:0;
    padding:0;
    position:relative;
    z-index:4;
}
.thumbnail h3 {
    color: #0097df;
    margin-top:10px;
    font-size:20px;
}
.thumbnail > p {
    padding-bottom:20px;
}
.thumbnail .mask {
    opacity:0.9;
    filter: alpha(opacity=85);
    top:100%;
    left:0;
    width:100%;
    height:100%;
    background:#2c2c2c;
    position:absolute;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2 s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.thumbnail:hover .mask {
    top:0;
}
/*
2.4 Socail icons
************/
 .social {
    list-style: none;
    float: none;
    position:relative;
    margin:5px; auto;
}
.social li {
    display:inline-block;
    line-height: 32px;
    font-family:'Porta';
    font-size: 32px;
    padding:0 5px;
}
.social li a {
    margin:0;
    padding:0;
    width:32px;
    height:32px;
    color: #0097df;
}
.social li a:hover {
    color:#2c2c2c;
}
.social li a .icon-background {
    color: #0097df;
}
.social li a .icon-char {
	color: #fff;
	font-size: 16px;
}
/*
3. Sections
***************************************************************************/
 .section {
    padding-bottom: 50px;
}
.section .container {
    padding-top:50px;
}
.section .title {
    text-align: center;
    padding:10px;
    margin-bottom: 30px;
}
.section .title h1 {
    font-weight: normal;
    margin-bottom: 20px;
    padding: 0;
}
.section .title > p {
    font-size: 20px;
    color: #FFF;
    font-weight: lighter;
}
.primary-section {
    background:#2c2c2c;
}
.primary-section .triangle {
    border-top: 40px solid #0097df;
}
.primary-section .title {
    border-bottom: 1px solid #FFF;
}
.primary-section, .primary-section .title p, .primary-section h3 {
    color: #0097df;
}
.primary-section h1 {
    color:#FFF;
}
.secondary-section {
	background-color: #0097df;
}
.secondary-section .title {
    border-bottom: 1px solid #2c2c2c;
}
.secondary-section h1, .secondary-section .title p {
    color: #fff;
}
/* Third section use bacground image */
.third-section {
    padding-bottom: 70px;
    background: #2c2c2c url(../images/brand-bg.png) no-repeat center;
    border-top:6px solid #0097df;
}
.third-section .container {
    padding-top:20px;
    position:relative;
}
.third-section .title {
    border-bottom: 1px solid #A1AAB7;
    color: #0097df;
}
.sub-section {
    margin-top:30px;
}
.sub-section .title {
    padding:0;
}
/*******
3.1 Services
***************************************/
.service{
    margin-top:20px;
}
 .service, .service h2 {
    padding-top:15px;
}
.service p {
    padding:0px 50px;
}
.service img {
    width:180px;
    height:180px;
}
/*
3.2 Functions
***************************************/
 .single-function {
    margin-bottom:30px;
    background:#2c2c2c;
}
.single-function img {
    width:100%;
}
.function-description {
    padding-right:20px;
}
.function-description p {
    padding-left:0;
}
.function-description a {
	color: #fff;
}
.function-description a:hover {
	color: #0097df;
}
.function-title {
    margin-top:15px;
    margin-bottom:15px;
    border-bottom:1px solid #0097df;
}
.function-title h3 {
    float:left;
    margin-top:0;
    padding:0;
    width:80%;
}
.function-title .close {
    color: #0097df;
    margin-top:10px;
}
.function-info span, .function-title h3 {
    color: #0097df;
}
.function-info {
    font-weight:100;
    padding:10px 0;
}
.function-info span {
    width: 120px;
    display: inline-block;
}
.function-info div {
    margin-bottom:5px;
}
.close {
    float: right;
    width: 40px;
    height: 40px;
    text-align: center;
}
#functions-grid .mix {
    opacity: 0;
    display: none;
}
#functions-grid h3 a {
	color: #0097df;
}
/*
3.3 About
******************************************************************/
.team .thumbnail {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    border: 1px solid #fff;
}
.team .thumbnail h3 {
	margin-top: 30px;
}
.team .thumbnail:hover .social {
    z-index: 5;
}
.team .thumbnail:hover a {
    color:#fff;
}
.team .thumbnail:hover .social .icon-background {
    color: #fff;
}
.team .thumbnail:hover .social .icon-char {
	color: #0097df;
}
.team .fa-stack.fa-stack {
    height: 60px;
    line-height: 60px;
}
.team .thumbnail .mask {
	background-color: #0097df;
	padding: 5px;
}
.team .thumbnail .mask, .team .thumbnail .mask h3, .team .thumbnail .mask p, .team .thumbnail:hover h3, .team .thumbnail:hover .social a:hover {
    color:#181A17;
}
.about-text {
    margin-top:30px;
}
.about-text p {
    padding:0;
    font-size:16px;
}
/*********************************************************************
                        FACTS
*********************************************************************/
.numbers .col-md-3 {
    float: left;
	padding: 0 2% 0 0;
	position: relative;
	width: 23.5%;
	box-sizing: content-box;
}
.numbers .col-md-3.last {
    padding: 0;
    float: right;
}
.col-md-3 .number-item {
    border: 1px solid #0095df;
    padding: 20px;
    text-align: center;
	min-height: 123px;
}
.number-item .number {
    color: #fff;
    display: block;
    font-size: 40px;
    font-weight: bold;
    line-height: 40px;
}
.number-item .text {
    font-size: 16px;
    text-transform: uppercase;
}
/*
3.4 Clients
**********************************************************************/
 .client-slider img {
    border:1px solid white;
}
.client-slider img:hover {
    /* IE10 Consumer Preview */
	background-color: #0097df;
}
.client-nav {
    list-style:none;
    margin-top:10px;
}
.client-nav li {
    float:left;
    display:block;
    margin-left:10px;
}
.client-nav li a {
    display:inherit;
    padding:5px;
	background-color: #0097df;
    border-radius:3px;
    width:20px;
    height:20px;
}
.client-nav li a:hover {
    background:#2c2c2c;
}
.testimonial p {
    color:#2c2c2c;
	background-color: #0097df;
    padding:15px;
    margin:0;
}
.testimonial .arrow {
    margin-left:10px;
    width:0;
    border-top:10px solid #0097df;
    border-left: 20px outset transparent;
    border-right: 20px outset transparent;
}
.testimonial .whopic {
    display:inline-block;
}
.testimonial .whopic img {
	border-radius: 25px;
    margin-top:10px;
    width:50px;
    height:50px;
    float:left;
}
.testimonial .whopic strong {
    float:left;
    margin-top:10px;
    padding-left:10px;
}
.testimonial .whopic small {
    display:block;
    font-size:12px;

}
.testimonial-text{
    display:block;
    font-size:22px;
    text-align:center;
    margin:0 auto;
    margin-top:30px;
    width:70%;
    line-height:1.3em;
}
/*
3.5 Price table
******************************************************************/
#pricing {
	color: #2c2c2c;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top: 10px;
}

.pricing {
	backface-visibility: hidden;
    float: left;
    position: relative;
    transform: translateZ(0px);
    transition-delay: 0s;
    transition-duration: 0.2s;
    transition-property: all;
    transition-timing-function: ease-in-out;
	background-color: white;
	text-align: center;
	box-shadow: 0px 2px 2px 2px rgba(50, 50, 50, 0.5);
}
.pricing p {
    color: #2c2c2c;
}
.pricing:hover {
    box-shadow: 0 5px 5px 5px rgba(50, 50, 50, 0.5);
    transform: translateY(-2px);
	z-index: 10;
}

.free {
	margin-top: 30px;
    width: 32.5%;
}
.pro {
    width: 35%;
	z-index: 5;
}
.premium {
	margin-top: 30px;
    width: 32.5%;
}
.headline {
	padding: 15px;
	height: auto;
}
.pricecontent {
	width: 80%;
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	margin-left: auto;
    margin-right: auto;
	padding-bottom: 10px;
}
.pricecontent sup {
    font-size: 22px;
    font-weight: 600;
    vertical-align: text-top;
}
.price {
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    margin-left: -4px;
    margin-right: -4px;
}
.year {
    margin-left: -50px;
}
.mwst {
	display: block;
	font-size: 9px;
	line-height: 9px;
	padding-bottom: 5px;
}

.features {
	width: 80%;
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	margin-left: auto;
    margin-right: auto;
}
.features ul {
	padding-left:16px;
    list-style: none;
}
.features ul li {
	padding: 10px;
}
.features ul li:before {
	font-family: "FontAwesome";
	content: "\f00c";
	color: #0097df;
	font-size: 16px;
	margin: 0 8px 0 -24px;
}

.signup {
	padding: 15px 0 15px 0;
}

#paymentlogo {
	padding: 10px;
	text-align: center;
}

.addon {
    margin: 10px auto !important;
    float: none !important;
    background-color: #2c2c2c;
    border-radius: 2px;
}
.addon .pricecontent {
	border-color: #fff;
}
.addon .features {
	border-color: #fff;
}
/*
3.6 Newsletter
********************************************************************/
 .newsletter, .newsletter h2 {
    color: #D7DDDE;
}
.newsletter .title h2 {
    text-align:left;
    padding:0;
    margin:0;
}
.newsletter form {
    text-align:right;
}
.newsletter input {
    margin-top:10px;
    padding:15px;
    height: auto;
}
.newsletter button {
    margin: 0 0 0 20px;
}
.newsletter .button-sp:hover, .newsletter .button-sp:active {
    background-color:#FFF;
    color:#2c2c2c;
}
#success-subscribe {
    text-align: center;
}

/*
3.7 Contact
********************************************************************/
.contact {
    background: #0097df;
}
.contact h1, .contact h2, .contact h3, .contact h4, .contact h5, .contact h6, .contact .section .title > p, .contact .social > li > a {
    color: #2c2c2c;
}
.contact .contact-map {
	background-image: url('../images/map-image-mobile.png');
	background-size: 100%;
}
@media (min-width: 768px) {
	.contact .contact-map {
		background-image: url('../images/map-image.png');
		background-size: cover;
	}
}
.contact textarea, .contact input[type="text"], .contact input[type="email"] {
    padding: 10px;
    line-height: 20px;
    height: auto;
}
.contact textarea {
    height: 120px;
}
.contacts, .contact .social {
    color: #fff;
    list-style: none;
    margin-left: 10px;
}
.contacts > li {
    margin-top: 15px;
}
.contacts > li > a {
    color: #fff;
}
.contact-info {
    margin-top:10px;
    margin-bottom:10px;
}
.contact-info p{
     font-weight:normal;
}
.contact-info .icon {
    margin:10px auto;
    font-size:30px;
}
.map-wrapper {
    position:relative;
    height:500px;
}
.map-canvas {
    position:absolute;
    margin-bottom:20px;
    width:100%;
    height:500px;
    color: #29383F;
    position:absolute;
    left:0;
    top:0;
    right:0;
}
.controls.privacy, .controls.privacy label {
    display: inline;
}
.contact .social {
    display: inline-block;
    margin-left:0;
}
.contact .social li {
    line-height: 32px;
    padding:10px 10px;
    font-family:'Porta';
    font-size: 50px;
    transition: margin 0.4s;
    -webkit-transition: margin 0.4s;
}
.contact .social li a {
    color:#fff;
}
.contact .social li a:hover {
    color:#2c2c2c;
}
.contact-form {
    z-index:110;
    position:relative;
    margin-top:-25px;
    padding:20px;
}
.contact-form h3 {
    color:#fff;
    padding-bottom:20px;
}
.message-btn {
	border: none;
    background-color: #fff;
	color: #0097df;
    padding:15px 30px;
    font-size:17px;
}
.message-btn:hover {
	background-color: #0097df;
	color: #fff;
}
.contact-info {
    text-align:center;
    font-size:22px;
}
.info-mail {
    border:1px solid white;
    width:60%;
    margin:0 auto;
    padding:15px;
    color:#2c2c2c;
}
.black {
    color:#2c2c2c;
}
/*
3.8 Footer
********************************************************************/
 .footer {
    background: #2c2c2c;
    text-align: center;
}
.footer > p {
    color: #fff;
    margin:0;
}

.footer a{
    color: #0097df;
}

.footer a:hover, .footer a:focus{
    text-decoration: underline;
}
.scrollup {
    text-align:center;
    cursor:pointer;
    vertical-align:middle;
    width:39px;
    height:39px;
    border-radius:5px;
    font-size:20px;
    position:fixed;
    bottom:30px;
    right:20px;
	border:1px solid #fff;
    display:none;
	background-color: #0097df;
}
.scrollup > a {
    position:relative;
    top:7px;
    color:#fff;
}

/*
3.9 Cookie Law
********************************************************************/
    #cc-cookie-law {
        background: rgba(17, 147, 210, 0.9);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center;
        font-size: 13px;
        color: #ddd;
        font-family: Roboto,sans-serif;
		display: none;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 999999;
    }
	.cc-cookie-law {
		max-width: 1300px;
		position: relative;
		margin: 0 auto;
		padding: 5px 70px 5px 10px;
	}
    #cc-cookie-law-text {
        display: block;
        padding: 0 0 3px 0;
        font-size: 10px;
    }
	#cc-cookie-law-button {
		position: absolute;
		top: 50%;
		right: 0;
		margin-top: -14px;
	}
    #cc-cookie-law-button .cc-btn {
        color: #f1f2f3;
        border: 1px solid #f1f2f3;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        font-family: "Lucida Grande",Arial,Verdana,san-serif;
        display: inline-block;
        cursor: pointer;
        text-decoration: none !important;
        padding: 4px 10px;
		margin-right: 10px;
    }
    #cc-cookie-law-button .cc-btn-icon span {
        display: inline-block;
        height: 16px;
        margin-right: 1px;
        vertical-align: -4px;
        width: 16px;
        background: url('data:image/png;base64,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') no-repeat;
    }

/*
4 Responsible
********************************************************************/
@media (max-width: 979px) {
    body {
        padding-left:0;
        padding-right:0;
    }
    .navbar-fixed-top, .navbar-fixed-bottom {
        position: fixed;
    }
    .navbar .nav > li > a {
        line-height: 20px;
        vertical-align: middle;
    }
    .section {
        padding-left:20px;
        padding-right:20px;
    }
    .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
        margin-left: 0px;
        margin-right: 0px;
    }
    .nav-collapse {
        clear: both;
    }
    .nav-collapse .nav {
        float: none;
        margin: 0 0 10px;
    }
    .nav-collapse .nav > li {
        float: none;
    }
    .nav-collapse, .nav-collapse.collapse {
        width: 100%;
        display: inherit;
    }
    .newsletter form {
        text-align:center;
    }
}
@media (max-width: 767px) {
    .info-mail {
        width:90%;
        padding:15px 0px;
    }
    .function-description {
        padding-left:20px;
    }
    .testimonial {
        margin-top:30px;
    }

    .numbers .col-md-3 {
    	width: 100%;
    	padding: 0;
	}

    .pricing.free,
    .pricing.pro,
    .pricing.premium{
    	margin-top: 10px;
	    width: 100%;
	}

}
