

/*============================================
    1. Home One (Gym) / 1.1 Header Area
*=============================================*/

.header-area {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 37px 0px;
    background: transparent;
    -webkit-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
}

.sticky-menu {
    background-color: #0b0b0b;
}

.logo a {
    display: inline-block;
}
.logo a img {
    max-width: 150px;
}

.main-menu nav ul {
    text-align: right;
}

.main-menu nav ul li {
    display: inline-block;
}

.main-menu nav ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    margin-left: 33px;
    position: relative;
    padding-left: 16px;
    text-transform: capitalize;
}

.main-menu nav ul li:hover>a, .main-menu nav ul li a:hover, .main-menu nav ul li.active a {
    color: #FFCC2F;
}

.main-menu nav ul li a:before {
    content: '';
    position: absolute;
    left: -7px;
    top: 9px;
    height: 2px;
    width: 15px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    background: #ffcb2a;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.main-menu nav ul li:hover a:before, .main-menu nav ul li a:hover:before, .main-menu nav ul li.active a:before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    left: 0;
}

/* mobile menu */

.slicknav_menu {
    padding: 0;
    margin-top: 15px;
}

.slicknav_menu .slicknav_menutxt {
    display: none;
}

.slicknav_menu {
    background: transparent;
    margin-top: 21px;
}

.slicknav_menu .slicknav_icon-bar {
    background-color: #ffcc2f;
    height: 2px;
    width: 19px;
    margin: 3px 0px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.slicknav_btn {
    background-color: transparent;
    position: relative;
    margin-top: -57px;
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(2) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(1px, 7px);
    transform: rotate(45deg) translate(1px, 7px);
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-6px);
    transform: rotate(-45deg) translateY(-6px);
}

.slicknav_nav {
    background: #FFCC2F;
    margin: 0;
    padding: 6px 0px;
}

.slicknav_nav a:hover {
    background: #fefefe none repeat scroll 0 0;
    border-radius: 0;
}

.slicknav_nav a {
    font-size: 14px;
    letter-spacing: 0.01em;
}

.slicknav_nav .slicknav_arrow {
    float: right;
}

.slicknav_nav .slicknav_row:hover, .slicknav_nav .slicknav_row:hover .slicknav_arrow {
    border-radius: 0;
    background-color: #3c3333;
}

/*============================================
    END Header Area
*=============================================*/

/*============================================
    1.2 Hero Area
*=============================================*/

.hero-area {
    min-height: 635px;
}

.full-height {
    height: 100vh;
}

.hero-content span {
    font-size: 19px;
    letter-spacing: 0;
    word-spacing: 3px;
    font-weight: 400;
    display: block;
    line-height: 21px;
    text-transform: uppercase;
    color: #ffcc2f;
}

.hero-content h2 {
    font-size: 62px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 65px;
    margin: 8px 0px 30px;
    font-weight: 900;
    font-family: 'Exo 2', sans-serif;
}

.hero-content p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
}

.hero-content a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0;
    background: #ffba00;
    padding: 12px 55px;
    border-radius: 33px;
    margin-top: 52px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-content a:hover {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    background-color: #fff;
    color: #ffcb2a;
}

/* scrolldown */

a.scrl_me_down {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 5%;
    z-index: 9;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.5s ease 1.9s;
    transition: all 0.5s ease 1.9s;
}

a.scrl_me_down span {
    display: inline-block;
    color: #fff;
    font-size: 55px;
    -webkit-animation: scrooldown 1000ms linear 0s infinite;
    animation: scrooldown 1000ms linear 0s infinite;
}

@-webkit-keyframes scrooldown {
    0% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@keyframes scrooldown {
    0% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

/*============================================
    END Hero Area
*=============================================*/

/*============================================
    1.3 About Area
*=============================================*/

.abt-thumb {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 12px;
}

.abt-thumb img {
    max-width: 100%;
}

.abt-content {
    border-top: 15px solid #efeaea;
    border-left: 15px solid #efeaea;
    padding: 40px 15px 15px 40px;
    margin-bottom: 100px;
}

.title-back {
    display: block;
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 900;
    color: #f3eeee;
    letter-spacing: 0;
    margin-bottom: -20px;
    position: relative;
    z-index: -1;
    font-family: 'Exo 2', sans-serif;
    -webkit-animation: upanddown 2000ms linear 0s infinite;
            animation: upanddown 2000ms linear 0s infinite;
}

@-webkit-keyframes upanddown {
    0% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@keyframes upanddown {
    0% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

.abt-content h2 {
    display: block;
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 900;
    color: #ffba00;
    letter-spacing: 0;
    line-height: 52px;
    margin-bottom: 27px;
    font-family: 'Exo 2', sans-serif;
}

.abt-content p {
    color: #666;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 27px;
    margin-bottom: 15px;
}

/*============================================
    END About Area
*=============================================*/

/*============================================
    1.4 Classes Area
*=============================================*/

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #ffcb2a;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 32px;
    color: #444;
    text-transform: uppercase;
}

.section-title p {
    margin-top: 15px;
    font-size: 19px;
    letter-spacing: 0;
    color: #999;
}

.classes-carousel {
    padding-bottom: 70px;
}

.class-item {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    margin: 5px;
}

.class-item .thumb {
    overflow: hidden;
}

.class-item .thumb img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.class-item:hover .thumb img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.class-content {
    padding: 0px 15px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cls-top-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: -54px;
    margin-bottom: 23px;
}

.cls-top-meta .user {
    position: relative;
}

.cls-top-meta .user img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f9f9f9;
}

.cls-top-meta .user span {
    position: absolute;
    left: 14px;
    top: -20px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    width: 150px;
    letter-spacing: 0;
    font-size: 14px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.cls-top-meta .user:hover span {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.cls-top-meta .user span:before {
    content: '';
    position: absolute;
    left: 14px;
    bottom: -18px;
    border: 10px solid #000;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.cls-price {
    height: 70px;
    width: 70px;
    background: #ffcc2f;
    text-align: center;
    line-height: 70px;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.1);
}

.class-content h2 a {
    display: block;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0;
    color: #444;
}

.class-content h2 a:hover {
    color: #ffcc2f;
}

a.join-class {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0;
    background: #ffcc2f;
    padding: 9px 33px;
    border-radius: 33px;
    color: #fff;
    text-transform: uppercase;
    margin: 29px 0px 31px;
}

ul.meta-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

ul.meta-info li a {
    display: inline-block;
    letter-spacing: 0;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
}

ul.meta-info li a i {
    color: #ffcb2a;
    margin-right: 4px;
}

.progress_bar {
    height: 7px;
    width: 100%;
    background: #ddd;
    border-radius: 33px;
    margin-top: 19px;
}

.progress_bar .pr_bar {
    display: block;
    border-radius: 33px;
    height: 7px;
    background-color: #ffcb2a;
}

.swiper-pagination {
    text-align: center;
    line-height: 20px;
}

.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #dddddd;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    margin: 0px 2px;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background-color: #ffcb2a;
}

/*============================================
    END Classes Area
*=============================================*/

/*============================================
    1.5 Trainer Area
*=============================================*/
.single-trainer {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.single-trainer .thumb {
    position: relative;
    overflow: hidden;
}

.single-trainer .thumb:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: url(../images/icon/trianer-shape.png) bottom right/contain no-repeat;
}

.single-trainer .thumb img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-trainer:hover .thumb img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.single-trainer .content {
    position: relative;
    z-index: 1;
    padding: 0px 25px 30px;
    margin-top: -39px;
}

.single-trainer .content h4 {
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 500;
    color: #444;
}

.single-trainer .content p {
    font-size: 14px;
    letter-spacing: 0;
    color: #999;
    font-weight: 400;
    margin-bottom: 18px;
}

.social li {
    display: inline-block;
}

.social li a {
    display: block;
    font-size: 17px;
    color: #444;
    margin-right: 10px;
}

.social li a:hover {
    color: #ffcb2a;
}

/*============================================
    END Trainer Area
*=============================================*/

/*============================================
    1.6 Testimonial Area
*=============================================*/

.tst-title {
    position: relative;
    z-index: 1;
}

.tst-title h2 {
    font-size: 73px;
    color: #ffcc2f;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 80px;
    margin-bottom: 26px;
}

.tst-title p {
    font-size: 41px;
    color: #6d6969;
    letter-spacing: 0;
    text-transform: capitalize;
}

.testimonials-carousel {
    margin-top: 70px;
    padding-bottom: 83px;
}

.tst-item p {
    position: relative;
    font-size: 17px;
    color: #6d6969;
    letter-spacing: 0;
    line-height: 37px;
    font-style: italic;
    padding-left: 80px;
}

.tst-item p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    height: 2px;
    width: 0px;
    background-color: #6d6969;
    -webkit-transition: all 1s ease 0.2s;
    transition: all 1s ease 0.2s;
}

.swiper-slide-active.tst-item p:before {
    width: 70px;
}

.tst-item strong {
    padding-left: 80px;
    display: block;
    font-size: 16px;
    letter-spacing: 0;
    color: #6d6969;
    line-height: 23px;
    margin-top: 15px;
}

.tst-item strong span {
    font-weight: 400;
}

.right-thumb {
    position: absolute;
    right: 11%;
    bottom: 0;
    padding-top: 48px;
    width: 293px;
}

.right-thumb img {
    max-width: 100%;
}

.testimonials-carousel .swiper-pagination {
    text-align: left;
}

/*============================================
    END Testimonial Area
*=============================================*/

/*============================================
    1.7 Feature Blog
*=============================================*/
.blog-content {
    margin-bottom: 14px;
}

.blog-content h2 a {
    font-size: 19px;
    letter-spacing: 0;
    color: #444;
    font-weight: 400;
    margin-bottom: 5px;
    display: block;
}

.blog-content h2 a:hover {
    color: #ffcc2f;
}

.blog-content span {
    display: block;
    letter-spacing: 0;
}

.blog-thumb {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.blog-thumb img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-blog:hover .blog-thumb img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.blog-thumb a {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #fff;
    color: #444;
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 600;
    border-radius: 33px;
    padding: 5px 24px;
}

.blog-thumb a i {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.blog-thumb a:hover i {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
}

/*============================================
    END Feature Blog
*=============================================*/

/*============================================
    1.8 Join Club
*=============================================*/

.join-form {
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.join-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.join-form form input {
    width: calc(100% * (1/2) - 90px);
    height: 60px;
    padding-left: 25px;
    letter-spacing: 0;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.join-form form input:focus {
    border: 1px solid #ffca28;
}

.join-form form #jsubmit {
    max-width: 150px;
    box-shadow: none;
    background: #ffcc2f;
    padding: 0;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.join-form form #jsubmit:hover {
    background-color: #444;
}

/*============================================
    END Join Club
*=============================================*/

/*============================================
    1.9 Contact
*=============================================*/

.contact-content {
    max-width: 500px;
    width: 100%;
    box-shadow: 0px 0px 44px rgba(0,0,0,0.05);
    padding: 30px 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-content ul li {
    font-size: 19px;
    color: #555;
    letter-spacing: 0;
    line-height: 30px;
    margin: 32px 0px;
}

.contact-content ul li i {
    width: 40px;
    font-size: 37px;
    color: #ffca27;
    margin-right: 20px;
    float: left;
    vertical-align: middle;
}
#google_map {
    height: 330px;
    border-radius: 5px;
    border: 10px solid #fff;
    box-shadow: 0px 0px 5px rgba(00,0,0,0.05);
}

/*============================================
    END Contact
*=============================================*/

/*============================================
    1.10 Footer Content
*=============================================*/

.footer-area {
    background-color: #0b0b0b;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0;
}

/*============================================
    5. Home Five (Mobile App)
*=============================================*/

.h5-title span, .h5-title h2 {
    color: #0f7adf;
}

.h-style5.sticky-menu {
    background-color: #0f7adf;
}

.h-style5 .main-menu nav ul li:hover>a, .h-style5 .main-menu nav ul li a:hover, .h-style5 .main-menu nav ul li.active a {
    color: #0f7adf;
}

.h-style5.sticky-menu .main-menu nav ul li:hover>a, .h-style5.sticky-menu .main-menu nav ul li a:hover, .h-style5.sticky-menu .main-menu nav ul li.active a {
    color: #2ddbbd;
}

.h-style5 .main-menu nav ul li a:before {
    background-color: #0f7adf;
}

.h-style5.sticky-menu .main-menu nav ul li a:before {
    background-color: #2ddbbd;
}
.app-slider{
	background: url(../images/1bg.png) #fff;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover; color:#fff}
.app-slider h3 {
    font-size: 50px;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}


.app-slider  a {
        background-image: -webkit-linear-gradient(left, #42d897 0%, #42d897 51%, #42d897 100%);
    background-image: linear-gradient(to right, #42d897 0%, #42d897 51%, #42d897 100%); font-size:1.5rem; text-transform:uppercase; border-radius:50px; padding:15px 30px; margin-top:20px;}


.screen-slides-area {
    position: relative;
    text-align: right
}

.screen-slides {
    position: absolute;
    right: 20px;
    top: 64px;
    width: 230px;
}

/* service area */

.single-service {
    text-align: center;
    padding: 30px 15px;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-service.active, .single-service:hover {
    border-bottom: 1px solid #2cd6ba;
    box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.08);
}

.single-service .icon {
    font-size: 60px;
    color: #1c2069;
    margin-bottom: 29px;
}

.single-service h4 {
    font-size: 20px;
    letter-spacing: 0;
    color: #626564;
    margin-bottom: 12px;
    font-weight: 500;
}

.single-service p {
    color: #777;
    font-size: 16px;
}

/* app-cta-area */

.effectupdown {
    -webkit-animation: effectupdown 3000ms linear 0s infinite;
            animation: effectupdown 3000ms linear 0s infinite;
}

.effectupdown2 {
    -webkit-animation: effectupdown 3000ms linear 1s infinite;
            animation: effectupdown 3000ms linear 1s infinite;
}

@-webkit-keyframes effectupdown {
    0% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes effectupdown {
    0% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

.appcta-content h2 {
    font-size: 34px;
    letter-spacing: 0;
    line-height: 40px;
    margin-bottom: 15px;
    color: #0f7adf;
}

.appcta-content p {
    font-size: 16px;
    color: #666;
}

.appcta-content .links {
    margin-top: 47px;
}

.appcta-content .links a {
    display: inline-block;
    font-size: 17px;
    letter-spacing: 0;
    margin-right: 16px;
    border: 1px solid #5a68ef;
    padding: 10px 31px;
    border-radius: 3px;
    color: #5a68ef;
    font-weight: 600;
}

.appcta-content .links a.active {
    color: #fff!important;
    background: #5a68ef;
    box-shadow: 0px 3px 17px rgba(74, 63, 191, 0.7);
}

.appcta-right {
    text-align: right;
}

/* feature area */

.feature-item {
    margin-top: 70px;
    text-align: right;
}

.feature-item .icon {
    float: right;
    margin-left: 17px;
    height: 70px;
    width: 70px;
    border: 1px dashed #ddd;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 31px;
    color: #0f7adf;
    position: relative;
}

.feature-item .icon:before {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    border: 1px dashed #ddd;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.feature-item:hover .icon:before {
    left: 0;
    top: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.feature-item .content {
    overflow: hidden;
}

.feature-item h4 {
    font-size: 22px;
    letter-spacing: 0;
    color: #333;
    margin-bottom: 8px;
}

.feature-item p {
    color: #444;
}

.right-side .feature-item .icon {
    float: left;
    margin-left: 0;
    margin-right: 17px;
}

.right-side .feature-item {
    text-align: left;
}

/* appdemo-video */

.ad-video-box {
    height: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    box-shadow: 0px 4px 70px rgba(51, 47, 122, 0.5);
    background: url(../images/bg/appvideo-bg.jpg) center/cover no-repeat;
}

.ad-video-box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: #0f7adf;
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}

.ad-video-box a {
    font-size: 30px;
    color: #0f7adf;
    height: 80px;
    width: 80px;
    margin: 0 auto;
    margin-bottom: 42px;
    background: #f9f9f9;
    border-radius: 50%;
    line-height: 80px;
    padding-left: 5px;
    position: relative;
}

.ad-video-box a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-animation: popingvideo 800ms linear infinite;
            animation: popingvideo 800ms linear infinite;
}

@-webkit-keyframes popingvideo {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: scale(1.7);
                transform: scale(1.7);
    }
}

@keyframes popingvideo {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: scale(1.7);
                transform: scale(1.7);
    }
}

.ad-video-box h3 {
    color: #fff;
    letter-spacing: 0;
    font-size: 26px;
}

/* screenshot-area */

.screenshot-area .swiper-slide {
    width: 360px;
    padding: 0 10px;
}

.screenshot-pagination {
    text-align: center;
    margin-top: 60px;
}

.screenshot-area .h5-title {
    margin-bottom: 80px;
}

.screenshot-pagination .swiper-pagination-bullet-active {
    background-color: #0f7adf;
}

/* testimonial-carousel-two */

.testimonial-two {
    padding: 150px 0px;
    position: relative;
    z-index: 1;
   /* background: url(../images/bg/appvideo-bg.jpg) center/cover no-repeat;*/
}

.testimonial-two:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: #0f7adf;
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}

.tst-two-carousel {
    margin: 0;
    padding: 0;
}

.tst-two-carousel .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.tst2-thumb {
    -ms-flex-preferred-size: 537px;
        flex-basis: 537px;
    margin-right: 50px;
    padding-right: 50px;
    border-right: 1px solid #ddd;
}

.tst2-thumb img {
    max-width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.tst2-content h4 {
    font-size: 26px;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 500;
}

.tst2-content span {
    display: block;
    letter-spacing: 0;
    font-size: 17px;
    margin-bottom: 17px;
    color: #f5f5f5;
}

.tst2-content p {
    font-size: 17px;
    color: #e2dddd;
}

/* pricing-area */

.prc-single {
    text-align: center;
    background: #f9f9f9;
    padding: 50px 0px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.prc-single:before {
    content: '';
    position: absolute;
    left: -40px;
    top: -40px;
    height: 100px;
    width: 100px;
    background: #433ca2;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.prc-single:hover:before {
    left: -35px;
    top: -35px;
}

.prc-single h2 {
    font-size: 29px;
    letter-spacing: 0;
    color: #0f7adf;
    font-weight: 600;
    margin-bottom: 50px
}

.prc-single strong {
    font-size: 37px;
    letter-spacing: 0;
    color: #0f7adf;
    font-weight: 700;
    display: block;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #f3f0f0;
}

.prc-single strong sup {
    font-weight: 400;
    font-size: 23px;
}

.prc-single strong sub {
    font-weight: 400;
    color: #0f7adf;
    font-size: 16px;
}

ul.prc-list li {
    color: #4d557d;
    letter-spacing: 0;
    margin: 19px 0px;
}

.prc-single a {
    display: inline-block;
    font-size: 17px;
    letter-spacing: 0;
    border: 1px solid #4a3fbf;
    padding: 10px 31px;
    border-radius: 3px;
    color: #4a3fbf;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 38px;
}

.prc-single a:hover, .prc-single a.active {
    color: #fff!important;
    background: #4a3fbf;
    box-shadow: 0px 3px 17px rgba(74, 63, 191, 0.7);
}

/*faq-area*/

.faq-area {
    overflow: hidden;
}

.accordion-area .card {
    margin: 10px 0px;
    border: none;
}

.accordion-area .card-header {
    padding: 0;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.accordion-area .card-header h5 {
    background: transparent;
    margin-bottom: 0;
    display: block;
    overflow: hidden;
    width: 100%;
}

.accordion-area .card-header h5 span {
    background-color: #eeeeee;
    display: block;
    width: 60px;
    height: 100%;
    text-align: center;
    line-height: 60px;
    font-size: 15px;
    color: #777;
    float: left;
}

.accordion-area .card-header h5 button {
    border: none;
    background: #f7f7f7;
    padding: 19px 15px;
    width: calc(100% - 60px);
    text-align: left;
    font-size: 13px;
    color: #333;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.02em;
    cursor: pointer;
    position: relative;
    line-height: 23px;
    outline: none;
}

.accordion-area .card-header h5 button:before {
    content: '';
    position: absolute;
    right: 10px;
    top: calc(50% - 1px);
    height: 2px;
    width: 12px;
    background: #9c9393;
}

.accordion-area .card-header h5 button:after {
    content: '';
    position: absolute;
    right: 15px;
    top: calc(50% - 6px);
    height: 0;
    width: 2px;
    background: #9c9393;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.accordion-area .card-header h5 button.collapsed:after {
    height: 12px;
}

.accordion-area .card-body {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    color: #a59c9c;
    font-size: 15px;
    line-height: 31px;
    letter-spacing: 0;
}

.faq-left-thumb {
    text-align: right;
    margin-bottom: -100px;
}

.faq-left-thumb img {
    max-width: 100%;
}

/* download-area */

.download-area {
    padding: 120px 0px;
    position: relative;
    z-index: 1;
    background: url(../images/bg/appvideo-bg.jpg) center/cover no-repeat;
}

.download-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: #0f7adf;
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}

.download-title {
    text-align: center;
    margin-bottom: 80px;
}

.download-title h2 {
    font-size: 32px;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 23px;
}

.download-title p {
    color: #e2d8d8;
    letter-spacing: 0;
    font-size: 17px;
}

.download-app {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.single-download-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-download-links:hover {
    border: 1px solid #fff;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    background-color: #232069;
}

.sdl-icon {
    font-size: 39px;
    margin-right: 25px;
    color: #211e68;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.sdl-content p {
    font-size: 14px;
    letter-spacing: 0;
    color: #222;
    margin-bottom: 5px;
    line-height: 18px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.sdl-content h2 {
    font-size: 21px;
    letter-spacing: 0;
    color: #221f68;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-download-links:hover .sdl-icon, .single-download-links:hover p, .single-download-links:hover h2 {
    color: #fff;
}

/* h5-contact */
.h5-contact .contact-content ul li i {
    color: #0f7adf;
}
.cnt-form{
    margin: 0;
    max-width: 100%;
}
.contact-content form{}
.contact-content form input,
.contact-content form textarea{
    height: 50px;
    width: 100%;
    margin-bottom: 15px;
    padding-left: 15px;
    letter-spacing: 0;
    border-radius: 2px;
    border: 1px solid #eee;
}
.contact-content form textarea{
    padding-top: 12px;
    height: 115px;
}
.contact-content form input[type='submit']{
    margin-bottom: 0;
    width: 150px;
    padding: 0;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    background: #0f7adf;
    border-radius: 3px;
    letter-spacing: 0.05em;
    cursor: pointer;
}
.contact-content form input[type='submit']:hover{
    background-color: #0b0b0b;
}

/*============================================
    END Home Five (Mobile App)
*=============================================*/
