2016-12-20 23:05:20 +00:00
|
|
|
/*!
|
|
|
|
* Start Bootstrap - Landing Page Bootstrap Theme (http://startbootstrap.com)
|
|
|
|
* Code licensed under the Apache License v2.0.
|
|
|
|
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*/
|
2017-05-18 05:13:00 +00:00
|
|
|
@font-face {
|
2017-06-01 20:40:19 +00:00
|
|
|
font-family: 'Lato-Regular';
|
|
|
|
src: url('../fonts/Lato/Lato-Regular.ttf');
|
2017-05-18 05:13:00 +00:00
|
|
|
}
|
2017-07-13 17:04:05 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Lato-Light';
|
|
|
|
src: url('../fonts/Lato/Lato-Light.ttf');
|
|
|
|
}
|
2016-12-20 23:05:20 +00:00
|
|
|
body,
|
|
|
|
html {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2017-07-20 16:13:08 +00:00
|
|
|
font-family: 'Lato-Light', sans-serif;
|
2017-06-01 20:40:19 +00:00
|
|
|
font-weight: 300;
|
2016-12-20 23:05:20 +00:00
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
/*blue light #5A74AF*/
|
|
|
|
/*blue dark #29427A*/
|
2016-12-20 23:05:20 +00:00
|
|
|
.topnav {
|
2017-07-13 09:59:05 +00:00
|
|
|
font-size: 14px;
|
2016-12-20 23:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.lead {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
.btn{
|
|
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
|
|
|
|
}
|
|
|
|
.fa-li.fa-lg {
|
|
|
|
color: #29427A;
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
|
|
|
.btn-transparent{
|
|
|
|
background: transparent;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
color: #fff;
|
|
|
|
transition: all .2s ease-in;
|
|
|
|
}
|
|
|
|
.btn-primary{
|
2017-07-13 23:26:14 +00:00
|
|
|
background: #465882;
|
|
|
|
border-color: transparent;
|
2017-05-18 05:13:00 +00:00
|
|
|
color: #fff;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.btn-primary:hover{
|
|
|
|
background: rgba(41, 66, 122, 0.8);
|
|
|
|
border-color: #29427A;
|
|
|
|
}
|
|
|
|
.btn-transparent:hover{
|
|
|
|
background: #fff;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
color: #000;
|
|
|
|
transition: all .2s ease-in;
|
|
|
|
}
|
|
|
|
.btn-info {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #5A74AF;
|
|
|
|
border-color: #5A74AF;
|
|
|
|
}
|
|
|
|
.btn-info:hover {
|
|
|
|
color: #fff;
|
|
|
|
background-color: rgba(90, 116, 175, 0.8);
|
|
|
|
border-color: #5A74AF;
|
|
|
|
}
|
2017-05-22 18:00:27 +00:00
|
|
|
.btn-info:focus {
|
|
|
|
color: #fff;
|
|
|
|
background-color: rgba(90, 116, 175, 0.8);
|
|
|
|
border-color: #5A74AF;
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
.btn-lg{
|
|
|
|
min-width: 180px;
|
|
|
|
}
|
|
|
|
#logoWhite{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#logoBlack{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.navbar{
|
|
|
|
transition: all .3s ease-in;
|
|
|
|
}
|
|
|
|
.navbar-default{
|
|
|
|
background: #fff;
|
|
|
|
border: none;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
.navbar-transparent{
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
.navbar-transparent #logoBlack{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.navbar-transparent #logoWhite{
|
|
|
|
display: block;
|
|
|
|
width: 220px;
|
|
|
|
}
|
|
|
|
.navbar-default .navbar-nav>li>a {
|
|
|
|
cursor: pointer;
|
2017-07-13 17:04:05 +00:00
|
|
|
font-family: 'Lato-Light', sans-serif;
|
2017-05-18 05:13:00 +00:00
|
|
|
}
|
|
|
|
.navbar-transparent .navbar-nav>li>a {
|
|
|
|
color: #fff;
|
|
|
|
cursor: pointer;
|
2017-07-13 17:04:05 +00:00
|
|
|
font-family: 'Lato-Light', sans-serif;
|
2017-05-18 05:13:00 +00:00
|
|
|
}
|
|
|
|
.navbar-transparent .navbar-nav>li>a:hover {
|
|
|
|
color: #fff;
|
|
|
|
}
|
2017-06-01 20:40:19 +00:00
|
|
|
.navbar-transparent .navbar-nav>li>a:focus, .navbar-transparent .navbar-nav>li>a:hover {
|
|
|
|
color: #fff;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
.navbar-default .btn-link {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.navbar-brand {
|
|
|
|
padding: 10px 15px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-05-23 04:35:29 +00:00
|
|
|
.navbar-right {
|
2017-05-27 17:49:42 +00:00
|
|
|
margin-right: 10px;
|
2017-05-23 04:35:29 +00:00
|
|
|
}
|
2017-05-23 23:32:06 +00:00
|
|
|
.navbar-default .btn-link {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.navbar-default .btn-link:hover {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
2017-05-27 17:49:42 +00:00
|
|
|
.nav-language{
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.nav-language .select-language{
|
|
|
|
padding: 15px 10px;
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
.navbar-transparent .nav-language .select-language{
|
|
|
|
color: #fff;
|
2017-07-13 17:04:05 +00:00
|
|
|
font-family: 'Lato-Light', sans-serif;
|
2017-05-27 17:49:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-language .select-language span{
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
2017-07-13 17:04:05 +00:00
|
|
|
font-family: 'Lato-Light', sans-serif;
|
2017-05-27 17:49:42 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
.nav-language .drop-language{
|
|
|
|
position: absolute;
|
|
|
|
top: 45px;
|
|
|
|
left: -8px;
|
|
|
|
background: #fff;
|
|
|
|
width: 100px;
|
|
|
|
height: 40px;
|
|
|
|
padding: 9px 10px;
|
|
|
|
-webkit-box-shadow: -8px 13px 31px -8px rgba(77,77,77,1);
|
|
|
|
-moz-box-shadow: -8px 13px 31px -8px rgba(77,77,77,1);
|
|
|
|
box-shadow: -8px 13px 31px -8px rgba(77,77,77,1);
|
|
|
|
display: none;
|
|
|
|
z-index: 100;
|
|
|
|
/* margin-left: 10px; */
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.nav-language .drop-language a{
|
|
|
|
cursor: pointer;
|
2017-07-13 17:04:05 +00:00
|
|
|
font-family: 'Lato-Light', sans-serif;
|
2017-05-27 17:49:42 +00:00
|
|
|
}
|
|
|
|
.navbar-transparent .nav-language .drop-language{
|
|
|
|
background: transparent;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
}
|
|
|
|
.navbar-transparent .nav-language .drop-language a{
|
|
|
|
color: #fff;
|
2017-07-13 17:04:05 +00:00
|
|
|
font-family: 'Lato-Light', sans-serif;
|
2017-05-27 17:49:42 +00:00
|
|
|
}
|
|
|
|
.nav-language:hover .drop-language{
|
|
|
|
display: block;
|
|
|
|
}
|
2016-12-20 23:05:20 +00:00
|
|
|
.intro-header {
|
2017-05-18 05:13:00 +00:00
|
|
|
height: 100vh;
|
2016-12-20 23:05:20 +00:00
|
|
|
text-align: center;
|
2017-05-18 05:13:00 +00:00
|
|
|
color: #fff;
|
|
|
|
background: url(../img/configure.jpg) no-repeat center center;
|
2016-12-20 23:05:20 +00:00
|
|
|
background-size: cover;
|
2017-05-18 05:13:00 +00:00
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.intro-header::before{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2017-07-13 23:26:14 +00:00
|
|
|
background: rgba(38, 59, 107, 0.7);
|
2016-12-20 23:05:20 +00:00
|
|
|
}
|
|
|
|
.intro-header-1 {
|
|
|
|
padding-top: 50px; /* If you're making other pages, make sure there is 50px of padding to make sure the navbar doesn't overlap content! */
|
|
|
|
padding-bottom: 50px;
|
|
|
|
text-align: center;
|
2017-05-18 05:13:00 +00:00
|
|
|
color: #fff;
|
2016-12-20 23:05:20 +00:00
|
|
|
background: url(../img/configure.jpg) no-repeat center center;
|
|
|
|
background-size: cover;
|
2017-05-18 05:13:00 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.intro-header-1::before{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background: rgba(90, 116, 175, 0.36);
|
2016-12-20 23:05:20 +00:00
|
|
|
}
|
|
|
|
.intro-header-2 {
|
|
|
|
padding-top: 50px; /* If you're making other pages, make sure there is 50px of padding to make sure the navbar doesn't overlap content! */
|
|
|
|
padding-bottom: 50px;
|
|
|
|
text-align: center;
|
|
|
|
color: #f8f8f8;
|
2017-05-18 05:13:00 +00:00
|
|
|
background: url(../img/banner-bg.jpg) no-repeat center center;
|
2016-12-20 23:05:20 +00:00
|
|
|
background-size: cover;
|
2017-05-18 05:13:00 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.intro-header-2::before{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background: rgba(41, 66, 122, 0.59);
|
2016-12-20 23:05:20 +00:00
|
|
|
}
|
|
|
|
.intro-message {
|
|
|
|
position: relative;
|
2017-05-18 05:13:00 +00:00
|
|
|
width: 80%;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
2016-12-20 23:05:20 +00:00
|
|
|
}
|
|
|
|
.intro-signup {
|
|
|
|
position: relative;
|
|
|
|
padding-top: 20%;
|
|
|
|
padding-bottom: 20%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.intro-message > h1 {
|
|
|
|
margin: 0;
|
2017-05-18 05:13:00 +00:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 6em;
|
2016-12-20 23:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.intro-divider {
|
|
|
|
width: 400px;
|
|
|
|
border-top: 1px solid #f8f8f8;
|
|
|
|
border-bottom: 1px solid rgba(0,0,0,0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.intro-message > h3 {
|
|
|
|
font-weight: 300;
|
2017-07-13 09:59:05 +00:00
|
|
|
|
2017-05-18 05:13:00 +00:00
|
|
|
}
|
2017-05-23 04:35:29 +00:00
|
|
|
|
|
|
|
.intro-pricing{
|
|
|
|
text-align: center;
|
|
|
|
color: #fff;
|
|
|
|
background: url(../img/pattern.jpg) no-repeat center center;
|
|
|
|
background-size: cover;
|
|
|
|
height: 70vh;
|
|
|
|
max-height: 400px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
2017-06-06 21:35:21 +00:00
|
|
|
.intro-pricing.success-pricing{
|
|
|
|
height: 100vh;
|
|
|
|
max-height: 100vh;
|
|
|
|
}
|
2017-05-23 04:35:29 +00:00
|
|
|
.intro-pricing::before{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2017-06-06 21:35:21 +00:00
|
|
|
background: rgba(90, 116, 175, 0.7);
|
2017-05-23 04:35:29 +00:00
|
|
|
}
|
|
|
|
.intro-pricing .intro-message .section-heading{
|
|
|
|
font-size: 45px;
|
|
|
|
width: 80%;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
.split-section {
|
|
|
|
padding: 70px 0;
|
|
|
|
}
|
|
|
|
.split-section .icon-section{
|
|
|
|
position: relative;
|
|
|
|
min-height: 330px;
|
|
|
|
}
|
|
|
|
.split-section .icon-section i{
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
font-size: 216px;
|
|
|
|
color: #5A74AF;
|
|
|
|
}
|
|
|
|
.split-section .split-text .lead{
|
|
|
|
font-size: 21px;
|
|
|
|
color: #3a3a3a;
|
2017-07-16 21:46:23 +00:00
|
|
|
font-weight: 300 !important;
|
2016-12-20 23:05:20 +00:00
|
|
|
}
|
2017-07-17 20:05:33 +00:00
|
|
|
|
|
|
|
.new-lead {
|
|
|
|
font-weight: 300 !important;
|
2017-07-18 21:14:40 +00:00
|
|
|
font-size: 21px !important;
|
2017-07-17 20:05:33 +00:00
|
|
|
}
|
|
|
|
|
2017-05-18 05:13:00 +00:00
|
|
|
.split-section .split-text .split-title{
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
.split-section .split-text .split-title h2{
|
|
|
|
font-size: 50px;
|
|
|
|
line-height: 50px;
|
|
|
|
padding-bottom: 25px;
|
|
|
|
color: #3a3a3a;
|
|
|
|
letter-spacing: 3px;
|
|
|
|
}
|
|
|
|
.split-section.left{
|
|
|
|
background: -webkit-linear-gradient(#f0f4f7, #fff) no-repeat;
|
|
|
|
background: -o-linear-gradient(#f0f4f7, #fff) no-repeat;
|
2017-07-13 09:59:05 +00:00
|
|
|
background: linear-gradient(#f0f4f7, #fff) no-repeat;
|
2017-05-18 05:13:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.split-section.left .split-description{
|
|
|
|
width: 90%;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.split-section.right .split-description{
|
|
|
|
width: 90%;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2017-06-09 20:37:14 +00:00
|
|
|
.split-section.right .split-description.title p{
|
|
|
|
font-size: 27px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
.split-section.right .split-text {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.split-section.right .split-text ul{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.split-section.left .split-text {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.split-section.right .split-text .split-title h2{
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.split-section.left .split-text .split-title h2{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.split-section.right .split-text .split-title::before{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
background: #29427A;
|
|
|
|
height: 7px;
|
|
|
|
width: 70px;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
.split-section.left .split-text .split-title::before{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
background: #29427A;
|
|
|
|
height: 7px;
|
|
|
|
width: 70px;
|
|
|
|
left: 0;
|
|
|
|
}
|
2017-06-04 02:57:21 +00:00
|
|
|
|
|
|
|
.split-section.what .icon-section{
|
|
|
|
position: relative;
|
|
|
|
min-height: 500px;
|
|
|
|
}
|
|
|
|
.split-section.what .split-text .lead {
|
2017-06-09 20:37:14 +00:00
|
|
|
font-size: 19px;
|
2017-06-04 02:57:21 +00:00
|
|
|
color: #3a3a3a;
|
2017-06-09 20:37:14 +00:00
|
|
|
margin-bottom: 5px;
|
|
|
|
line-height: 29px;
|
2017-06-04 02:57:21 +00:00
|
|
|
}
|
|
|
|
.split-section.what .fa-li.fa-lg{
|
|
|
|
font-size: 17px;
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
.pricing-section{
|
|
|
|
padding: 80px 0 !important;
|
|
|
|
background: -webkit-linear-gradient(top, #f0f4f7, #fff) no-repeat;
|
|
|
|
background: linear-gradient(to bottom, #f0f4f7, #fff) no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-section .card{
|
|
|
|
width: 350px;
|
|
|
|
margin: 0 auto;
|
|
|
|
background: #fff;
|
|
|
|
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
|
|
|
|
padding-bottom: 40px;
|
|
|
|
border-radius: 7px;
|
2017-05-23 23:32:06 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.pricing-section .card .img-beta{
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
width: 60px;
|
|
|
|
left: 3px;
|
2017-05-18 05:13:00 +00:00
|
|
|
}
|
|
|
|
.pricing-section .card .title{
|
|
|
|
padding: 15px 40px;
|
|
|
|
}
|
|
|
|
.pricing-section .card .title h3{
|
|
|
|
}
|
|
|
|
.pricing-section .card .price{
|
|
|
|
background: #5A74AF;
|
|
|
|
padding: 22px;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
.pricing-section .card .description{
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
.pricing-section .card .descriptions{
|
|
|
|
padding: 10px 30px;
|
|
|
|
}
|
|
|
|
.pricing-section .card .description p{
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.pricing-section .card .btn{
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
.pricing-section .text{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.pricing-section .text .section-heading{
|
2017-06-29 16:24:45 +00:00
|
|
|
/*font-size: 50px;*/
|
2017-06-30 15:48:45 +00:00
|
|
|
font-size: 48px;
|
2017-05-18 05:13:00 +00:00
|
|
|
line-height: 50px;
|
|
|
|
padding-bottom: 25px;
|
|
|
|
color: #3a3a3a;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.pricing-section .text .section-heading::before{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
background: #29427A;
|
|
|
|
height: 7px;
|
|
|
|
width: 70px;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
.request-section{
|
|
|
|
background-image: -ms-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: -moz-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: -o-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: -webkit-gradient(linear, right top, left top, color-stop(50, #29427A), color-stop(100, #4F6699));
|
|
|
|
background-image: -webkit-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: linear-gradient(to left, #29427A 50%, #4F6699 100%);
|
|
|
|
padding: 70px 0;
|
|
|
|
}
|
|
|
|
.request-section .title h2{
|
2017-05-23 23:32:06 +00:00
|
|
|
font-size: 45px;
|
2017-05-18 05:13:00 +00:00
|
|
|
margin: 0;
|
|
|
|
color: #fff;
|
|
|
|
padding-bottom: 25px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.request-section .title h2::before{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
background: #fff;
|
|
|
|
height: 7px;
|
|
|
|
width: 70px;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
.request-section .form-beta{
|
|
|
|
width: 80%;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 350px;
|
|
|
|
text-align: center;
|
2016-12-20 23:05:20 +00:00
|
|
|
|
2017-05-18 05:13:00 +00:00
|
|
|
}
|
|
|
|
.request-section .form-beta input{
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
.request-section .form-beta input{
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
.request-section .form-beta .btn-lg{
|
|
|
|
width: 100%;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
.banner {
|
|
|
|
padding: 100px 0;
|
|
|
|
color: #fff;
|
|
|
|
background: url(../img/banner-bg.jpg) no-repeat center center;
|
|
|
|
background-size: cover;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.full-contact-section{
|
|
|
|
background-image: -ms-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: -moz-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: -o-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: -webkit-gradient(linear, right top, left top, color-stop(50, #29427A), color-stop(100, #4F6699));
|
|
|
|
background-image: -webkit-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: linear-gradient(to left, #29427A 50%, #4F6699 100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-section {
|
|
|
|
padding: 60px 0;
|
|
|
|
color: #fff;
|
|
|
|
background-attachment: fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-section .card{
|
|
|
|
text-align: center;
|
|
|
|
width: 350px;
|
|
|
|
margin: 0 auto;
|
|
|
|
background: #fff;
|
|
|
|
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
|
|
|
|
padding-bottom: 40px;
|
|
|
|
border-radius: 7px;
|
|
|
|
color: #4c4444;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 45px;
|
|
|
|
margin-top: -115px;
|
|
|
|
}
|
|
|
|
.contact-section .card .social a{
|
|
|
|
color: #29427A;
|
|
|
|
font-size: 45px;
|
|
|
|
}
|
|
|
|
.contact-section .card .subtitle h3{
|
|
|
|
font-size: 30px;
|
|
|
|
margin-bottom: 23px;
|
|
|
|
}
|
|
|
|
.contact-section .card .social a:hover{
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.contact-section .title {
|
|
|
|
margin-right: auto;
|
|
|
|
width: 80%;
|
|
|
|
max-width: 468px;
|
|
|
|
}
|
|
|
|
.contact-section .title h2{
|
|
|
|
font-size: 65px;
|
|
|
|
margin: 0;
|
|
|
|
color: #fff;
|
|
|
|
padding-bottom: 25px;
|
|
|
|
position: relative;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.contact-section .title h2::before{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
background: #fff;
|
|
|
|
height: 7px;
|
|
|
|
width: 70px;
|
|
|
|
right: 0;
|
|
|
|
}
|
2017-06-28 07:28:10 +00:00
|
|
|
/*Why DCL*/
|
2017-06-29 09:20:14 +00:00
|
|
|
.full-whydcl-sec {
|
2017-06-28 07:28:10 +00:00
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
2017-06-29 09:20:14 +00:00
|
|
|
background-image: -ms-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: -moz-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: -o-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: -webkit-gradient(linear, right top, left top, color-stop(50, #29427A), color-stop(100, #4F6699));
|
|
|
|
background-image: -webkit-linear-gradient(right, #29427A 50%, #4F6699 100%);
|
|
|
|
background-image: linear-gradient(to left, #29427A 50%, #4F6699 100%);
|
|
|
|
}
|
|
|
|
.whydcl-header {
|
|
|
|
padding: 150px 0 150px 0;
|
|
|
|
text-align: center;
|
|
|
|
color: #f8f8f8;
|
2017-06-30 09:14:01 +00:00
|
|
|
background: url(../img/pattern.jpg) no-repeat center center;
|
2017-06-29 09:20:14 +00:00
|
|
|
background-size: cover;
|
|
|
|
position: relative;
|
|
|
|
background-attachment: fixed;
|
|
|
|
}
|
|
|
|
.whydcl-header::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background: rgba(90, 116, 175,0.85);
|
|
|
|
/*background: rgba(45,70,122,0.8);*/
|
2017-06-28 07:28:10 +00:00
|
|
|
}
|
|
|
|
.single-heading h2 {
|
|
|
|
font-size: 65px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#tech_stack {
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
#tech_stack h3 {
|
2017-06-29 15:00:36 +00:00
|
|
|
font-size: 42px;
|
2017-06-28 07:28:10 +00:00
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
hr.thick-divider {
|
|
|
|
border-top: 3px solid #eee !important;
|
|
|
|
}
|
|
|
|
.space {
|
|
|
|
padding: 50px 0;
|
|
|
|
}
|
|
|
|
tech-sub-sec h2 {
|
|
|
|
font-size: 45px;
|
|
|
|
line-height: 60px;
|
|
|
|
padding-bottom: 25px;
|
|
|
|
color: #3a3a3a;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
}
|
|
|
|
.logo-wrap {
|
|
|
|
text-align: center;
|
2017-06-29 15:00:36 +00:00
|
|
|
min-height: 140px;
|
2017-06-28 07:28:10 +00:00
|
|
|
padding: 20px 40px 30px 40px;
|
|
|
|
}
|
|
|
|
.btm-space{
|
2017-06-29 12:04:15 +00:00
|
|
|
padding-bottom: 8px;
|
2017-06-28 07:28:10 +00:00
|
|
|
}
|
2017-07-09 10:48:15 +00:00
|
|
|
.btm-space-tayga{
|
|
|
|
padding-bottom: 12px;
|
|
|
|
}
|
2017-06-28 07:28:10 +00:00
|
|
|
.percent-text {
|
2017-06-30 09:14:01 +00:00
|
|
|
font-size: 50px;
|
2017-06-28 07:28:10 +00:00
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
.tech-sub-sec h2 {
|
|
|
|
font-size: 40px;
|
|
|
|
line-height: 55px;
|
|
|
|
}
|
|
|
|
.space-middle{
|
2017-06-30 19:25:49 +00:00
|
|
|
padding: 45px 0;
|
2017-06-28 07:28:10 +00:00
|
|
|
}
|
|
|
|
.padding-vertical{
|
2017-06-29 12:04:15 +00:00
|
|
|
padding: 35px 0;
|
2017-06-28 07:28:10 +00:00
|
|
|
}
|
2017-06-28 09:36:20 +00:00
|
|
|
.percent-text img {
|
|
|
|
margin-left:20px;
|
2017-06-29 12:04:15 +00:00
|
|
|
}
|
2017-06-28 07:28:10 +00:00
|
|
|
.space-block {
|
|
|
|
padding: 30px 0;
|
|
|
|
}
|
2017-06-28 09:36:20 +00:00
|
|
|
.dropdown-menu {
|
|
|
|
border: 1px solid #fff;
|
|
|
|
-webkit-box-shadow: -8px 13px 31px -8px rgba(77,77,77,1);
|
|
|
|
-moz-box-shadow: -8px 13px 31px -8px rgba(77,77,77,1);
|
|
|
|
box-shadow: -8px 13px 31px -8px rgba(77,77,77,1);
|
|
|
|
display: none;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 4px !important;
|
|
|
|
padding: 5px !important;
|
|
|
|
}
|
|
|
|
.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
|
|
|
|
background: transparent;
|
|
|
|
text-decoration: underline !important;
|
|
|
|
}
|
2017-06-29 15:00:36 +00:00
|
|
|
.logo-wrap .logo-caption {
|
|
|
|
padding-top: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
color: #999 !important;
|
|
|
|
}
|
|
|
|
.lead-light {
|
|
|
|
color: #999 !important;
|
|
|
|
line-height: 32px !important;
|
|
|
|
}
|
|
|
|
.logo-wrap-1 {
|
|
|
|
padding-top: 50px;
|
|
|
|
}
|
2017-06-29 16:24:45 +00:00
|
|
|
.dropdown-menu > li > a {
|
|
|
|
padding: 1px 10px !important;
|
|
|
|
}
|
|
|
|
.dropdown-menu{
|
|
|
|
left: 0 !important;
|
2017-06-30 19:05:17 +00:00
|
|
|
min-width: 155px;
|
2017-06-30 15:48:45 +00:00
|
|
|
text-align: left;
|
|
|
|
margin-left: 15px;
|
2017-06-29 16:24:45 +00:00
|
|
|
}
|
2017-06-29 19:51:53 +00:00
|
|
|
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
|
|
|
|
background: transparent;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2017-06-30 09:14:01 +00:00
|
|
|
.dropdown-menu > li > a {
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 300;
|
2017-07-13 17:04:05 +00:00
|
|
|
font-family: 'Lato-Light', sans-serif;
|
2017-06-30 09:14:01 +00:00
|
|
|
}
|
2017-06-30 15:48:45 +00:00
|
|
|
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
|
|
|
|
background: #2D457A;
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
2017-06-29 19:51:53 +00:00
|
|
|
|
2017-05-23 04:35:29 +00:00
|
|
|
/*Pricing page*/
|
|
|
|
|
|
|
|
.price-calc-section{
|
|
|
|
padding: 80px 40px !important;
|
|
|
|
background: -webkit-linear-gradient(top, #f0f4f7, #fff) no-repeat;
|
|
|
|
background: linear-gradient(to bottom, #f0f4f7, #fff) no-repeat;
|
|
|
|
display: flex;
|
2017-06-29 15:00:36 +00:00
|
|
|
font-family: 'Lato-Regular', sans-serif;
|
2017-05-23 04:35:29 +00:00
|
|
|
}
|
|
|
|
.price-calc-section .text{
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
.price-calc-section .text .section-heading{
|
2017-05-29 20:05:11 +00:00
|
|
|
font-size: 48px;
|
|
|
|
line-height: 48px;
|
2017-06-09 20:37:14 +00:00
|
|
|
padding-bottom: 27px;
|
2017-05-23 04:35:29 +00:00
|
|
|
color: #3a3a3a;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
position: relative;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2017-05-23 17:06:48 +00:00
|
|
|
.price-calc-section .text .description{
|
|
|
|
font-size: 20px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2017-05-25 21:16:18 +00:00
|
|
|
|
2017-05-23 04:35:29 +00:00
|
|
|
.price-calc-section .text .section-heading::before{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
background: #29427A;
|
|
|
|
height: 7px;
|
|
|
|
width: 70px;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
.price-calc-section .card{
|
|
|
|
width: 50%;
|
|
|
|
margin: 0 auto;
|
|
|
|
background: #fff;
|
|
|
|
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
|
|
|
|
padding-bottom: 40px;
|
|
|
|
border-radius: 7px;
|
|
|
|
text-align: center;
|
|
|
|
/* margin-right: auto; */
|
|
|
|
max-width: 400px;
|
2017-05-23 23:32:06 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
2017-06-11 11:23:57 +00:00
|
|
|
.price-calc-section .landing {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
.no-padding{
|
|
|
|
padding:0 !important;
|
2017-06-11 10:58:11 +00:00
|
|
|
}
|
2017-05-23 23:32:06 +00:00
|
|
|
.price-calc-section .card .img-beta{
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
width: 60px;
|
|
|
|
left: 3px;
|
2017-05-23 04:35:29 +00:00
|
|
|
}
|
|
|
|
.price-calc-section .card .title{
|
|
|
|
padding: 15px 40px;
|
|
|
|
}
|
|
|
|
.price-calc-section .card .title h3{
|
2017-06-29 15:00:36 +00:00
|
|
|
font-family: 'Lato-Regular', sans-serif;
|
2017-05-23 04:35:29 +00:00
|
|
|
}
|
|
|
|
.price-calc-section .card .price{
|
|
|
|
background: #5A74AF;
|
|
|
|
padding: 22px;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
2017-06-14 21:51:42 +00:00
|
|
|
.price-calc-section .card .price .price-text{
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
2017-05-23 04:35:29 +00:00
|
|
|
.price-calc-section .card .description{
|
|
|
|
padding: 12px;
|
|
|
|
position: relative;
|
2017-05-23 17:06:48 +00:00
|
|
|
display: flex;
|
2017-07-01 12:28:42 +00:00
|
|
|
justify-content: space-around !important;
|
|
|
|
align-items: center !important;
|
2017-05-23 04:35:29 +00:00
|
|
|
}
|
2017-05-25 21:16:18 +00:00
|
|
|
|
2017-06-04 02:19:13 +00:00
|
|
|
.price-calc-section .card .description span {
|
2017-06-06 21:35:21 +00:00
|
|
|
font-size: 16px;
|
2017-05-23 17:06:48 +00:00
|
|
|
margin-left: 4px;
|
2017-06-04 02:19:13 +00:00
|
|
|
margin-left: 0px;
|
|
|
|
/* justify-self: start; */
|
|
|
|
width: 30%;
|
|
|
|
text-align: left;
|
2017-05-23 04:35:29 +00:00
|
|
|
}
|
2017-07-01 12:28:42 +00:00
|
|
|
.price-calc-section .card .description .select-number{
|
|
|
|
font-size: 20px;
|
|
|
|
text-align: center;
|
2017-07-13 09:59:05 +00:00
|
|
|
width: 85px;
|
2017-05-25 21:16:18 +00:00
|
|
|
}
|
2017-05-23 04:35:29 +00:00
|
|
|
.price-calc-section .card .description i{
|
|
|
|
color: #29427A;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
.price-calc-section .card .description .left{
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
.price-calc-section .card .description .right{
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
|
|
|
.price-calc-section .card .descriptions{
|
|
|
|
padding: 10px 30px;
|
|
|
|
}
|
|
|
|
.price-calc-section .card .description p{
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.price-calc-section .card .btn{
|
|
|
|
margin-top: 20px;
|
2017-05-23 17:06:48 +00:00
|
|
|
font-size: 20px;
|
|
|
|
width: 200px;
|
2017-07-07 18:42:10 +00:00
|
|
|
border: none;
|
2017-05-23 17:06:48 +00:00
|
|
|
}
|
|
|
|
.price-calc-section .card .select-configuration select{
|
|
|
|
outline: none;
|
|
|
|
background: #fff;
|
|
|
|
border-color: #d0d0d0;
|
|
|
|
height: 40px;
|
|
|
|
width: 200px;
|
|
|
|
text-align: center;
|
2017-06-05 19:30:41 +00:00
|
|
|
font-size: 16px;
|
|
|
|
margin-left: 10px;
|
2017-05-23 17:06:48 +00:00
|
|
|
}
|
|
|
|
.price-calc-section .card .check-ip{
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
2017-07-01 12:28:42 +00:00
|
|
|
.price-calc-section .card .justify-center{
|
|
|
|
justify-content: center !important;
|
2017-06-05 19:30:41 +00:00
|
|
|
}
|
|
|
|
.price-calc-section .card .description.input label{
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 800;
|
|
|
|
font-family: 'Lato-Regular';
|
|
|
|
margin-bottom: 0;
|
|
|
|
width: 40px;
|
|
|
|
}
|
2017-07-01 12:28:42 +00:00
|
|
|
/*Changed class****.price-calc-section .card .description.input input*/
|
|
|
|
.price-calc-section .card .description input{
|
|
|
|
width: 200px;
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: left;
|
2017-06-05 19:30:41 +00:00
|
|
|
padding: 5px 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid #d0d0d0;
|
|
|
|
background: #fff;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2017-05-23 17:06:48 +00:00
|
|
|
|
|
|
|
.price-calc-section .card .check-ip input[type=checkbox]{
|
|
|
|
font-size: 17px;
|
|
|
|
margin: 0 8px;
|
2017-05-23 04:35:29 +00:00
|
|
|
}
|
2017-07-01 12:28:42 +00:00
|
|
|
.help-block.with-errors {
|
|
|
|
text-align: center;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2017-07-02 13:04:17 +00:00
|
|
|
.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label{
|
|
|
|
color: #eb4d5c;
|
|
|
|
}
|
2017-07-01 12:28:42 +00:00
|
|
|
.form-group {
|
|
|
|
margin: 0;
|
|
|
|
border-bottom: 1px solid rgba(128, 128, 128, 0.3);
|
|
|
|
}
|
2017-06-30 09:14:01 +00:00
|
|
|
@media(max-width:767px) {
|
|
|
|
.percent-text {
|
|
|
|
font-size: 50px;
|
|
|
|
}
|
|
|
|
#tech_stack h3 {
|
|
|
|
font-size: 30px;
|
|
|
|
line-height: 40px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.navbar-nav .open .dropdown-menu {
|
|
|
|
text-align: left;
|
|
|
|
font-size: 12px;
|
2017-06-30 15:48:45 +00:00
|
|
|
}
|
|
|
|
.visible-mobile {
|
|
|
|
display:block;
|
|
|
|
}
|
|
|
|
.visible-desktop {
|
|
|
|
display:none !important;
|
|
|
|
}
|
2017-06-30 17:51:37 +00:00
|
|
|
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
|
|
|
|
background: transparent;
|
|
|
|
color: #777 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2017-07-13 09:59:05 +00:00
|
|
|
@media screen and (min-device-width: 480px) and (max-device-width: 767px) {
|
2017-06-30 17:51:37 +00:00
|
|
|
.logo-wrap {
|
|
|
|
width: 50%;
|
|
|
|
padding: 15px 30px !important;
|
|
|
|
min-height: 179px;
|
|
|
|
}
|
|
|
|
.logo-wrap-1 {
|
|
|
|
width: 50%;
|
2017-07-13 09:59:05 +00:00
|
|
|
padding: 15px 30px !important;
|
2017-06-30 17:51:37 +00:00
|
|
|
min-height: 179px;
|
|
|
|
}
|
|
|
|
.landscape-xs-6{
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
.landscape-xs-8{
|
|
|
|
width: 66.66666667%;
|
|
|
|
}
|
|
|
|
.landscape-xs-4{
|
|
|
|
width: 33.33333333%;
|
|
|
|
}
|
|
|
|
|
2017-06-30 09:14:01 +00:00
|
|
|
}
|
2017-06-30 15:48:45 +00:00
|
|
|
@media(min-width:768px) {
|
|
|
|
.visible-mobile {
|
|
|
|
display:none !important;
|
|
|
|
}
|
|
|
|
.visible-desktop {
|
|
|
|
display:block;
|
|
|
|
}
|
2017-06-30 17:51:37 +00:00
|
|
|
|
2017-06-29 19:51:53 +00:00
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
@media(max-width:990px) {
|
|
|
|
.pricing-section .text {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
.navbar-transparent .navbar-nav>li>a {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
2017-05-22 18:00:27 +00:00
|
|
|
.pricing-section .text .section-heading::before {
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media(max-width:768px) {
|
2017-06-30 09:14:01 +00:00
|
|
|
.percent-text {
|
|
|
|
font-size: 43px;
|
2017-06-28 09:36:20 +00:00
|
|
|
}
|
2017-06-28 07:28:10 +00:00
|
|
|
.tech-sub-sec h2 {
|
|
|
|
font-size: 30px;
|
2017-06-28 09:36:20 +00:00
|
|
|
line-height: 40px;
|
2017-06-28 07:28:10 +00:00
|
|
|
}
|
|
|
|
.single-heading h2 {
|
|
|
|
font-size: 50px;
|
|
|
|
}
|
|
|
|
.logo-wrap {
|
|
|
|
padding: 10px;
|
2017-06-28 09:36:20 +00:00
|
|
|
}
|
|
|
|
.navbar-transparent li a {
|
|
|
|
color: #777 !important;
|
2017-06-28 07:28:10 +00:00
|
|
|
}
|
2016-12-20 23:05:20 +00:00
|
|
|
.intro-message {
|
|
|
|
padding-bottom: 15%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.intro-message > h1 {
|
|
|
|
font-size: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.intro-social-buttons > li {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2017-05-29 19:54:18 +00:00
|
|
|
.intro-pricing .intro-message .section-heading {
|
|
|
|
font-size: 35px;
|
|
|
|
width: 80%;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
.intro-pricing .intro-message {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2016-12-20 23:05:20 +00:00
|
|
|
|
|
|
|
ul.intro-social-buttons > li:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.intro-divider {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
.navbar-transparent {
|
|
|
|
background: #fff;
|
|
|
|
border: none;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
.navbar-transparent #logoBlack{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.navbar-transparent #logoWhite{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.navbar-transparent .navbar-nav>li>a {
|
2017-06-30 09:14:01 +00:00
|
|
|
font-size: 14px;
|
2017-05-18 05:13:00 +00:00
|
|
|
color: #777;
|
|
|
|
}
|
2017-05-27 17:49:42 +00:00
|
|
|
.nav-language:hover{
|
2017-07-13 09:59:05 +00:00
|
|
|
height: 80px;
|
2017-05-27 17:49:42 +00:00
|
|
|
}
|
|
|
|
.navbar-transparent .nav-language .select-language {
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
.navbar-transparent .nav-language .drop-language a {
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
.navbar-transparent .nav-language .drop-language {
|
|
|
|
background: #fff;
|
|
|
|
/* border: 1px solid #fff; */
|
|
|
|
z-index: 100000;
|
|
|
|
left: 9px;
|
|
|
|
border: 1px solid rgba(119, 119, 119, 0.4);
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2017-06-01 20:40:19 +00:00
|
|
|
|
|
|
|
.navbar-default .nav-language .drop-language {
|
|
|
|
background: #fff;
|
|
|
|
/* border: 1px solid #fff; */
|
|
|
|
z-index: 100000;
|
|
|
|
left: 9px;
|
|
|
|
border: 1px solid rgba(119, 119, 119, 0.4);
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.navbar-default .nav-language .select-language {
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
.navbar-default .nav-language .drop-language a {
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
.navbar-transparent .navbar-nav>li>a:focus, .navbar-transparent .navbar-nav>li>a:hover {
|
|
|
|
color: #333;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
|
|
|
|
color: #333;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
.split-section {
|
|
|
|
padding: 10px 0;
|
|
|
|
}
|
2017-06-04 02:19:13 +00:00
|
|
|
.split-section .icon-section {
|
|
|
|
min-height: 160px;
|
|
|
|
}
|
2017-06-04 02:57:21 +00:00
|
|
|
.split-section.what .icon-section{
|
|
|
|
min-height: 160px;
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
.split-section .icon-section i{
|
|
|
|
font-size: 120px;
|
|
|
|
}
|
|
|
|
.split-section .split-text .split-title h2{
|
|
|
|
font-size: 35px;
|
|
|
|
line-height: 35px;
|
|
|
|
}
|
|
|
|
.pricing-section .text .section-heading{
|
|
|
|
font-size: 35px;
|
|
|
|
line-height: 35px;
|
|
|
|
}
|
|
|
|
.pricing-section .text .section-heading::before {
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
|
|
|
.request-section .title h2 {
|
|
|
|
font-size: 35px;
|
|
|
|
line-height: 35px;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 55px;
|
|
|
|
}
|
|
|
|
.request-section .title h2::before{
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
|
|
|
.contact-section .title {
|
|
|
|
width: 300px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
.contact-section .title h2{
|
|
|
|
font-size: 35px;
|
|
|
|
line-height: 40px;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 35px;
|
|
|
|
}
|
|
|
|
.contact-section .title h2::before{
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
2017-06-04 02:19:13 +00:00
|
|
|
.contact-section .card .social a {
|
|
|
|
color: #29427A;
|
|
|
|
font-size: 30px;
|
|
|
|
}
|
2017-05-29 19:54:18 +00:00
|
|
|
|
2017-06-06 21:35:21 +00:00
|
|
|
.intro-pricing .intro-message .section-heading {
|
|
|
|
font-size: 30px;
|
|
|
|
}
|
|
|
|
|
2017-05-29 19:54:18 +00:00
|
|
|
.price-calc-section{
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 60px 10px !important;
|
|
|
|
}
|
|
|
|
.price-calc-section .card {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
.price-calc-section .text {
|
|
|
|
width: 80%;
|
|
|
|
text-align: center;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
.price-calc-section .text .section-heading {
|
2017-06-09 20:37:14 +00:00
|
|
|
font-size: 35px;
|
2017-05-29 19:54:18 +00:00
|
|
|
line-height: 35px;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.price-calc-section .text .section-heading::before {
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
|
|
|
.price-calc-section .text .description {
|
|
|
|
font-size: 18px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-06-01 20:40:19 +00:00
|
|
|
|
2017-07-01 12:28:42 +00:00
|
|
|
.price-calc-section .card .description .select-number{
|
2017-06-04 02:19:13 +00:00
|
|
|
font-size: 17px;
|
|
|
|
text-align: center;
|
2017-07-13 12:06:18 +00:00
|
|
|
width: 65px;
|
2017-07-13 11:53:43 +00:00
|
|
|
margin-right: 10px;
|
2017-06-04 02:19:13 +00:00
|
|
|
}
|
|
|
|
|
2017-05-18 05:13:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media(max-width:540px) {
|
2017-06-28 09:45:19 +00:00
|
|
|
.logo-wrap {
|
|
|
|
padding: 30px;
|
|
|
|
}
|
|
|
|
.percent-text {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
.pricing-section .card {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
.contact-section .card {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
.form-beta {
|
|
|
|
width: 90%;
|
|
|
|
padding: 25px 10px;
|
|
|
|
}
|
|
|
|
.intro-message > h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
2017-06-06 21:35:21 +00:00
|
|
|
.price-calc-section .text .section-heading {
|
2017-05-29 19:54:18 +00:00
|
|
|
font-size: 24px;
|
|
|
|
line-height: 25px;
|
|
|
|
}
|
|
|
|
.price-calc-section .card .description span {
|
2017-06-04 02:19:13 +00:00
|
|
|
font-size: 15px;
|
|
|
|
margin-left: 0px;
|
2017-05-29 19:54:18 +00:00
|
|
|
}
|
2017-06-30 09:14:01 +00:00
|
|
|
.pull-left.space-middle {
|
2017-06-30 17:51:37 +00:00
|
|
|
width: 67%;
|
|
|
|
padding: 20px 0px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.pull-left.ssdimg {
|
|
|
|
width: 30%;
|
2017-06-30 09:14:01 +00:00
|
|
|
}
|
2017-05-18 05:13:00 +00:00
|
|
|
|
2016-12-20 23:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.network-name {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-section-a {
|
|
|
|
padding: 50px 0;
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-section-b {
|
|
|
|
padding: 50px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-heading {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-heading-spacer {
|
|
|
|
float: left;
|
|
|
|
width: 200px;
|
|
|
|
border-top: 3px solid #e7e7e7;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-01-06 15:24:34 +00:00
|
|
|
.btn-buynow {
|
|
|
|
background-color: #607D8B;
|
|
|
|
border-color: #607D8B;
|
|
|
|
}
|
|
|
|
|
2016-12-20 23:05:20 +00:00
|
|
|
@media(max-width:1199px) {
|
|
|
|
ul.banner-social-buttons {
|
|
|
|
float: left;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
}
|
2017-06-28 07:28:10 +00:00
|
|
|
@media(min-width:1200px) {
|
|
|
|
.container-small{
|
|
|
|
width:980px;
|
|
|
|
}
|
|
|
|
}
|
2016-12-20 23:05:20 +00:00
|
|
|
|
|
|
|
footer {
|
|
|
|
padding: 50px 0;
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.copyright {
|
|
|
|
margin: 15px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
a#forgotpassword {
|
2017-05-18 05:13:00 +00:00
|
|
|
color: #ffffff;
|
2017-07-13 09:59:05 +00:00
|
|
|
|
2016-12-20 23:05:20 +00:00
|
|
|
}
|
|
|
|
|
2017-01-24 03:34:22 +00:00
|
|
|
|
|
|
|
.topnav a:focus {
|
2017-07-13 09:59:05 +00:00
|
|
|
outline: none;
|
2017-01-24 03:34:22 +00:00
|
|
|
outline-offset: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topnav .btn:focus {
|
2017-07-13 09:59:05 +00:00
|
|
|
outline: none !important;
|
2017-01-24 03:34:22 +00:00
|
|
|
outline-offset: 0;
|
|
|
|
}
|
|
|
|
|
2017-01-05 01:31:53 +00:00
|
|
|
.selectpicker {
|
|
|
|
margin-top: 8px !important;
|
|
|
|
}
|
|
|
|
|
2016-12-20 23:05:20 +00:00
|
|
|
.content-404 h1 {
|
|
|
|
margin: 0 0 15px;
|
|
|
|
font-size: 200px;
|
|
|
|
line-height: 1;
|
|
|
|
font-weight: 700;
|
|
|
|
color: #6db97c;
|
2017-01-06 15:24:34 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-buynow {
|
|
|
|
background-color: #607D8B;
|
|
|
|
border-color: #607D8B;
|
2017-03-31 00:51:15 +00:00
|
|
|
}
|
|
|
|
.form-300{
|
|
|
|
width: 300px;
|
2017-05-22 16:03:33 +00:00
|
|
|
}
|
2017-06-06 21:35:21 +00:00
|
|
|
|
|
|
|
.error-message-box{
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|