/*------------------------------------------------------------------
[Master Stylesheet]

Project:    AppD-Apps Landing Iphone and Mobile app
Version:    1.0
Last change:    24/03/17 [fixed Float bug, vf]
Author Name: Shipon
Primary use:    App Landing Page 
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
[Table of contents]

1.Body / body
2.Header / .header
3.Header Top / header-top
4.Feature / .feature-box
5.Download / .download-area
6.Video / .vider-area
7.Screenshot / .screenshort-arow
8.Testimonial / .testimonial
9.Pricing / .pricing-box
10.Timeline /.timeline-border
11.Contact / .contact
12.Footer / .footer
13.Extra / Extra
14.Helper Class / Helper Class
15.Primary Color / Primary Color
-------------------------------------------------------------------*/

/*
==========================================
    Reset Css
==========================================
*/
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
html ,
body {
    height: 100%;
    width: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
/*
==========================================
    Primary Color
==========================================
*/
.primary-color {
    color: #1476C6 !important;
}
.primary-color-2 {
    color:#2F3235;
}
.primary-color-3 {
    color:#ffffff !important;
}
.primary-bg {
    background-color: #f8f8f8;
}
/*
==========================================
    Helper Class
==========================================
*/
.section-padding {
    padding: 80px 0;
}
.heading-margin-bottom {
    margin-bottom: 50px !important;
}
.d-table {
    display: table;
}
.d-table-cell {
    display: table-cell;
    vertical-align: middle;
}
/*
    Section Header
*/
.section-header h2 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}
.section-header h2 span {
    color: #1476C6;
}
.section-header {
    max-width: 600px;
    margin: 0 auto;
}
.section-header p {
    color: #6B6565;
}
.section-header h2:after {
    position: absolute;
    width: 100px;
    height: 2px;
    content: '';
    background: #1476C6;
    bottom: -12px;
    left: 50%;
    margin-left: -50px;
}
.section-header h2::before {
    position: absolute;
    width: 15px;
    height: 15px;
    content: '';
    background: #1476C6;
    left: 50%;
    margin-left: -7.5px;
    top: 110%;
}
/*
    My Btn
*/
.my-btn a {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    position: relative;
    font-weight: 600;
    z-index: 0;
}
.my-btn a:after {
    position: absolute;
    width: 100%;
    height: 0;
    background: #fff;
    top: 0;
    left: 0;
    content: '';
    z-index: -1;
    transition: .3s;
    transition-timing-function: cubic-bezier(.22,.61,.36,1);
}
.my-btn a::before {
    position: absolute;
    width: 100%;
    height: 0;
    content: '';
    left: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
    transition: .3s;
    transition-timing-function: cubic-bezier(.65,.05,.36,1);
}
.my-btn a:hover:after {
    height: 50%;
}
.my-btn a:hover:before {
    height: 50%;
}
.my-btn a:hover {
    color: #1476C6;
}
/*
==========================================
    Google Fonts
==========================================
*/
/*
    font-family: 'Poppins', sans-serif;
*/@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&subset=devanagari');

/*
==========================================
    Header Css
==========================================
*/
.header {
    background: url('../img/header-bg.jpg');
    height: 100%;
    background-size: cover;
    position: fixed;
    width: 100%;
    position: relative;
    background-attachment: fixed;
    z-index: 9;
    transition: .5s;
}
.header::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #444e51;
    top: 0;
    left: 0;
    opacity: .6;
    z-index: -1;
}
/*
    Header Top
*/
.header-top {
    background: #fff;
    transition: .5s;
}
.main-menu ul li {
    float: left;
}
.main-menu ul li.active a {
    color: #2F3235;
}
.main-menu ul li a {
    margin: 0 18px;
    display: inline-block;
    padding: 28px 0;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    outline: none;
    color: #1476C6;
    transition: .3s;
    font-size: 14.9px
}
.main-menu ul {
    float: right;
}
.logo {
    margin-top: 7px;
}
.main-menu ul li a:hover {
    color: #2F3235;
}
/*
    Header Text
*/
.header-main-text {
    margin-top: 100px;
    color: #fff;
    max-width: 800px;
}
.header-main-text h1 {
    font-size: 55px;
    font-weight: 600;
}
.header-main-text h1 span {
    color: #1476C6;
}
.header-main-text p {
    line-height: 26px;
    margin-top: 25px;
    margin-bottom: 28px;
}

/*
==========================================
    Feature Css
==========================================
*/
.feature-box i {
    font-size: 25px;
    color: #fdf7f7;
}
.feature-box h4 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 8px;
}
.feature-box p {
    color: #fff;
}
.feature-box {
    border: 1px solid transparent;
    padding: 28px 20px;
    background: #2C8CDB;
    color: #fff;
    border-bottom: 5px solid #747373;
    transition: .3s;
    box-sizing: border-box;
    margin-top: 12px;
}
.feature-box:hover {
    background: transparent;
    color: #2C8CDB;
    border-color: #2C8CDB;
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
}
.feature-box:hover i {
    color: #2C8CDB; 
}
.feature-box:hover p {
    color: #2C8CDB;
}
.app-feature.section-padding {
    background: #f8f8f8;
}
/*
    Feature Bottom
*/
.feature-bottom-right h2 {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 28px;
}
.feature-bottom-right p {
    margin-top: 12px;
    line-height: 24px;
    color: #5e5e5e;
}
.feature-bottom-right {
    margin-top: 20px;
}
.feature-bottom-right .my-btn a {
    background: #1476C6;
    margin-top: 26px;
    border: 1px solid transparent;
}
.feature-bottom-right .my-btn a:hover {
    border: 1px solid #1476C6;
}

/*
==========================================
    Download Css
==========================================
*/
.download-area {
    background: url('../img/download-bg.jpg');
    background-size: cover;
    position: fixed;
    width: 100%;
    position: relative;
    z-index: 0;
    background-attachment: fixed;
}
.download-area::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #1476C6;
    top: 0;
    left: 0;
    opacity: .8;
    z-index: -1;
}
.download-area .my-btn a {
    margin: 0 12px;
}
.using-benefits .feature-box {
    margin-top: 25px;
}

/*
==========================================
    Video Css
==========================================
*/
.video-area {
    background: url('../img/video-bg.jpg');
    background-size: cover;
    position: fixed;
    width: 100%;
    position: relative;
    z-index: 0;
    background-attachment: fixed;
}
.video-area::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #1476C6;
    top: 0;
    left: 0;
    opacity: .8;
    z-index: -1;
}
.video-icon a {
    text-decoration: nono;
    color: #fff;
    font-size: 50px;
    border: 3px solid #fff;
    -webkit-shape-outside: 1px solid #fff;
            shape-outside: 1px solid #fff;
    display: inline-block;
    width: 120px;
    height: 120px;
    padding: 32px;
    line-height: 0;
    border-radius: 50%;
    text-align: center;
    transition: .3s;
    padding-left: 41px;
    outline: none;
}
.video-icon a:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    background: #fff;
    color: #1476C6;
}
.video-text h2 {
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 22px;
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/*
==========================================
    Screenshort Css
==========================================
*/
.owl-item.active.center {
    transition: .3s;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.screenshort-arow {
    display: inline-block;
    font-size: 16px;
    margin: 0 25px;
    background: #1476C6;
    color: #fff;
    padding: 8px 15px;
    border: 1px solid transparent;
    margin-top: 40px;
    transition: .3s;
}
.screenshort .owl-prev,.screenshort .owl-next {
    display: inline;
}
.screenshort-arow:hover {
    background: transparent;
    color: #1476C6;
    border-color: #1476C6;
}

/*
==========================================
    TESTIMONIAL Css
==========================================
*/
.testimonial {
    background: url('../img/testimonail-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}
.testimonial:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #1476C6;
    top: 0;
    left: 0;
    opacity: .8;
    z-index: -1;
}
.testimonial .section-header {
    color: #fff;
}
.testimonial .section-header h2:after {
    background: #fff;
}
.testimonial .section-header h2::before {
    background: #fff;
}
.item-img img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: .3s;
}
.item-img {
    border-radius: 50%;
    overflow: hidden;
    width: 150px;
    height: 150px;
    border: 7px solid #fff;
    box-sizing: border-box;
    margin:auto;
}
.item-content::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border-right: 20px solid transparent;
    border-top: 20px solid transparent;
    border-bottom: 20px solid rgba(0,0,0,.6);
    left: 50%;
    top: 0;
    margin-top: -40px;
    border-left: 20px solid transparent;
    margin-left: -16px;
}
.item-content {
    background: rgba(0,0,0,.7);
    background-color: rgba(0, 0, 0, 0.7);
    background-image: none;
    background-repeat: repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto auto;
    color: #fff;
    padding: 15px;
    padding-left: 21px;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    border-bottom: 4px solid #fff;
    box-sizing: border-box;
    margin-top: 35px;
    text-align: center;
}
.item-content h4 {
    color: #1476C6;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px;
}
.item-content .d-title {
    margin-bottom: 10px;
    margin-top: 4px;
    font-style: italic;
    color: #bab7b7;
}
.item-content p {
    line-height: 24px;
}
.item-img:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    transition: .3s;
}
.owl-carousel .owl-item img {
    transition: .3s;
}
.owl-carousel .owl-item img:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}
.owl-testimonial .owl-item img {
    border-radius: 50%;
}
/*
==========================================
    Pricing Css
==========================================
*/
.pricing-box ul li a {
    text-decoration: none;
    outline: none;
    color: #A59E9E;
}
.pricing-box ul li {
    border-bottom: 2px dotted #e8e7e7;
    padding: 15px 0px;
}
.pricing-box {
    padding: 35px 0;
    box-shadow: 0 0 3px #ccc;
    transition: .3s;
}
.pricing-box:hover {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
}
.pricing-box h4 {
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.pricing-box .rate {
    color: #1476C6;
}
.pricing-box .my-btn a:hover {
    border: 1px solid #1476C6;
}
.pricing-box .my-btn a {
    background: #1476C6;
    border-bottom: 0;
    border: none;
    padding: 14px 30px;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 22px;
}
.pricing-box.pricing-box-shadow {
    box-shadow: 0 0 16px #1476C6;
    background: #1476C6;
    color: #fff;
}
.pricing-box.pricing-box-shadow ul li a {
    color: #fff;
}
.pricing-box.pricing-box-shadow ul li {
    border-color: #398bd6;
}
.pricing-box.pricing-box-shadow .my-btn a {
    background: #fff;
    color: #1467C6;
}
.pricing-box.pricing-box-shadow .rate {
    color: #fff;
}

/*
==========================================
    Timeline Css
==========================================
*/
.timeline-border {
    height: 100%;
    background: #1476C6;
    width: 2px;
    position: absolute;
    left: 50%;
    margin-left: -1px;
}
.timeline-main {
    height: 560px;
}
.timeline-box {
    width: 300px;
    border: 1px solid #ccc;
    padding: 12px 20px;
    position: relative;
}
.timeline-box:after {
    position: absolute;
    width: 91%;
    height: 1px;
    background: #1476C6;
    content: '';
    left: 100%;
    top: 59%;
    -webkit-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
            transform: rotate(6deg);
}
.timeline-box::before {
    background: #1476C6;
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    left: 97.5%;
    top: 50%;
    margin-top: -7.5px;
}
.timeline-box-right.timeline-box {
    right: 0;
    position: absolute;
    margin-top: 86px;
}
.timeline-box-right.timeline-box:after {
    left: -96%;
    width: 96%;
    top: 56px;
}
.timeline-box-right.timeline-box:before {
    left: -8px;
}
.timeline-box h4 {
    font-weight: 600;
    color: #575353;
    margin-bottom: 7px;
    font-size: 18px;
}
.timeline-box p {
    color: #7b7676;
    line-height: 23px;
    font-size: 13px;
}
.timeline-box h5 {
    color: #1476C6;
    font-weight: 700;
    margin-bottom: 10px;
}
.timeline-t-margin {
    margin-top: 200px;
}
.timeline-border::after {
    width: 15px;
    height: 15px;
    position: absolute;
    content: '';
    background: #1476C6;
    border-radius: 50%;
    left: -7px;
    top: 0;
}
.timeline-border::before {
    width: 15px;
    height: 15px;
    position: absolute;
    content: '';
    background: #1476C6;
    border-radius: 50%;
    left: -7px;
    bottom: 0;
}

/*
==========================================
    Contact Css
==========================================
*/
.contact form input,
.contact form textarea {
    border: 0;
    border-bottom: 1px solid #1476C6;
    outline: none;
    margin-bottom: 20px;
    padding-left: 22px;
}
.contact form input {
    height: 44px;
}
.contact form textarea {
    height: 180px;
    padding-top: 20px;
    resize:vertical;
}
.contact form input[type="submit"] {
    border: none;
    padding: 0;
    width: 100%;
    border: 1px solid #1476C6;
    background: #1476C6;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}
.contact form input[type="submit"]:hover {
    background: transparent;
    color: #1476C6;
}

/*
==========================================
    Footer Css
==========================================
*/
.footer {
    text-align: center;
    text-transform: capitalize;
}
.footer-bottom {
    background: #202020;
    color: #fff;
}
.footer-social-icon ul li {
    display: inline;
}
.footer-social-icon ul li a {
    display: inline-block;
    color: #fff;
    background: #1476C6;
    padding: 10px;
    width: 46px;
    font-size: 18px;
    border-radius: 50%;
    margin: 0 5px;
    transition: .3s;
}
.footer-social-icon ul {
    text-align: center;
    margin-bottom: 26px;
}
.footer-social-icon ul li a:hover {
    background: #fff;
    color: #1476C6;
}
.footer-logo {
    margin-bottom: 17px;
}


/*
    Extra
*/
.fix-top {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: .5s;
    padding: 2px 0;
    box-shadow: 0 0 10px #ccc;
}
.scrolltotop i {
    background: #1476C6;
    color: #fff;
    position: fixed;
    padding: 12px;
    right: 10px;
    bottom: 10px;
    z-index: 99;
    border-radius: 50%;
    font-size: 24px;
    padding-top: 9px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 0 15px #757373;
    display: none;
}
.scrolltotop i:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.menu-btn a {
    display: none;
}
/*
    Preloader
*/
body.preloader-active {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999999;
    overflow: hidden;
}
.preloader {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 9999999999;
}
.preloader-spinner {
    background: url('../img/preloader.gif') no-repeat center center;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    margin-top: -50px;
    margin-left: -50px;
    position: absolute;
}