701 lines
13 KiB
CSS
701 lines
13 KiB
CSS
/*
|
|
======================================
|
|
Table of Contents
|
|
======================================
|
|
- Basic Style
|
|
- Links
|
|
- Section Title Style
|
|
- Home Page
|
|
- Preloader
|
|
- Header Section
|
|
- Scroll Navigation Section
|
|
- Hero Section
|
|
- Feature Section
|
|
- Pricing Section
|
|
- Subscribe Section
|
|
======================================
|
|
*/
|
|
/*
|
|
------------------------------------
|
|
- Basic Style
|
|
------------------------------------
|
|
*/
|
|
body {
|
|
background: #fffcf4;
|
|
}
|
|
/* Section Title Style */
|
|
.section-title {
|
|
width: 100%;
|
|
height: auto;
|
|
margin-bottom: 90px;
|
|
}
|
|
.title-left {
|
|
margin-bottom: 40px;
|
|
}
|
|
.section-title h2 {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-weight: 400;
|
|
font-size: 36px;
|
|
color: #696969;
|
|
letter-spacing: 0px;
|
|
margin-bottom: 0px;
|
|
margin-top: 10px;
|
|
}
|
|
.section-title span {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-weight: 700;
|
|
font-size: 24px;
|
|
letter-spacing: 0px;
|
|
color: #7d4ccc;
|
|
}
|
|
.section-title span.small {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
letter-spacing: 0px;
|
|
color: #7d4ccc;
|
|
}
|
|
.section-title p {
|
|
margin-top: 35px;
|
|
color: #212121;
|
|
}
|
|
.section-title-2 {
|
|
width: 100%;
|
|
height: auto;
|
|
text-align: center;
|
|
margin-bottom: 55px;
|
|
}
|
|
.section-title-2 h2 {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-size: 36px;
|
|
font-weight: 400;
|
|
color: #212121;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
/*
|
|
----------------------------------
|
|
- Preloader
|
|
----------------------------------
|
|
*/
|
|
.preloader-area {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0px;
|
|
left: 0px;
|
|
bottom: 0px;
|
|
right: 0px;
|
|
background: rgba(255,255,255,0.95);
|
|
z-index: 1000000;
|
|
}
|
|
.preloader-inner {
|
|
display: table;
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.preloader {
|
|
width: 60px;
|
|
height: 60px;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
margin: auto;
|
|
padding: 0px;
|
|
text-align: center;
|
|
}
|
|
.preloader span {
|
|
position: absolute;
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 100%;
|
|
background: #000000;
|
|
-webkit-animation: preloader 1.6s linear infinite;
|
|
animation: preloader 1.6s linear infinite;
|
|
}
|
|
.preloader span:last-child {
|
|
animation-delay:-0.8s;
|
|
-webkit-animation-delay:-0.8s;
|
|
}
|
|
@keyframes preloader {
|
|
0% {transform: scale(0, 0);opacity:0.5;}
|
|
100% {transform: scale(1, 1);opacity:0;}
|
|
}
|
|
@-webkit-keyframes preloader {
|
|
0% {-webkit-transform: scale(0, 0);opacity:0.5;}
|
|
100% {-webkit-transform: scale(1, 1);opacity:0;}
|
|
}
|
|
|
|
|
|
/*
|
|
----------------------------------
|
|
- Header Section
|
|
----------------------------------
|
|
*/
|
|
.navbar-area {}
|
|
.navbar-default {
|
|
/*background: rgba(167,193,198,0.45);*/
|
|
background: rgba(1,1,1,0.8);
|
|
border-bottom: 1px solid rgba(255,255,255,0.3);
|
|
min-height: 110px;
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
-moz-transition: all 0.3s ease-in-out;
|
|
-ms-transition: all 0.3s ease-in-out;
|
|
-o-transition: all 0.3s ease-in-out;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
.navbar-default .navbar-nav > li > a {
|
|
color: #fff;
|
|
padding: 40px 25px;
|
|
}
|
|
.navbar-default .navbar-nav > li > a:hover,
|
|
.navbar-default .navbar-nav > li > a:active,
|
|
.navbar-default .navbar-nav > li > a:focus {
|
|
color: #7d4ccc;
|
|
text-decoration: none;
|
|
outline: 0;
|
|
}
|
|
|
|
.navbar-default .navbar-nav > .active > a,
|
|
.navbar-default .navbar-nav > .active > a:focus,
|
|
.navbar-default .navbar-nav > .active > a:hover {
|
|
background: none;
|
|
color: #7d4ccc;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.navbar-default .navbar-nav > .active > a:after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 5px;
|
|
background: #7d4ccc;
|
|
top: 0px;
|
|
left: 0px;
|
|
z-index: -1;
|
|
}
|
|
.navbar-right, .navbar-nav > li {
|
|
margin: 0px;
|
|
}
|
|
.navbar-dark {
|
|
background: rgba(1,1,1,0.9);}
|
|
|
|
|
|
/*
|
|
----------------------------------
|
|
- Hero Section
|
|
----------------------------------
|
|
*/
|
|
.hero-area {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #F4F4F5;
|
|
position: relative;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
}
|
|
.tab-carousel-area {
|
|
position: relative;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.tab-carousel-inner {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: -30px;
|
|
width: 100%;
|
|
min-height: 700px;
|
|
background: #FFFCF4;
|
|
z-index: 10;
|
|
padding: 250px 70px 190px 40px;
|
|
overflow: hidden;
|
|
}
|
|
.tab-carousel-box {
|
|
position: relative;
|
|
width: 100%;
|
|
min-height: 310px;
|
|
background: #fff;
|
|
-moz-box-shadow: 1px 10px 72px -15px #ddd;
|
|
-webkit-box-shadow: 1px 10px 72px -15px #ddd;
|
|
-ms-box-shadow: 1px 10px 72px -15px #ddd;
|
|
-o-box-shadow: 1px 10px 72px -15px #ddd;
|
|
box-shadow: 1px 10px 72px -15px #ddd;
|
|
}
|
|
.tab-slide {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: auto;
|
|
top: -90px;
|
|
right: -210px;
|
|
z-index: 10;
|
|
}
|
|
.tab-slide .item {
|
|
width: 100%;
|
|
height: auto;
|
|
text-align: right !important;
|
|
}
|
|
.tab-carousel-caption {
|
|
width: 50%;
|
|
height: 100%;
|
|
padding: 85px 20px 40px 50px;
|
|
position: relative;
|
|
}
|
|
.tab-slide .owl-dot {
|
|
background: #ededed;
|
|
}
|
|
.tab-slide .owl-dot.active {
|
|
background: #662d91;
|
|
}
|
|
.caption-title {
|
|
color: #7d4ccc;
|
|
font-size: 38px;
|
|
margin-bottom: 0px;
|
|
font-weight: 700;
|
|
}
|
|
.caption-subtitle {
|
|
color: #7d4ccc;
|
|
margin-bottom: 20px;
|
|
font-weight: 700;
|
|
}
|
|
.app-icon {
|
|
position: absolute;
|
|
width: 73px;
|
|
height: 73px;
|
|
top: -20px;
|
|
left: 45px;
|
|
z-index: 10;
|
|
}
|
|
.hero-caption {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 740px;
|
|
}
|
|
.hero-caption-inner {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: auto;
|
|
bottom: 50px;
|
|
right: -80px;
|
|
z-index: 11;
|
|
transform: rotateZ(-90deg);
|
|
}
|
|
.hero-caption-inner .lead {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-size: 120px;
|
|
font-weight: 300;
|
|
color: #212121;
|
|
margin-bottom: 0px;
|
|
}
|
|
.hero-caption-inner .sublead {
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-size: 48px;
|
|
font-weight: 700;
|
|
color: #662d91;
|
|
margin-bottom: -20px;
|
|
display: block;
|
|
padding-left: 85px;
|
|
}
|
|
/*
|
|
----------------------------------
|
|
- Feature Section
|
|
----------------------------------
|
|
*/
|
|
.feature-area,
|
|
.single-feature-item {
|
|
width: 100%;
|
|
height: auto;
|
|
cursor: pointer;
|
|
}
|
|
.single-feature-item {
|
|
margin-bottom: 80px;
|
|
}
|
|
.single-feature-item h4 {
|
|
font-size: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.single-feature-item.active h4 {
|
|
color: #7d4ccc;
|
|
}
|
|
.single-feature-item p {
|
|
margin: 0;
|
|
}
|
|
.single-feature-slide {
|
|
width: 100%;
|
|
height: auto;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
.single-feature-slide .tab-img {
|
|
display: none;
|
|
margin: auto;
|
|
}
|
|
.single-feature-slide .tab-img.active {
|
|
display: block;
|
|
}
|
|
/*
|
|
----------------------------------
|
|
- Pricing Section
|
|
----------------------------------
|
|
*/
|
|
.pricing-area {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.pricing-content p {
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-size: 18px;
|
|
font-weight: 300;
|
|
}
|
|
.pricing-content p.fade-text {
|
|
font-weight: 400;
|
|
color: #8c8f94;
|
|
}
|
|
.pricing-content p.fade-text a {
|
|
text-decoration: underline;
|
|
}
|
|
.pill-title {
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
color: #26272d;
|
|
}
|
|
.pricing-pill {
|
|
margin: 10px 0px 80px 0px;
|
|
padding: 5px;
|
|
list-style: none;
|
|
width: auto;
|
|
height: auto;
|
|
display: inline-block;
|
|
border: 1px solid #d5d6d7;
|
|
-webkit-border-radius: 35px;
|
|
-moz-border-radius: 35px;
|
|
-ms-border-radius: 35px;
|
|
-o-border-radius: 35px;
|
|
border-radius: 35px;
|
|
}
|
|
.pricing-pill li {
|
|
display: inline-block;
|
|
margin: 0px;
|
|
padding: 10px 30px;
|
|
cursor: pointer;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
}
|
|
.pricing-pill li.active {
|
|
background: #fff;
|
|
-webkit-border-radius: 35px;
|
|
-moz-border-radius: 35px;
|
|
-ms-border-radius: 35px;
|
|
-o-border-radius: 35px;
|
|
border-radius: 35px;
|
|
color: #26292c;
|
|
-webkit-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
|
-moz-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
|
-ms-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
|
-o-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
|
box-shadow: 0px 0px 20px 0px #e7e7e8;
|
|
}
|
|
.pricing-table,
|
|
.pricing-list {
|
|
margin: 30px 0px 0px 0px;
|
|
padding: 0px;
|
|
}
|
|
.pricing-table li {
|
|
display: inline-block;
|
|
width: 49%;
|
|
background: #ebebed;
|
|
padding: 40px 15px;
|
|
text-align: center;
|
|
}
|
|
.pricing-table li .lead {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-size: 32px;
|
|
font-weight: 400;
|
|
color: #26272d;
|
|
margin-bottom: 30px;
|
|
}
|
|
.pricing-table li .price-tag {
|
|
display: inline-block;
|
|
border: 1px solid #d4d4d5;
|
|
width: auto;
|
|
height: 30px;
|
|
border-radius: 30px;
|
|
text-align: center;
|
|
line-height: 25px;
|
|
padding: 0px 15px;
|
|
margin-bottom: 50px;
|
|
}
|
|
.pricing-table li .sublead {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
color: #8c8f94;
|
|
}
|
|
.pricing-list {
|
|
width: 100%;
|
|
height: auto;
|
|
margin: 45px 0px;
|
|
}
|
|
.pricing-list li {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 5px 10px;
|
|
text-align: center;
|
|
background: transparent;
|
|
}
|
|
.pricing-list li p {
|
|
margin: 0px;
|
|
font-style: 16px;
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
.pricing-list li p:before {
|
|
position: absolute;
|
|
content: "";
|
|
background-image: url('../img/tic.png');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
width: 14px;
|
|
height: 10px;
|
|
top: 10px;
|
|
left: -20px;
|
|
}
|
|
.pricing-table li.active {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.pricing-table li.active:after {
|
|
position: absolute;
|
|
content: "";
|
|
width: 110%;
|
|
height: 110%;
|
|
top: -5%;
|
|
left: -5%;
|
|
background: #fff;
|
|
z-index: -1;
|
|
-webkit-border-radius: 15px;
|
|
-moz-border-radius: 15px;
|
|
-ms-border-radius: 15px;
|
|
-o-border-radius: 15px;
|
|
border-radius: 15px;
|
|
-webkit-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
|
-moz-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
|
-ms-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
|
-o-box-shadow: 0px 0px 20px 0px #e7e7e8;
|
|
box-shadow: 0px 0px 20px 0px #e7e7e8;
|
|
}
|
|
.pricing-table li.active .btn-outline-blue {
|
|
background: #7d4ccc;
|
|
color: #fff;
|
|
font-weight: 400;
|
|
border-color: #7d4ccc;
|
|
}
|
|
.pricing-table li.active .btn-outline-blue:hover {
|
|
background: #7045b6;
|
|
border-color: #7045b6;
|
|
color: #fff !important;
|
|
}
|
|
/*
|
|
----------------------------------
|
|
- Subscribe Section
|
|
----------------------------------
|
|
*/
|
|
.subscribe-area {
|
|
width: 100%;
|
|
height: auto;
|
|
background-image: url('../img/subscribe-bg.jpg');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.subscribe-area:after {
|
|
position: absolute;
|
|
content: "";
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #111;
|
|
opacity: 0.3;
|
|
z-index: -1;
|
|
top: 0px;
|
|
left: 0px;
|
|
}
|
|
.subscribe-area h4 {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
color: #fff;
|
|
margin-bottom: 20px;
|
|
}
|
|
.form-subscribe {
|
|
background: transparent;
|
|
text-align: center;
|
|
border: 0px;
|
|
border-bottom: 1px solid #f9f9f9;
|
|
box-shadow: none !important;
|
|
color: #f9f9f9;
|
|
}
|
|
/*
|
|
----------------------------------
|
|
- Download Section
|
|
----------------------------------
|
|
*/
|
|
.download-area {
|
|
width: 100%;
|
|
height: auto;
|
|
background-image: url('../img/shape.png');
|
|
background-repeat: no-repeat;
|
|
background-position: bottom center;
|
|
background-size: contain;
|
|
}
|
|
.download-app {
|
|
width: 100%;
|
|
height: auto;
|
|
margin-top: 100px;
|
|
}
|
|
|
|
/*
|
|
----------------------------------
|
|
- Footer Section
|
|
----------------------------------
|
|
*/
|
|
.footer-area {
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 80px 0px;
|
|
background-image: url('../img/footer-bg.jpg');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
position: relative;
|
|
z-index: 1;
|
|
color: #fff;
|
|
}
|
|
.footer-area:after {
|
|
position: absolute;
|
|
content: "";
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #111;
|
|
opacity: 0.9;
|
|
z-index: -1;
|
|
top: 0px;
|
|
left: 0px;
|
|
}
|
|
.footer-area h1,
|
|
.footer-area h2,
|
|
.footer-area h3,
|
|
.footer-area h4,
|
|
.footer-area p,
|
|
.footer-area span,
|
|
.footer-area a {
|
|
color: #fff !important;
|
|
}
|
|
.footer-area a:hover {
|
|
color: #7d4ccc !important;
|
|
}
|
|
.footer-logo h2 {
|
|
font-size: 30px;
|
|
}
|
|
.footer-logo h2 span.thin {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-size: 30px;
|
|
font-weight: 400 !important;
|
|
}
|
|
.footer-logo p {
|
|
font-size: 14px;
|
|
}
|
|
.footer-box {
|
|
width: 100%;
|
|
height: auto;
|
|
margin-bottom: 50px;
|
|
}
|
|
.footer-box h2 {
|
|
margin-bottom: 50px;
|
|
}
|
|
.footer-box h4 {
|
|
text-transform: uppercase;
|
|
margin-bottom: 35px;
|
|
}
|
|
.footer-menu {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
.contact-content {
|
|
position: relative;
|
|
}
|
|
.contact-content h3,
|
|
.contact-content span.thin {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-size: 24px;
|
|
font-weight: 300;
|
|
}
|
|
.contact-content p {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 300;
|
|
margin-bottom: 0px;
|
|
}
|
|
.social-icon {
|
|
padding: 0px;
|
|
margin: 25px 0 0 0;
|
|
}
|
|
.social-icon li {
|
|
display: inline-block;
|
|
margin: 0px;
|
|
}
|
|
.social-icon li a {
|
|
padding: 10px;
|
|
display: block;
|
|
width: 40px;
|
|
text-align: center;
|
|
border: 1px solid #fff;
|
|
margin-right: 10px;
|
|
}
|
|
.vr-title-area {
|
|
position: absolute;
|
|
width: auto;
|
|
height: auto;
|
|
top: 92px;
|
|
left: -90px;
|
|
-webkit-transform: rotateZ(-90deg);
|
|
-moz-transform: rotateZ(-90deg);
|
|
-ms-transform: rotateZ(-90deg);
|
|
-o-transform: rotateZ(-90deg);
|
|
transform: rotateZ(-90deg);
|
|
}
|
|
.download-link {
|
|
margin-bottom: 50px;
|
|
}
|
|
.download-link a {
|
|
font-size: 14px;
|
|
}
|
|
/*
|
|
----------------------------------
|
|
- Copyright Section
|
|
----------------------------------
|
|
*/
|
|
.copyright-area {
|
|
width: 100%;
|
|
min-height: 70px;
|
|
padding: 25px 0px;
|
|
text-align: right;
|
|
}
|
|
.copyright-area span {
|
|
color: #696969;
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
----------------------------------
|
|
-
|
|
----------------------------------
|
|
*/
|
|
/* Your css code */
|