/*
Author       : Abubakar Siddique
Template Name: NecTech - Responsive App Landing Page
Version      : 1.0
*/

/****** Table Of Content ***************
=================================================
#1. Typography
#2. Pre Loader
#3. Header Design
#4. Banner Design
#5. Features
#6. Fun Facts
#7. Screenshot
#8. Testimonials
#9. Pricing
#10. Video
#11. Download
#12. Subscribe
#13. Contact Us
#14. Modal
#15. Footer
#16. Responsive Design
=================================================
*/

/************* Typography ******************/
*{
	padding:0;
	margin:0;
}
img{
	border:none;
	outline:none;
	max-width:100%;
}
a,a:active,a:focus,a:hover{
	outline:none;
	text-decoration:none;
}
a{
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
	color:#ff3366;
}
input:focus,textarea:focus,select:focus{
	outline:none!important;
	box-shadow:none;
}
ul{
	margin:0;
	list-style-type:none;
}
h1{
	font-size:36px;
	color:#333;
	font-weight:700;
	line-height:normal;
	margin:0 0 20px;
	text-transform:uppercase;
}
h2{
	font-size:28px;
	color:#333;
	font-weight:600;
	line-height:normal;
	margin:0 0 20px;
	position:relative;
}
h3{
	font-size:20px;
	color:#333;
	font-weight:600;
	line-height:normal;
	margin:0 0 10px;
	position:relative;
	text-transform:capitalize;
}
h4{
	font-size:18px;
	color:#fff;
	font-weight:400;
	line-height:normal;
	position:relative;
	text-transform:capitalize;
	margin:0;
}
h1 span{
	color:#ff3366;
}
p{
	font-size:16px;
	margin:0 0 20px;
	color:#333;
	font-weight:300;
	line-height:24px;
}
.btn{
	font-size:16px;
	text-transform:uppercase;
	font-weight:500;
	width:auto;
	line-height:38px;
	padding:0 20px;
	display:inline-block;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
	position:relative;
	min-width:110px;
}
.btn::before{
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: rgba(255,255,255,0.2);
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.btn.btn-primary{
	background:#ff3366;
	color:#fff;
	border:none;
}
.btn.btn-primary:hover:before, 
.btn.btn-primary:focus:before{
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.btn.btn-default{
	border:1px solid #ff3366;
	background:none;
	color:#ff3366;
	opacity:1;
}
.btn.btn-default:hover{
	background:#ff3366;
	border-color:#ff3366;
	color:#fff;
}
body{
	font-family: 'Inter', sans-serif;
	font-size:16px;
	color:#333;
	background:#fff;
	overflow-x: hidden;
}
.section-padding{
	width:100%;
	float:left;
	height:auto;
	padding:70px 0;
}

/*================================ Pre Loader ====================================*/
.preloader{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#ffffff;
	z-index:13000;
	height:100%;
}
.preloader_image{
	width:130px;
	height:130px;
	position:absolute;
	left:50%;
	top:50%;
	background:url(img/loader.gif) no-repeat center center;
	-webkit-transform:translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}

/*================================ Header Design ================================*/
.navbar-default{
	background:none;
	margin:0;
	border:none;
}
.navbar {
	padding: 20px 0;
	-webkit-transition:background .4s ease-in-out,padding .4s ease-in-out;
	-moz-transition:background .4s ease-in-out,padding .4s ease-in-out;
	-ms-transition:background .4s ease-in-out,padding .4s ease-in-out;
	-o-transition:background .4s ease-in-out,padding .4s ease-in-out;
	transition:background .4s ease-in-out,padding .4s ease-in-out;
}
.top-nav-collapse{
	background:rgba(0,0,0,0.9);
	-webkit-box-shadow:0 -7px 12px rgba(0, 0, 0, 0.8);
	-ms-box-shadow:0 -7px 12px rgba(0, 0, 0, 0.8);
	-moz-box-shadow:0 -7px 12px rgba(0, 0, 0, 0.8);
	-o-box-shadow:0 -7px 12px rgba(0, 0, 0, 0.8);
	box-shadow:0 -7px 12px rgba(0, 0, 0, 0.8);
	padding:10px 0;
}
.logo {
    display: block;
    padding: 10px 0;
    float: left;
    height: auto;
}
.navbar-default.top-nav-collapse .navbar-nav > li > a, 
.navbar-default.top-nav-collapse .navbar-nav > li > a:focus{
	color:#fff;
}
.navbar > .container .navbar-brand, 
.navbar > .container-fluid .navbar-brand{
	margin:0;
	height:auto;
	padding: 0;
	color:#ff3366;
}
.navbar-default .navbar-nav > li{
	margin-left:20px;
}
.navbar-default .navbar-nav > li:first-child{
	margin:0;
}
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:focus{
	font-size:14px;
	color:#fff;
	text-transform:uppercase;
	padding:14px 5px;
}
.navbar-default .navbar-nav > .active > a, 
.navbar-default .navbar-nav > .active > a:focus, 
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default.top-nav-collapse .navbar-nav > .active > a, 
.navbar-default.top-nav-collapse .navbar-nav > .active > a:focus, 
.navbar-default.top-nav-collapse .navbar-nav > .active > a:hover,
.navbar-default.top-nav-collapse .navbar-nav > li > a:hover{
	color:#ff3366;
	background:none;
}
.navbar-right{
	margin:0;
}
.offcanvas-stop-scrolling{
	overflow:visible;
	overflow-x:hidden;
}
#navbar{
	height:auto!important;
}

/*================================ Banner Design ================================*/
#banner{
	width:100%;
	float:left;
	min-height:800px;
	height:auto;
	position:relative;
	background-repeat:no-repeat;
	background-position: center center;
	position:relative;
	background-attachment:fixed;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-ms-background-size:cover;
	background-size:cover;
	padding:159px 0 100px;
}
#banner::before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background:rgba(0,0,0,0.85);
}
.parallax-bg{
	background-repeat:no-repeat;
	background-position: center center;
	position:relative;
	background-attachment:fixed;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-ms-background-size:cover;
	background-size:cover;
}
.parallax-bg::before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background:rgba(0,0,0,0.55);
}
.banner-content{
	width:100%;
	float:left;
	height:auto;
	padding-top:70px;
}
.banner-content h1{
	font-weight:300;
	font-size:36px;
	color:#fff;
	line-height:45px;
	margin:0 0 30px;
}
.banner-content p{
	color:rgba(255,255,255,0.9);
	margin:0 0 40px;
}
.banner-content .btn.btn-default{
	border-color:rgba(255,255,255,0.9);
	color:rgba(255,255,255,0.9);
	margin-right:10px;
}
.banner-content .btn.btn-default:hover{
	background:#fff;
	border-color:#fff;
	color:#ff3366;
}
#banner .banner-content .btn.btn-default:last-child{
	maright:0;
}

/*================================= Features ===============================*/
.section-title{
	width:100%;
	float:left;
	height:auto;
	margin:0 0 70px;
}
.section-title h1{
	position:relative;
	padding-bottom:10px;
}
.section-title h1::before{
	width:65px;
	height:2px;
	content:'';
	border-bottom:3px dashed #ff3366;
	position:absolute;
	left:50%;
	bottom:0;
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
}
.section-title p{
	margin:0;
}
.features-block{
	width:100%;
	float:left;
	height:auto;
	padding-top:60px;
}
.features-block .features-list:last-child{
	margin:0;
}
.features-list{
	width:100%;
	display:table;
	height:auto;
	margin:0 0 30px;
}
.features-list .icon {
    display: table-cell;
    vertical-align: top;
    text-align: left;
	padding-right:20px;
}
.features-list .icon .fa{
	font-size: 20px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color:#333;
	background:rgba(0,0,0,0.1);
	-webkit-transition:all 0.4s ease-in-out;
	-moz-transition:all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	transition:all 0.4s ease-in-out;
}
.feature-info {
    float: left;
	height:auto;
}
.feature-info h3{
	margin:0 0 5px;
}
.features-list:hover .icon .fa{
	color:#fff;
	background:#ff3366
}
.gap{
	width:100%;
	float:left;
	height:70px;
}

/*================================= Fun Facts ==============================*/
.fun-facts-info{
	width:100%;
	text-align:center;
	padding:50px 10px;
}
.fun-facts-info .fa{
	font-size:30px;
	color:rgba(255,255,255,0.8);
	width:80px;
	line-height:78px;
	border:1px solid rgba(255,255,255,0.8);
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	margin:0px;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
	margin:0 0 10px;
}
.fun-facts-info:hover .fa{
	background:#fff;
	border-color:#fff;
	color:#ff3366;
}
.counter{
	width:100%;
	float:left;
	height:auto;
	font-size:36px;
	font-weight:700;
	color:#fff;
	margin:0 0 5px;
}

/*================================= Screenshot ============================*/
[data-carousel-3d]{
	border:none;
	background:none;
}
[data-carousel-3d]::before {
    padding-top: 65%;
}
[data-carousel-3d] [data-prev-button],
[data-carousel-3d] [data-next-button]{
	height:40px;
	top:50%;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}
[data-carousel-3d] [data-prev-button]::before {
    color: #ff3366;
    font-family: FontAwesome;
	content:"\f104";
    height: 40px;
    line-height: 38px;
    position: absolute;
    right: auto;
    top: 0px;
    width: 40px;
    font-size: 35px;
    background: #fff;
    border-radius: 50%;
    padding: 0px 11px;
    transition: all 0.4s ease 0s;
	cursor:pointer;
	text-align:left;
	border:1px solid #ff3366;
	opacity:0;
	visibility:hidden;
	left:-40px;
}
[data-carousel-3d] [data-next-button]::before {
    color: #ff3366;
    font-family: FontAwesome;
	content:"\f105";
    height: 40px;
    line-height: 38px;
    position: absolute;
    top: 0px;
    width: 40px;
	left:auto;
    font-size: 35px;
    background: #fff;
    border-radius: 50%;
    padding: 0px 11px;
    transition: all 0.4s ease 0s;
	cursor:pointer;
	text-align:right;
	border:1px solid #ff3366;
	opacity:0;
	visibility:hidden;
	right:-40px;
}
[data-carousel-3d] [data-next-button]:hover::before,
[data-carousel-3d] [data-prev-button]:hover::before{
	color: #fff;
	background:#ff3366;
}
.screenshot-carousel:hover [data-next-button]::before{
	opacity:1;
	visibility:visible;
	right:0;
}
.screenshot-carousel:hover [data-prev-button]::before{
	opacity:1;
	visibility:visible;
	left:0;
}

/*================================= Testimonials ===========================*/
#testimonial-carousel {
    padding: 40px 0;
	text-align:center;
}
#testimonial-carousel .fa.fa-quote-left{
	font-size:40px;
	color:rgba(255,255,255,0.98);
	margin:0 0 30px;
}
#testimonial-carousel .author-comments{
	display:block;
	margin:0 0 15px;
}
#testimonial-carousel .author-comments p{
	color:rgba(255,255,255,0.98);
}
#testimonial-carousel .author-rating{
	display:block;
	margin:0 0 40px;
	font-size:16px;
	color:#fec42d;
}
#testimonial-carousel .author-img{
	display:block;
	margin:0 0 10px;
}
#testimonial-carousel .author-img img{
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
}
#testimonial-carousel .author-name {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    opacity: 0.98;
}
#testimonial-carousel .designation{
	display: block;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    opacity: 0.98;
	font-style:italic;
}
.carousel-indicators{
	bottom:0;
	margin:40px 0 0;
	position:relative;
	left:0;
	width:100%;
	text-align:center;
}
.carousel-indicators li{
	border-color:#ff3366;
}
.carousel-indicators .active{
	background:#ff3366;
}

/*================================= Pricing ===============================*/
.pricing-table{
	width:100%;
	float:left;
	height:auto;
}
.pricing-header{
	width:100%;
	float:left;
	height:auto;
	padding:30px 0;
	background:#3d424f;
	border-bottom:8px solid #4d5361;
	position:relative;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
.pricing-table:hover .pricing-header{
	border-color:#ff3366;
}
.pricing-header::before{
	width:0;
	height:0;
	border-left:12px solid transparent;
	border-right:12px solid transparent;
	border-top:12px solid #4d5361;
	position:absolute;
	left:50%;
	bottom:-20px;
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
	content:'';
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
.pricing-table:hover .pricing-header::before{
	border-top-color:#ff3366;
}
.pricing-header h1{
	font-size:36px;
	font-weight:700;
	color:#fff;
	margin:0;
	line-height:35px;
	text-align:center;
	font-style:italic;
}
.pricing-body{
	width:100%;
	float:left;
	height:auto;
	border:1px solid #ccc;
	border-top:none;
	text-align:center;
}
.pricing-body .price{
	text-align:center;
	font-size:36px;
	color:#333;
	font-weight:700;
	padding:32px 0 20px;
	background:#fcfcfb;
}
.pricing-body .price span{
	border:1px solid #ccc;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	width: 91px;
	display: inline-block;
	padding: 19px 0;
	background:#fff;
	height:91px;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
.pricing-body .price sup{
	font-size:12px;
	font-weight:400;
	top:-18px;
}
.pricing-body .price sub{
	font-size:12px;
	font-weight:400;
}
.pricing-list{
	width:100%;
	float:left;
}
.pricing-list li{
	padding:10px;
	border-bottom:1px solid rgba(0,0,0,0.01);
}
.pricing-body .sign-up {
    width: 100%;
    float: left;
    padding: 20px 0;
    background: #fcfcfb;
}
.pricing-table:hover .pricing-body .price{
	color:#fff;
}
.pricing-table:hover .pricing-body .price span{
	border-color:#ff3366;
	background:#ff3366;
}

/*================================= Video ==================================*/
.video-info{
	padding:130px 0;
	float:left;
	width:100%;
	height:auto;
}
.video-info a{
	width:100px;
	display:inline-block;
	background:#fff;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	line-height:100px;
	font-size:36px;
	color:#ff3366;
	text-align:center;
}

/*================================= Download ===============================*/
.download-info{
	width:100%;
	float:left;
	height:auto;
	padding-top:90px;
}
.download-link{
	display:block;
	margin:40px 0 0;
}
.download-info a + a{
	margin-left:10px;
}

/*================================= Subscribe =================================*/
.subscribe-content {
    width: 100%;
    float: left;
    height: auto;
    padding: 40px 0;
}
#subscribe h1,#subscribe p{
	color:#fff;
	opacity:0.95;
}
#subscribe .form-control{
	background:#f5f5f5;
	border:none;
	-moz-border-radius:25px 0 0 25px;
	-webkit-border-radius:25px 0 0 25px;
	border-radius:25px 0 0 25px;
	padding-left:30px;
	height: 55px;
	padding: 5px 15px 5px 20x;
	box-shadow:none;
}
#subscribe .btn.btn-default{
	background:#f5f5f5;
	color:#fff;
	line-height:55px;
	border:none;
	border-left:1px solid #ff3366;
	border-radius:0 25px 25px 0;
}
#subscribe .btn.btn-default:hover{
	background:#ff3366;
	color:#fff;
}
.input-group-addon{
	padding:0;
	background:none;
	border:none;
}

/*================================= Contact Us =============================*/
.form-control{
	height:42px;
	box-shadow:none!important;
}
.form-control:focus{
	border-color:#ff3366;
}

/*================================= Modal ==================================*/
iframe {
    width: 100%;
    border: none;
}
.modal-content{
	border:none;
	background:none;
	box-shadow:none;
}
.modal-body{
	padding:0;
}
.modal-header{
	padding:0;
	border:none;
}
.modal-content .close{
	opacity:1;
	margin:0 0 10px;
	text-shadow:none;
	color:#fff;
}

/*================================= Footer =================================*/
.back-top {
    width: auto;
    float: right;
    height: auto;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
}
.back-top a {
    display: inline-block;
    text-align: center;
}
.back-top i {
    background: #ff3366 none repeat scroll 0 0;
    border-radius: 3px;
    color: #fff;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    width: 40px;
}
footer{
	width:100%;
	float:left;
	height:auto;
	padding:40px 0;
	background:#23282f;
}
.footer-logo{
	width:100%;
	float:left;
	height:auto;
	margin:0 0 35px;
}
.copyright{
	width:100%;
	float:left;
	height:auto;
}
.copyright p{
	margin:0;
	font-size:13px;
	line-height:21px;
	color:#fff;
}
.social-media{
	width:100%;
	float:left;
	height:auto;
	margin:0 0 10px;
}
.social-media > li{
	margin:0 6px;
	display:inline-block;
}
.social-media > li .fa {
    display: block;
    line-height: 32px;
	color:#fff;
	font-size:16px;
	border:1px solid rgba(255,255,255,0.5);
	width:34px;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	text-align:center;
	-webkit-transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}
.social-media > li .fa:hover{
	background:#ff3366;
	border-color:#ff3366;
}

/*======================================== Responsive Design =============================*/
@media only screen and (max-width: 479px){
.banner-content .btn,
.download-info a{
	padding:0 15px;
}
.banner-content .btn.btn-default{
	margin:0;
}
.download-info a + a{
	margin-left:5px;
}
#banner{
	min-height:535px;
}

}

@media only screen and (min-width: 480px) and (max-width:639px) {
#banner{
	min-height:535px;
}
}

@media only screen and (max-width: 639px){
.banner-content h1{
	font-size:28px;
	line-height:40px;
}
.banner-content{
	padding:0;
}
#banner{
	height:auto;
	padding:150px 0 100px;
}
h1{
	font-size:28px;
	line-height:32px;
}
.col-xs-4{
	width:100%;
}
.fun-facts-info{
	padding:20px 10px;
}
.video-info{
	padding:50px 0;
}

}

@media only screen and (min-width: 640px) and (max-width:767px) {
#banner{
	min-height:500px;
}
.fun-facts-info{
	padding:20px 10px;
}
.video-info{
	padding:70px 0;
}

}

@media only screen and (max-width: 767px){
#navbar {
    height: 100% !important;
	padding:30px 0 0;
}
.navbar-default .navbar-toggle{
	margin:7px 0;
	border-radius:3px;
	border-color:#ff3366;
}
.navbar-default .navbar-toggle .icon-bar{
	background:#ff3366;
}
.navbar-default .navbar-toggle:focus, 
.navbar-default .navbar-toggle:hover{
	background:#ff3366;
}
.navbar-default .navbar-toggle:focus .icon-bar, 
.navbar-default .navbar-toggle:hover .icon-bar{
	background:#fff;
}
.navbar-default .navbar-nav > li{
	margin:0;
}
.navbar-default .navbar-nav > li > a, 
.navbar-default .navbar-nav > li > a:focus{
	padding:10px 15px;
}
.navbar-default .navbar-offcanvas{
	background:#000;
}
.section-padding{
	padding:50px 0;
}
.features-block{
	padding:0;
}
.features-block .features-list:last-child{
	margin-bottom:30px;
}
.gap{
	height:0;
}
#features .single-img.fadeInLeft{
	margin-bottom:30px;
}
#testimonial-carousel{
	padding:0;
}
.section-title{
	margin:0 0 50px;
}
.pricing-table{
	margin:0 0 30px;
}
#pricing .col-xs-12:last-child .pricing-table{
	margin:0;
}
.download-info{
	padding:0 0 30px;
}
.banner-content{
	padding-top:0;
}

}

@media only screen and (min-width: 768px) and (max-width:991px) {
#banner{
	min-height:600px;
}
.banner-content{
	padding-top:0;
}
.features-block{
	padding:0;
}
.feature-info p{
	font-size:14px;
}
.feature-info h3{
	font-size:18px;
}
.features-list{
	margin:0;
}
#testimonial-carousel{
	padding:0;
}
.pricing-header h1{
	font-size:28px;
}
.pricing-header{
	padding:18px 0;
}
.video-info{
	padding:60px 0;
}
.download-info{
	padding:0;
}
.download-info p{
	font-size:14px;
}

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
#banner{
	height:auto;
	min-height:700px;
}
.features-block{
	padding:0;
}
.download-info{
	padding-top:35px;
}

}

@media only screen and (min-width: 1200px){

}