/*
* ----------------------------------------------------------------------------------------
Author       : Onepageboss
Template Name: Moon Responsive app landing template
Version      : 1.0                                          
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.PRELOADER & BOUNCE CCS STYLE
* 03.HOMEPAGE CSS STYLE
* 04.VIDEO BACKGROUND CSS STYLE
* 05.FEATURE CSS STYLE
* 06.EVER SEEN CSS STYLE
* 07.APP LIST CSS
* 08.TOTAL DOWNLOAD CSS STYLE
* 09.TEAM CSS STYLE
* 10.USER CSS STYLE
* 11.PRICING CSS STYLE
* 12.DOWNLOAD CSS STYLE
* 13.CONTACT CSS STYLE
* 14.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/

body {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    height: 100%;
    font-family: 'Lato', sans-serif;
    background: #fff;
    color: rgba(0, 0, 0, .6);
}

html,
body {
    height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {}

a {
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

img {
    max-width: 100%;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

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

p {
    line-height: 28px;
}

ul,
li {
    margin: 0;
    padding: 0;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

.no-padding {
    padding: 0
}

.section-padding {
    padding-top: 70px;
    padding-bottom: 78px;
}

.section-title {
    margin-bottom: 30px;
    text-align: center;
}

.section-title h2 {
    font-size: 40px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 400;
    font-style: italic;
}

a.read-more {
    margin-top: 20px;
    display: inline-block;
    color: #333;
    padding: 10px 25px;
    border: 1px solid #F7F7F7;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 30px;
    background: #F7F7F7;
}

a.read-more:hover {
    background: #202020;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    border: 1px solid #202020;
}

.scrollup {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    line-height: 40px;
    cursor: pointer;
    display: none;
    z-index: 2;
    background: #000;
}

.scrollup:hover {
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}


/*
* ----------------------------------------------------------------------------------------
* 02.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/

.preloader-area {
    position: fixed;
    background: #fff;
    z-index: 11000;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.spinner {
    margin: auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -20px;
    top: 50%;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #000;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot1 {
    background-color: #ccc;
}

.dot2 {
    top: auto;
    background-color: #000;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/*
* ----------------------------------------------------------------------------------------
* 03.HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-area {
    height: 100%;
}

.welcome-image-area {
    position: relative;
    height: 100%;
    background: url(../images/bg/bg.jpg);
    background-size: cover;
    z-index: 1;
}

.welcome-image-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

#background-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.header-text {
    margin-top:100px;
}

.header-text h2 {
    color: #fff;
    font-size: 50px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 300;
}

.header-text p {
    color: #fafafa;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
    margin-top: 20px;
}

.header-image {
    margin-top: 50px;
}

.header-image img {
    width: 350px;
}

.video-area-text h2 {
    color: #fafafa;
    font-size: 16px;
    display: inline-block;
    margin-left: 12px;
}

.video-area-text i {
    font-size: 20px;
    border: 1px solid #fafafa;
    color: #fafafa;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    padding-left: 6px;
}

.mfp-iframe-holder {
    padding-top: 80px;
}

.header-top-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.logo {
    padding-top: 40px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.logo a {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}

.mainmenu .navbar-nav li a {
    color: #fff;
	font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 40px 15px;
    -webkit-transition: .3s;
    transition: .3s;
}

.mainmenu .navbar-nav li a:hover {
    background: none;
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nav li a:focus,
.nav li a:hover {
    background: none;
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    margin: 0;
}

.menu-bg {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: #f7f7f7;
}

.menu-bg .logo {
    padding: 10px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.menu-bg .logo a {
    color: #202020;
}

.menu-bg .mainmenu .navbar-nav li a {
    color: #202020;
    padding: 30px 15px;
    -webkit-transition: .3s;
    transition: .3s;
}

.menu-bg .mainmenu .navbar-nav li a:hover {
    color: #000;
}

.imagenestop .imagen {
    width:240px;
	padding:20px;
	}
	
.imagenestop h3 {
	padding: 0 20px;}


/*
* ----------------------------------------------------------------------------------------
* 04. VIDEO BACKGROUND CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-video-area {
    position: relative;
    height: 100%;
    background-size: cover;
    z-index: 1;
    background-position: center center;
}

.welcome-video-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}


/*
* ----------------------------------------------------------------------------------------
* 05.FEATURE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {}

.single-service {
    margin-top: 30px;
    padding: 30px;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
}

.service-active {
    box-shadow: 0px 0px 70px rgba(29, 24, 24, 0.09);
    -webkit-transition: .3s;
    transition: .3s;
}

.single-service h4 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #333;
}

.service-icon i {
    font-size: 40px;
    color: #000;
}

.single-service p {
    margin-bottom: 0;
    color: #333;
}


/*
* ----------------------------------------------------------------------------------------
* 06.EVER SEEN CSS
* ----------------------------------------------------------------------------------------
*/

.ever-seen-area {}

.ever-text {
    margin-top: 90px;
}

.ever-text h2 {
    text-transform: capitalize;
    font-size: 40px;
}

.ever-text h3 {
    color: #202020;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
    margin-top: 20px;
}

a.download-button {
    margin: 0px 5px;
    display: inline-block;
    color: #000;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid #F7F7F7;
    border-radius: 30px;
    margin-top: 20px;
    background: #F7F7F7;
}

a.download-button i {
    font-size: 20px;
    margin-right: 5px;
    color: #000;
}

a.download-button:hover.download-button i {
    margin-left: 5px;
    -webkit-transition: .3s;
    transition: .3s;
}


/*
* ----------------------------------------------------------------------------------------
* 07.APP LIST CSS
* ----------------------------------------------------------------------------------------
*/

.app-list {
    margin-top: 30px;
}

.single-app {
    position: relative;
}

.single-app:hover .item-overlay {
    opacity: .6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    -webkit-transition: .3s;
    transition: .3s;
}

.item-overlay {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    height: 100%;
    width: 100%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: .3s;
    transition: .3s;
}


/*
* ----------------------------------------------------------------------------------------
* 08.COMPLETE PROJECT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.complete-project-area {}

.single-project-complete {
    background: #fff;
    text-align: center;
    padding: 30px;
}

.single-project-complete i {
    font-size: 30px;
    color: #000;
}

.single-project-complete h2 {
    font-size: 21px;
    margin: 15px 0px;
    font-weight: 700;
}

.single-project-complete h6 {
    font-size: 22px;
    text-transform: capitalize;
    color: #333;
    margin-bottom: 0;
}

.complete-active {
    box-shadow: 0px 0px 70px rgba(29, 24, 24, 0.09);
    -webkit-transition: .3s;
    transition: .3s;
}


/*
* ----------------------------------------------------------------------------------------
* 09.TEAM CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.team-area {}

.single-team {
    margin-top: 30px;
}

.single-team img {
    width: 100%;
}

.single-team h4 {
    font-size: 22px;
    text-transform: capitalize;
    color: #333;
    margin-bottom: 0;
}

.single-team h6 {
    font-size: 14px;
    text-transform: capitalize;
    color: #333;
    font-style: italic;
}

.team-description {
    background: #F7F7F7;
    text-align: center;
    padding: 15px 0px;
}


/*
* ----------------------------------------------------------------------------------------
* 10.TESTIMONIAL CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {}

.testimonial-list {
    margin-top: 30px;
}

.single-testi-des {
    background: #F7F7F7;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

.single-testi-des:before {
    position: absolute;
    bottom: -12px;
    left: 0;
    height: 30px;
    width: 30px;
    content: "";
    background: #F7F7F7;
    margin-left: 12px;
    margin-top: 0px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.single-testimonial img {
    width: 60px;
    border-radius: 50%;
}

.single-testimonial {
    margin-right: 30px;
}

.single-testimonial h6 {
    margin-top: 0px;
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 3px;
}

.single-testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.owl-theme .owl-controls {
    margin-top: 30px;
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 3px;
    height: 20px;
    margin: 2px 5px;
    filter: Alpha(Opacity=50);
    opacity: .5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    border: 1px solid #333;
    background: #000;
}


/*
* ----------------------------------------------------------------------------------------
* 11.PRICING CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.pricing-area {}

.pricing-box {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    margin-top: 30px;
}

.pricing-header .plan-title h4 {
    font-size: 22px;
    margin-top: 20px;
    text-transform: capitalize;
    color: #333;
}

.pricing-header .plan-price {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    color: #000;
}

.plan-features {
    margin-top: 40px;
}

.plan-features li {
    margin: 8px 0;
    padding-bottom: 15px;
}

.price-active {
    box-shadow: 0px 0px 70px rgba(29, 24, 24, 0.09);
    -webkit-transition: .3s;
    transition: .3s;
}


/*
* ----------------------------------------------------------------------------------------
* 12.DOWNLOAD CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.download-area {
    background: url(../images/bg/download.jpg);
    background-size: cover;
    padding: 80px 0px;
    position: relative;
    z-index: 1;
}

.download-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.download-text h2 {

    color: #fff;
    font-size: 40px;

    margin-bottom: 30px;
    font-weight: 300;
}

.download-text img {
    margin: 0px 10px;
}


/*
* ----------------------------------------------------------------------------------------
* 13.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-form {
    margin-top: 20px;
}

.form-control {
    display: block;
    border: 0px;
    width: 100%;
    height: 45px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #000;
    background-color: transparent;
    background-image: none;
    border-radius: 0px;
    box-shadow: none;
    margin-bottom: 15px;
    padding: 14px 7px 14px 15px;
    border: 1px solid #f2f2f2;
    background: #f2f2f2;
    border-radius: 0px;
    -webkit-transition: .3s;
    transition: .3s
}

.form-control:focus {
    border-color: #000;
    outline: 0;
    box-shadow: none;
    background: none;
    -webkit-transition: .3s;
    transition: .3s
}

.contact-form input[type='submit'] {
    display: inline-block;
    color: #333;
    background: #F2F2F2;
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 12px;
    border: none;
    border-radius: 0px;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 3px;
    border-radius: 30px;
}

.contact-form2 input[type='submit'] {
    display: inline-block;
    color: #FFFFFF;
    background: #1d66af;
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 12px;
    border: none;
    border-radius: 0px;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 3px;
    border-radius: 30px;
}

.contact-form2 input[type='submit']:hover {
    background: #057ef7;
    -webkit-transition: all 0.4s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #fff;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
    outline: none;
}

.success {
  background: #ff0099;
  background-image: -webkit-linear-gradient(top, #ff0099, #4a012d);
  background-image: -moz-linear-gradient(top, #ff0099, #4a012d);
  background-image: -ms-linear-gradient(top, #ff0099, #4a012d);
  background-image: -o-linear-gradient(top, #ff0099, #4a012d);
  background-image: linear-gradient(to bottom, #ff0099, #4a012d);
 
}


/*
* ----------------------------------------------------------------------------------------
* 14.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.footer-area {
    background: #202020;
    padding: 30px 0px;
}

.footer-text h6 {
    text-transform: capitalize;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

.footer-social-link {
    text-align: right;
}

.footer-social-link ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-social-link ul li {
    display: inline-block;
    margin: 0px 10px;
}

.footer-social-link ul li a {
    display: block;
    color: #fafafa;
}

.footer-social-link ul li a:hover {
    color: #fff;
}


/*
* ----------------------------------------------------------------------------------------
* PREVIEW CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.preview-body {
    background: #fafafa;
}

.preview-single-image img {
    width: 100%;
}

.preview-single-image {
    -webkit-transition: 1s;
    transition: 1s;
    box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.preview-single-image:hover {
    -webkit-transition: 1s;
    transition: 1s;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.preview-single-image h2 {
    font-size: 20px;
    text-align: center;
    color: #000;
    background: #fff;
    margin: 0;
    padding: 30px 20px;
}

.preview-header-top-area {
    padding: 50px 0px;
}

.preview-header-top-area h2 {
    font-size: 60px;
    color: #000;
    text-transform: uppercase;
    font-weight: 900;
}

.preview-header-top-area p {
    color: #333;
    font-size: 30px;
    font-weight: 300;
}

.main h2 {
    color: #000;
}

.main {
    margin-bottom: 180px;
}