* {
    box-sizing: border-box;
}

html,
body {
    font-family: 'Nunito', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.small,
small {
    font-size: 80%;
}

.cf:before,
.cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    zoom: 1;
    /* For IE 6/7 (trigger hasLayout) */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

h1 {
    font-size: 62px;
    line-height: 72px;
}

h2 {
    font-size: 52px;
    line-height: 52px;
    margin-bottom: 36px;
    /* margin-bottom: 64px; */
}

h3 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 300;
    margin-bottom: 46px;
}

h4 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 300;
    margin-bottom: 25px;
}

p.subtitle {
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
}

p {
    font-size: 18px;
    line-height: 28px;
    color: #585b5f;
}

.mt-3 {
    margin-top: 30px;
}

a,
a:visited {
    color: #267df4;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover {
    color: #0a4ead;
    text-decoration: none !important;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:focus {
    outline: none;
    text-decoration: none;
}

hr {
    width: 50px;
    height: 2px;
    margin: 20px auto;
    background-color: #267df4;
    border-top: 0;
}

hr.left {
    width: 50px;
    height: 2px;
    margin: 20px 0;
    background-color: #267df4;
    border-top: 0;
}

.f-w-300 {
    font-weight: 300;
}

.f-w-400 {
    font-weight: 400;
}

ul {
    padding-left: 0px;
}

ul>li {
    list-style: none;
}

.color-blue {
    color: #267df4 !important;
}


/*****************************************************
*** Back to Top ***
*****************************************************/

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 5px;
    left: 5px;
    z-index: 100;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    /* background: rgba(38, 125, 244, .6) url(../images/cd-top-arrow.svg) no-repeat center 50%; */
    background: #337ab78f url(../images/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
    transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
}

.cd-top.cd-top--show,
.cd-top.cd-top--fade-out,
.cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
    transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
}

.cd-top.cd-top--show {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.cd-top.cd-top--fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}

.cd-top:hover {
    background-color: rgba(38, 125, 244, .8);
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .cd-top {
        left: 5px;
        bottom: 5px;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-top {
        height: 40px;
        width: 40px;
        left: 5px;
        bottom: 5px;
    }
}


/*****************************************************
*** Carousel ***
*****************************************************/

#carousel img {
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    width: 100%;
    max-height: 500px;
    margin-top: 90px;
}

#carousel .carousel-control span {
    position: absolute;
    top: 50%;
}

#carousel .carousel-control {
    margin-top: 90px;
}

#carousel h1.title,
#carousel h2.title,
#carousel h3.title,
#carousel h4.title,
#carousel h1.subtitle,
#carousel h2.subtitle,
#carousel h3.subtitle,
#carousel h4.subtitle {
    color: white;
    text-shadow: none;
    margin: 0;
}

#carousel p.subtitle {
    color: white;
    text-shadow: none;
}

@media screen and (min-width: 768px) {
    .carousel-caption {
        padding-bottom: 180px;
    }
}


/*****************************************************
*** Buttons ***
*****************************************************/

.btn {
    font-size: 16px;
    font-weight: 400;
    padding: 10px 25px;
    text-decoration: none;
    color: #26272d;
    border: 1px solid rgba(38, 39, 45, 0.1);
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}

.btn:active,
.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-lg {
    padding: 14px 48px;
}

.btn-blue {
    background-color: #267df4;
    color: white;
    min-width: 150px;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    -moz-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
}

.navigation-menu .btn-blue {
    min-width: 100px;
}

.btn-blue:focus,
.btn-blue:visited {
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border: 0;
    color: #267df4;
    cursor: pointer;
}

.btn-green {
    background-color: #6fc754;
    color: white;
}

.btn-dark {
    background-color: #131315;
    color: white;
}

.btn-blue:hover,
.btn-blue:focus,
.btn-green:hover,
.btn-green:focus,
.btn-dark:hover,
.btn-dark:focus {
    color: #ffffff;
}

.btn-blue:hover {
    background-color: #1d69d3;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    -moz-box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.btn-secondary {
    color: #267df4;
    min-width: 150px;
    font-size: 16px;
    border: 1px solid rgba(38, 39, 45, 0.1);
    font-weight: 400;
    padding: 10px 25px;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

#registo .btn-secondary:hover {
    color: #0a4ead;
    border-color: #267df4;
}


/*****************************************************
*** Contacts ***
*****************************************************/

#contact {
    padding: 90px 0 50px;
}

#contact .btn {
    padding-left: 34px;
    padding-right: 34px;
}

#contact h3 {
    margin-bottom: 26px;
}

#contact label {
    font-weight: 500;
}

#contact .promise {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}

#contact .form-group input[type="text"],
#contact .form-group input[type="email"],
#contact select {
    width: 100%;
    height: 50px;
    max-width: 100%;
    border: 1px solid rgba(38, 39, 45, 0.2);
    padding: 0 16px;
    font-size: 16px;
    background-color: transparent;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#contact .form-group input[type="text"]:focus,
#contact .form-group input[type="email"]:focus,
#contact textarea:focus,
#contact select:focus {
    outline: none;
    border: 1px solid #267df4;
    color: #26272d;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#contact textarea {
    width: 100%;
    height: 50px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid rgba(38, 39, 45, 0.2);
    padding: 16px 16px;
    font-size: 16px;
    background-color: transparent;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#contact input[type=submit] {
    display: block;
    margin: 0 auto;
    background-color: #267df4;
    color: white;
    padding: 12px 60px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    -moz-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
}

#contact input[type=submit]:hover {
    background-color: #1d69d3;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    -moz-box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

#contact input::-webkit-input-placeholder,
#contact textarea::-webkit-input-placeholder,
#contact select::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ccc;
}

#contact input::-moz-placeholder,
#contact textarea::-moz-placeholder,
#contact select::-moz-placeholder {
    /* Firefox 19+ */
    color: #ccc;
}

#contact input:-ms-input-placeholder,
#contact textarea:-ms-input-placeholder,
#contact select:-ms-input-placeholder {
    /* IE 10+ */
    color: #ccc;
}

#contact input:-moz-placeholder,
#contact textarea:-moz-placeholder,
#contact select:-moz-placeholder {
    /* Firefox 18- */
    color: #ccc;
}


/*****************************************************
*** Main Nav ***
*****************************************************/

#main-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 44px 0;
    font-size: 25px;
    z-index: 100;
    webkit-transition: all 0.37s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.37s cubic-bezier(0, 0, 0.58, 1);
    background-color: #ffffff;
    padding: 24px 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

#main-nav li.active a {
    color: #267df4;
    border-bottom: 2px solid #267df4;
}

#main-nav #navigation {
    color: #ccc;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -16px;
    z-index: 2;
}

#main-nav #navigation:hover {
    color: #267df4 !important;
}

#main-nav ul {
    padding: 0;
    margin: 0;
}

#main-nav ul li {
    font-size: 16px;
    display: inline-block;
    margin-right: 5px;
}

#main-nav li.vertical-separator {
    color: #d4d4d4;
}

#main-nav ul li a {
    color: #26272d;
    text-decoration: none;
    padding: 9px 16px;
}

#main-nav ul li a.signup {
    color: #267df4;
}

#main-nav ul li a:hover,
#main-nav ul li a:focus {
    color: #267df4;
    background: transparent;
}

#main-nav ul li .help {
    color: rgba(38, 39, 45, 0.4);
}

#main-nav ul li .btn-blue {
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    -moz-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
}

#main-nav ul li .btn-blue:hover {
    color: #ffffff;
    background-color: #1d69d3;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    -moz-box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

#main-nav ul li:last-child {
    margin-right: 0;
}

#main-nav ul.left {
    text-align: left;
    margin-left: 50px;
    margin-bottom: 0;
}

#main-nav ul.left li {
    display: inline-block;
    padding: 9px 0;
}

#main-nav ul.left li:first-child {
    margin-right: 30px;
}

#main-nav ul.right {
    text-align: right;
}

#main-nav .logo {
    display: inline-block;
}

#main-nav .logo img {
    height: 40px;
}

#main-nav #slide_out_menu {
    position: fixed;
    display: block;
    width: 380px;
    max-width: 650px;
    height: 100%;
    left: -380px;
    top: 0;
    padding: 40px;
    z-index: 50;
    background: #26272d;
    transition: left 0.7s cubic-bezier(0.545, 0, 0.05, 1);
}

#main-nav #slide_out_menu .menu-close {
    position: absolute;
    color: #ffffff;
    right: 20px;
    top: 52px;
}

#main-nav #slide_out_menu ul {
    margin-top: 40px;
}

#main-nav #slide_out_menu ul li {
    display: block;
    margin: 10px 0;
}

#main-nav #slide_out_menu ul li a {
    color: #ffffff;
}

#main-nav #slide_out_menu ul li a:hover {
    color: #267df4;
}

#main-nav #slide_out_menu ul li .btn-blue:hover {
    color: #ffffff;
    background-color: #1d69d3;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    -moz-box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    box-shadow: 0px 2px 2px 0px rgba(38, 125, 244, 0.1);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

#main-nav #slide_out_menu ul li:last-child {
    margin-top: 20px;
}

#main-nav #slide_out_menu .slide_out_menu_footer {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 20px 40px 25px;
}

#main-nav #slide_out_menu .slide_out_menu_footer .more-info p {
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

#main-nav #slide_out_menu .slide_out_menu_footer .socials {
    margin: 18px 0 0;
}

#main-nav #slide_out_menu .slide_out_menu_footer .socials li {
    display: inline-block;
    margin: 0 20px 0 0;
}

#main-nav #slide_out_menu .slide_out_menu_footer .socials li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all .2s ease-in-out;
}

#main-nav #slide_out_menu .slide_out_menu_footer .socials li a:hover {
    color: #ffffff;
}

#main-nav #slide_out_menu .slide_out_menu_footer .socials li:last-child {
    margin-right: 0;
}

#main-nav #slide_out_menu.xs-screen {
    overflow-y: auto;
}

#main-nav #slide_out_menu.xs-screen ul {
    margin-top: 40px;
}

#main-nav #slide_out_menu.xs-screen .slide_out_menu_footer {
    position: relative;
    padding: 0;
    margin-top: 40px;
}

#main-nav #slide_out_menu.xs-screen .slide_out_menu_footer .more-info p {
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

#main-nav #slide_out_menu.xs-screen .slide_out_menu_footer .socials {
    margin: 18px 0 0;
}

#main-nav #slide_out_menu.xs-screen .slide_out_menu_footer .socials li {
    display: inline-block;
    margin: 0 20px 0 0;
}

#main-nav #slide_out_menu.xs-screen .slide_out_menu_footer .socials li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all .2s ease-in-out;
}

#main-nav #slide_out_menu.xs-screen .slide_out_menu_footer .socials li a:hover {
    color: #ffffff;
}

#main-nav #slide_out_menu.xs-screen .slide_out_menu_footer .socials li:last-child {
    margin-right: 0;
}

#main-nav #slide_out_menu.open {
    left: 0;
}


/*****************************************************
*** Header ***
*****************************************************/

#header {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

#header .header_iphone {
    position: absolute;
    bottom: -310px;
    left: 50%;
    margin-left: -185px;
}

#header .video-btn {
    margin-top: 48px;
}

#header .video-btn i {
    margin-right: 15px;
}


/*****************************************************
*** Features ***
*****************************************************/

#features {
    padding: 80px 0;
    background-color: #fcfcfc;
}

#features .feature {
    padding: 0px 38px;
}

#features .feature .f-icon {
    margin-bottom: 0;
    height: 50px;
    margin-left: -40px;
}

#features .feature .f-icon i {
    font-size: 122px;
    color: rgba(38, 39, 45, 0.05);
}

#features h4 {
    color: #267df4;
    z-index: 100;
    position: relative;
}


/*****************************************************
*** Intro Section ***
*****************************************************/

#intro-section {
    position: relative;
    padding: 100px 0;
    /* padding: 80px 0 330px; */
}

#intro-section .btns-container {
    margin-top: 62px;
}

#intro-section .btns-container a {
    margin-right: 20px;
    margin-bottom: 18px;
}

#intro-section .btns-container a i {
    margin-left: 50px;
    font-size: 14px;
}

#intro-section .btns-container a:last-child {
    margin-right: 0;
}

#intro-section .btns-container a:last-child:hover {
    color: #0a4ead;
    border-color: #267df4;
}

#intro-section .desktop-showcase {
    position: absolute;
    right: 50%;
    bottom: 30px;
}

#intro-section .desktop-showcase img {
    max-width: 900px;
}


/*****************************************************
*** Secções ***
*****************************************************/

#perfis,
#seguranca,
#conectado {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#perfis h3,
#seguranca h3,
#conectado h3 {
    margin-bottom: 20px;
}

#perfis img,
#seguranca img,
#conectado img {
    max-height: 330px;
    display: block;
    margin: 0 auto;
}


/*****************************************************
*** Partners ***
*****************************************************/

#partners {
    padding: 70px 0;
}

#partners h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #999;
}

#partners .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 70px;
    margin: 0 auto;
}


/*****************************************************
*** Profile ***
*****************************************************/

#profile {
    padding: 60px 0 0;
    background-color: #fcfcfc;
}

#profile h3 {
    margin-bottom: 26px;
    position: relative;
    z-index: 100;
}

#profile p {
    line-height: 20px;
    position: relative;
    z-index: 100;
}

#profile p:last-child {
    margin: 25px 0 5px;
    color: #999;
    font-size: 10px;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
}

#profile .f-icon {
    /* margin-bottom: 48px; */
    margin-bottom: -20px;
    height: 50px;
    /* margin-left: -40px; */
}

#profile .f-icon i {
    font-size: 122px;
    color: #dadada;
    opacity: 0.2;
}

#profile .left i {
    color: white;
    position: relative;
    right: 25px;
    top: 8px;
}

#profile .left ul {
    text-align: center;
    margin-bottom: 40px;
}

#profile .left li {
    display: inline-block;
    font-size: 13px;
    border: 1px solid #dedede;
    background-color: white;
    border-radius: 30px;
    margin: 0 5px 10px;
    padding: 5px 20px;
    list-style: none;
    color: #999;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#profile .left li:hover {
    color: #267df4;
    border-color: #267df4;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#profile .left a.active li {
    background-color: #267df4;
    color: white;
    border: 1px solid #267df4;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    -moz-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
}

#profile .right {
    min-height: 370px;
}

#profile .right li:first-child {
    color: #267df4;
    font-size: 26px;
    margin-bottom: 10px;
}

#profile .right li {
    line-height: 30px;
}

#profile .right li i {
    color: #6fc754;
}

#profile h4 {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 10px;
    color: #aaa;
}


/*****************************************************
*** Planos ***
*****************************************************/

#plan {
    padding: 80px 0;
    background-color: #f5f6f7;
}

#plan .subtitle {
    color: #26272d;
}

#plan .toggle-container {
    margin: 30px;
}

#plan .toggle-container p.subtitle {
    margin: 0 0 5px;
    text-align: center;
    color: #999;
    font-size: 10px;
}

#plan .toggle-container .switch-toggles {
    display: block;
    margin: 0 auto;
    position: relative;
    width: 262px;
    height: 50px;
    border: 1px solid rgba(38, 39, 45, 0.2);
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    background-color: #fafafa;
}

#plan .toggle-container .switch-toggles .individual,
#plan .toggle-container .switch-toggles .company {
    position: relative;
    width: 130px;
    float: left;
    padding: 13px 10px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    font-size: 16px;
    color: #8c8f94;
    transition: color 0.7s cubic-bezier(0.545, 0, 0.05, 1);
}

#plan .toggle-container .switch-toggles .individual:hover,
#plan .toggle-container .switch-toggles .company:hover {
    color: #267df4;
}

#plan .toggle-container .switch-toggles .individual.active,
#plan .toggle-container .switch-toggles .company.active {
    color: #267df4;
}

#plan .toggle-container .switch-toggles:after {
    position: absolute;
    content: "";
    width: 122px;
    height: 42px;
    background: #ffffff;
    left: 3px;
    top: 3px;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    box-shadow: 5px 5px 20px 0px rgba(61, 61, 62, 0.059);
    -moz-box-shadow: 5px 5px 20px 0px rgba(61, 61, 62, 0.059);
    -webkitbox-shadow: 5px 5px 20px 0px rgba(61, 61, 62, 0.059);
    transition: all 0.7s cubic-bezier(0.545, 0, 0.05, 1);
}

#plan .toggle-container .switch-toggles.active:after {
    left: 135px;
    top: 3px;
}

#plan .info {
    font-size: 14px;
    margin-top: 24px;
}

#plan .price-table {
    position: relative;
    /* width: 340px; */
    width: 100%;
    max-width: 33.33%;
    float: left;
    padding: 20px 0;
    transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s;
}

#plan .price-table .table-inner {
    background-color: #fff;
    padding: 40px 15px 50px;
    transition: padding .3s;
    -moz-transition: padding .3s;
    -ms-transition: padding .3s;
    -webkit-transition: padding .3s;
}

#plan h3 {
    margin-bottom: 0;
}

#plan .price-table .table-inner h3 {
    margin: 0 0 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 5px;
    color: #267df4;
}

#plan .price-table .table-inner .price,
.modal-body .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 500;
    width: 100%;
    text-transform: uppercase;
    color: #333;
    display: inline-block;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    color: #267df4;
}

#plan .price-table .table-inner .phrase {
    font-size: 14px;
    line-height: 28px;
    margin-top: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
}

#plan .price-table .table-inner .feature-list li {
    font-size: 12px;
    line-height: 12px;
    color: #464646;
    margin-bottom: 10px;
}

#plan .price-table .table-inner .feature-list li i {
    color: #6fc754;
}

#plan .price-table .table-inner .feature-list li:last-child {
    margin-bottom: 30px;
}

#plan .price-table .table-inner .btn {
    width: 210px;
    max-width: 100%;
    margin: 20px auto;
    display: block;
}

#plan .price-table .table-inner .btn:last-child {
    margin-bottom: 0;
}

#plan .price-table .table-inner .btn-blue {
    background-color: transparent;
    border: 1px solid #267df4;
    color: #267df4;
    box-shadow: none;
}

#plan .price-table:hover {
    z-index: 2;
    padding: 0;
    box-shadow: 15px 25px 50px 0px rgba(92, 95, 101, 0.2);
    -moz-box-shadow: 15px 25px 50px 0px rgba(92, 95, 101, 0.2);
    -webkit-box-shadow: 15px 25px 50px 0px rgba(92, 95, 101, 0.2);
    transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s;
}

#plan .price-table:hover .table-inner {
    background-color: #ffffff;
    padding: 60px 15px 70px;
    border-bottom: 2px solid #267df4;
    transition: padding .3s;
    -moz-transition: padding .3s;
    -ms-transition: padding .3s;
    -webkit-transition: padding .3s;
}

#plan .price-table:hover .btn-blue {
    background-color: #267df4;
    -webkit-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    -moz-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
    color: #ffffff;
    transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s;
}

#plan .price-table p {
    color: #464646;
    font-size: 12px;
    line-height: normal;
    margin: 0;
}

#plan #price_tables .individual,
#plan #price_tables .company {
    position: relative;
    width: 100%;
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    transition: opacity 0.97s, -webkit-transform 0.97s;
    transition: opacity 0.97s, transform 0.97s;
    transition: opacity 0.97s, transform 0.97s, -webkit-transform 0.97s;
    transition-timing-function: cubic-bezier(0.545, 0, 0.05, 1);
}

#plan #price_tables .individual .price-table,
#plan #price_tables .company .price-table {
    display: none;
}

#plan #price_tables .individual.active,
#plan #price_tables .company.active {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#plan #price_tables .individual.active .price-table,
#plan #price_tables .company.active .price-table {
    display: block;
}

#plan #price_tables .btn-secondary {
    color: #267df4;
    font-size: 14px;
}

#plan #price_tables a.protocolos {
    border: 1px solid #dedede;
    color: #868686;
    font-size: 12px;
    padding: 2px 10px;
    display: inline-block;
    margin-top: 30px;
    border-radius: 15px;
}

#plan #price_tables a.protocolos:hover {
    color: #267df4;
    border: 1px solid #267df4;
}

#plan p.freemonth {
    color: #267df4;
    font-size: 14px;
}

.modal-body img {
    margin-bottom: 20px;
}

.modal-title {
    margin: 10px 0 10px;
    line-height: 1.42857143;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    color: #267df4;
}

.modal-header {
    border: 0;
}

.modal-footer {
    text-align: center;
    border: 0;
}

.modal-header span {
    position: absolute;
    top: 25px;
    right: 25px;
}

p.modal-info-title {
    color: #267df4;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    margin-bottom: 10px;
}

.modal-body p {
    font-size: 14px;
    line-height: 16px;
    margin-top: 20px;
}

.modal-info {
    padding: 0 20px;
}


/*****************************************************
*** Overview ***
*****************************************************/

#overview {
    background-color: #fcfcfc;
    overflow: hidden;
}

#overview .img-responsive {
    /* max-width: 150%; */
    height: auto;
    margin: 0 auto;
    display: block;
    position: relative;
    /* left: -25%; */
}

@media only screen and (max-width: 400px) {
    #overview .img-responsive {
        width: 220%;
        max-width: 220%;
        position: relative;
        left: -60%;
    }
}


/*****************************************************
*** Footer ***
*****************************************************/

#footer {
    color: white;
    /* background-color: #267df4; */
    background-color: #337ab7;
    background-image: url('../images/bg-running.png');
    background-repeat: no-repeat;
    font-size: 16px;
}

#footer .footer-container {
    padding-top: 80px;
    padding-bottom: 60px;
}

#footer .logo {
    /* margin-bottom: 36px; */
    margin-bottom: 24px;
}

#footer img.logo {
    height: 70px;
    width: 100%;
    opacity: .5;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all 3s;
    margin: 30px auto 0;
}

#footer img.logo:hover {
    opacity: .8;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all 3s;
}

#footer img.download {
    height: auto;
    width: 130px;
    margin: 0 0 10px;
}

#footer p {
    font-size: 14px;
    line-height: 24px;
}

#footer ul li .title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    font-size: 12px;
}

#footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    line-height: 36px;
    font-size: 14px;
}

#footer ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

#footer .socials {
    margin-top: 32px;
    text-align: center;
}

#footer .socials li {
    display: inline-block;
    font-size: 20px;
    margin-right: 20px;
}

#footer .socials li a {
    color: rgba(255, 255, 255, 0.5);
}

#footer .socials li:last-child {
    margin-right: 0;
}

#footer .copyright-container {
    color: white;
    /* padding: 20px; */
}

#footer .copyright-container a {
    color: rgba(255, 255, 255, 0.6);
}

#footer .copyright-container a:hover {
    color: rgba(255, 255, 255, 1);
}

#footer .more-info {
    line-height: 24px;
    font-size: 14px;
    display: inline-block;
    padding: 13px;
    background: rgba(255, 255, 255, 0.1);
}

#footer .made-by {
    font-size: 9px;
    font-weight: 700;
    line-height: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding-top: 13px;
}

#footer a .powered-by img {
    opacity: .6;
}

#footer a:hover .powered-by img {
    opacity: .9;
}

#footer .powered-by {
    font-size: 9px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    height: 50px;
}


/*****************************************************
*** LOGIN + REGISTO ***
*****************************************************/

#login {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
}

#login .form-group,
#registo .form-group {
    text-align: center;
}

#login .logo,
#registo .logo {
    margin: 30px auto;
    display: block;
    width: 200px;
}

#login .login-content {
    max-width: 350px;
    margin: 0 auto;
}

#registo .login-content {
    max-width: 500px;
    margin: 0 auto;
}

#login .separator,
#registo .separator {
    border-top: 1px solid #efefef;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

#login h4,
#registo h4 {
    text-align: center;
    margin: 50px 0 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

#registo p.subtitle {
    margin-bottom: 40px;
}

#registo .btn-blue {
    margin-right: 20px;
    color: #fff;
}

#registo .btn-secondary {
    color: #267df4;
    font-size: 16px;
    border: 1px solid rgba(38, 39, 45, 0.1);
    font-weight: 400;
    padding: 10px 25px;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}

#registo .btn-secondary:hover {
    color: #0a4ead;
    border-color: #267df4;
}

#registo label {
    color: #555;
}

#login .separator p.copyright,
#registo .separator p.copyright {
    font-size: 14px;
    color: #969696;
}

#login .footer-note p,
#registo .footer-note p {
    font-size: 14px;
    text-align: center;
    color: #969696;
}

#registo select {
    width: 100%;
    height: 50px;
    margin: 0 0 20px 0;
    max-width: 100%;
    border: 1px solid rgba(38, 39, 45, 0.2);
    padding: 0 16px;
    font-size: 16px;
    background-color: transparent;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#login input,
#registo input {
    width: 100%;
    height: 50px;
    margin: 0 0 20px 0;
    max-width: 100%;
    border: 1px solid rgba(38, 39, 45, 0.2);
    padding: 16px 16px;
    font-size: 16px;
    background-color: transparent;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#registo input[type="checkbox"] {
    height: auto;
    max-width: none;
    width: auto;
    margin: 0 5px 0;
    border: none;
    padding: 0;
    font-size: 16px;
    background-color: transparent;
}

#login input[type="password"]:focus,
#registo input:focus {
    outline: none;
    border: 1px solid #267df4;
    color: #26272d;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#login button .lnr,
#registo button .lnr {
    font-size: 10px;
}

#login input::-webkit-input-placeholder,
#login textarea::-webkit-input-placeholder,
#registo input::-webkit-input-placeholder,
#registo textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ccc;
}

#login input::-moz-placeholder,
#login textarea::-moz-placeholder,
#registo input::-moz-placeholder,
#registo textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #ccc;
}

#login input:-ms-input-placeholder,
#login textarea:-ms-input-placeholder,
#registo input:-ms-input-placeholder,
#registo textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #ccc;
}

#login input:-moz-placeholder,
#login textarea:-moz-placeholder,
#registo input:-moz-placeholder,
#registo textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #ccc;
}


/*****************************************************
*** REGISTO ***
*****************************************************/


/*****************************************************
*** FAQ ***
*****************************************************/

#faq {
    padding-top: 90px;
}

#faq h1.title {
    font-size: 40px;
    line-height: 40px;
    margin-top: 50px;
    margin-bottom: 30px;
}

#faq h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 40px 0 20px;
    line-height: 20px;
    z-index: 100;
    color: #585b5f;
}

#faq h5 {
    font-size: 18px;
    margin: 0 0 30px;
    line-height: 20px;
    z-index: 100;
    color: #585b5f;
}

#faq p {
    font-size: 16px;
}

#faq p:last-child {
    margin-bottom: 50px;
}

#faq .accordion {
    background-color: #f9f9f9;
    color: #444;
    margin: 0;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

#faq .active,
#faq .accordion:hover {
    background-color: #ececec;
}

#faq button#section7 {
    margin-bottom: 30px;
}

#faq .panel {
    padding: 0 18px;
    border: 0;
    margin: 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

#faq .panel p:first-child {
    padding-top: 20px;
}


/*****************************************************
Responsive Styles
*****************************************************/

@media only screen and (max-width: 1200px) {
    p {
        font-size: 16px;
    }
    #intro-section .desktop-showcase img {
        max-width: 700px;
    }
    #intro-section .desktop-showcase {
        position: absolute;
        right: 50%;
        bottom: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .container {
        width: 100%;
        padding: 0 60px;
    }
    p {
        font-size: 16px;
    }
    /*** Main Nav ***/
    #main-nav .col-md-4:first-child,
    #main-nav .col-md-4:last-child {
        display: none;
    }
    #main-nav .container {
        padding: 0 20px;
    }
    #main-nav .logo {
        padding-top: 0px;
    }
    #main-nav ul li {
        margin-right: 5px;
    }
    #main-nav #slide_out_menu {
        position: fixed;
        display: block;
        width: 300px;
        height: 100%;
        left: -300px;
    }
    #main-nav #slide_out_menu .menu-close {
        top: 25px;
    }
    #carousel img {
        margin-top: 85px;
    }
    .carousel-caption {
        padding-bottom: 150px;
    }
    #main-nav .more-info {
        font-size: 12px;
        color: white;
    }
    #main-nav #slide_out_menu .slide_out_menu_footer .socials {
        text-align: center;
    }
    #main-nav #slide_out_menu ul li:last-child {
        margin-top: 10px;
    }
    #main-nav ul li a {
        padding: 0;
    }
    /*** Features ***/
    #features {
        padding: 50px 0;
    }
    #features .feature {
        padding: 0px 0px;
    }
    #features .feature .f-icon {
        margin-bottom: 0;
        height: 20px;
        margin-left: -20px;
    }
    #features .feature .f-icon i {
        font-size: 80px;
    }
    /*** iPhone Feature ***/
    #intro-section {
        padding: 80px 0 60px;
    }
    #intro-section .desktop-showcase {
        position: absolute;
        right: 45%;
        bottom: 100px;
    }
    /*** Map Feature ***/
    #map-feature {
        padding: 80px 0 100px;
    }
    #map-feature .map-showcase {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 0 15px;
        margin-top: 64px;
    }
    #intro-section .desktop-showcase img {
        max-width: 100%;
    }
    #intro-section .desktop-showcase {
        position: relative;
        right: 0;
        bottom: 0;
    }
    #intro-section .btns-container {
        text-align: center;
    }
    /*** iPhone Screens ***/
    #iphone-screens {
        padding: 120px 0 620px;
    }
    #iphone-screens .images-list li {
        position: absolute;
        width: 240px;
        top: 68px;
    }
    #iphone-screens .images-list li img {
        max-width: 100%;
    }
    /*** Customers ***/
    #customers .carousel-control.left,
    #customers .carousel-control.right {
        display: none;
    }
    /*** Plan ***/
    #plan {
        padding: 70px 0 40px;
    }
    #plan #price_tables .individual.active,
    #plan #price_tables .company.active {
        margin-top: 40px;
    }
    #plan .toggle-container .switch-toggles .individual,
    #plan .toggle-container .switch-toggles .company {
        margin-top: 0;
    }
    /*** Footer ***/
    #footer .footer-container {
        padding-top: 50px;
        padding-bottom: 0;
    }
    #footer .socials {
        margin-bottom: 60px;
    }
    #footer .footer-links {
        margin-bottom: 30px;
    }
    #footer .footer-links:last-child {
        margin-bottom: 0;
    }
    #footer img.logo {
        margin: 60px auto 0;
    }
    /*** Copyright Container ***/
    .copyright-container .text-right {
        text-align: left;
        margin-top: 22px;
    }
}

@media only screen and (max-width: 768px) {
    /*** iPhone Screens ***/
    #iphone-screens {
        padding: 120px 0 460px;
    }
    #iphone-screens .images-list li {
        position: absolute;
        width: 178px;
        top: 52px;
    }
    #iphone-screens .images-list li img {
        max-width: 100%;
    }
    #iphone-screens .images-list li:nth-child(1) {
        margin-left: -502px;
    }
    #iphone-screens .images-list li:nth-child(2) {
        margin-left: -304px;
    }
    #iphone-screens .images-list li:nth-child(4) {
        margin-right: -304px;
    }
    #iphone-screens .images-list li:nth-child(5) {
        margin-right: -502px;
    }
    #iphone-screens .images-list li.main-img {
        width: 220px;
        margin-left: -110px;
    }
}

@media only screen and (max-width: 575px) {
    #intro-section .desktop-showcase {
        position: relative;
        right: 0;
        bottom: 0;
    }
    #intro-section .btns-container a {
        margin-right: 0;
    }
    input[type="text"],
    input[type="email"] {
        padding: 16px 26px;
    }
    /*** Header ***/
    #header .header_iphone {
        bottom: -220px;
        margin-left: -140px;
        width: 280px;
    }
    /*** Ready to Buy  ***/
    #ready-to-buy .form-group .btn,
    #subscribe .form-group .btn {
        position: relative;
        margin-top: 14px;
    }
    /*** Customers ***/
    #customers {
        padding: 120px 0;
    }
    #customers .carousel-indicators li {
        width: 90px;
        height: 90px;
    }
    /*** Footer ***/
    #footer .footer-container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    #footer .footer-links {
        width: 100%;
        text-align: center;
    }
    #footer img.logo {
        height: 70px;
        margin: 0 auto;
        width: 100%;
    }
    #footer .socials {
        text-align: center;
    }
}

@media only screen and (max-width: 400px) {
    .container {
        width: 100%;
        padding: 0 20px;
        overflow: hidden;
    }
    .carousel-inner {
        height: 490px;
    }
    #carousel img {
        margin-top: 85px;
        height: 500px;
    }
    .carousel-caption {
        padding-bottom: 200px;
    }
    #intro-section {
        padding: 20px 0 30px;
    }
    #intro-section .desktop-showcase img {
        width: 600px;
        max-width: 700px;
        margin-left: -30%;
    }
    #features {
        padding: 50px 20px;
    }
    #perfis img,
    #seguranca img,
    #conectado img {
        max-height: 200px;
        margin: 0 auto 50px;
    }
    #profile p:last-child {
        margin: 25px 0 25px;
        font-size: 12px;
        line-height: 16px;
    }
    #profile .left li {
        font-size: 14px;
        padding: 15px 25px;
    }
    #profile .right li {
        line-height: 30px;
        font-size: 15px;
    }
    #plan .price-table {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 10px 0;
        float: none;
    }
    #plan .price-table {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 10px 0;
        float: none;
    }
    #plan .price-table:hover {
        z-index: 2;
        padding: 0;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -webkit-transition: all .3s;
    }
    #plan .price-table:hover .table-inner {
        background-color: #ffffff;
        padding: 40px 15px 50px;
        border-bottom: none;
        transition: padding .3s;
        -moz-transition: padding .3s;
        -ms-transition: padding .3s;
        -webkit-transition: padding .3s;
    }
    #plan .price-table .btn-blue,
    #plan .price-table .table-inner .btn-blue {
        background-color: #267df4;
        -webkit-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
        -moz-box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
        box-shadow: 0 1px 1px rgba(38, 125, 244, 0.4), 0 0.5em 1em rgba(38, 125, 244, 0.3);
        color: #ffffff;
        transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -webkit-transition: all .3s;
    }
    #contact {
        padding: 40px 0 0;
    }
    #partners {
        padding: 50px 0;
    }
    #partners .img-responsive {
        margin: 10px auto;
    }
}


/*# sourceMappingURL=style.css.map */