@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700|Open+Sans:300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Work+Sans');

/*Table Of Contents
01 body
02 loader
03 header
04 nav
05 menu-bars
06 sidebar-menu
07 Revolution
08 Services
09 parallax
10 counter
11 team crousel
12 testimonial
13  Work / Portfolio
14 Video Parallax
15 Pricing
16 Blog
17 Contact
18 Footer
*/
html
{
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body{
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
    font-size:14px;
    background-color: #101518;
}
ol, ul{
    margin:0;
    padding:0;
    list-style:none;
}
p {
    font-size: 14px;
}
.bglight {
    background: #f6f6f6;
}
.color-light {
   color: #ababab;
}
.padding {
    padding-top: 120px;
    padding-bottom: 120px;
}
.padding-half {
   padding-top: 60px;
    padding-bottom: 60px;
}
.no-padding {
    padding: 0;
}
.mb-10 {
   margin-bottom: 10px;
}
.mt-20 {
   margin-top: 20px;
}
.mt-30 {
   margin-top: 30px;
}
.mt-40 {
   margin-top: 40px;
}
.mt-50 {
   margin-top: 50px;
}
.font-300 {
   font-weight: 300;
}
.heading-title > span {
    font-size: 44px;
    display: block;
    text-transform: capitalize;
    color: #333333;
    font-family:'Montserrat', sans-serif;
    font-weight: 800;
   line-height: 1;
}
h4 {
   font-size: 18px;
}

/*Buttons*/
.btn1 {
    padding: 13px 33px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    line-height:14px;
    border: 1px solid transparent;
}
.btn-rounded {
   -webkit-border-radius: 50px;
    border-radius: 50px;
}
.btn-transparent-gradient {
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) ; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
}

.btn-black {
    background: #333333;
}
.btn-black:hover {
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) ; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
}

.btn-transparent-gradient:hover,
.btn-transparent-gradient:focus {
    background: #333333;
}
.btn-transparent-gradient,
.btn-transparent-gradient:hover,
.btn-transparent-gradient:focus,
.btn-black, .btn-black:hover, .btn-black:focus {
   color: #fff;
}



/*Loader Css Start*/
.modex-loader {
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1111;
    background: #fff;
    overflow-x: hidden;
}
#preloader {

    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    height: 120px;
    margin-left: -60px;
    display: inline-block;
    width: 120px;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:#fe563a;
    border-bottom-color: #e43a78;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fe563a;
    border-bottom-color: #e43a78;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fe563a;
    border-bottom-color: #e43a78 ;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*Loader Css End */

.navbar-default {
    background-color: transparent;
    border-color: transparent;
}
.header-appear .navbar-default {
    background: #333333;
    transition: background 2s ease;
    padding-top: 7px;
    padding-bottom: 7px;
    min-height: 70px;
    transform: translateZ(0);
    -webkit-transition: all .9s linear;
    -o-transition: all .9s linear;
    transition: all .9s linear;

}



/* logo change */

header .logo .logo-dark, header .logo .logo-light {visibility: hidden; opacity: 0; width: 0; transition-duration: 0.5s; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -ms-transition-duration: 0.5s; -o-transition-duration: 0.5s;}
header .logo .logo-dark.default, header .logo .logo-light.default {visibility: visible; opacity: 1; width: auto; transition-duration:0.5s;  -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -ms-transition-duration: 0.5s; -o-transition-duration: 0.5s;}
header.header-appear nav.header-dark-transparent .logo .logo-light, header.header-appear nav.header-dark .logo .logo-light {visibility: visible;  opacity: 1; width: auto; transition-duration: 0.5s; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -ms-transition-duration: 0.5s; -o-transition-duration: 0.5s;}
header.header-appear nav.header-dark-transparent .logo .logo-dark, header.header-appear nav.header-dark .logo .logo-dark {visibility: hidden; opacity: 0; width: 0; transition-duration:0.5s; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -ms-transition-duration: 0.5s; -o-transition-duration: 0.5s;}
header.header-appear nav.header-light-transparent .logo .logo-dark, header.header-appear nav.header-light .logo .logo-dark {visibility: visible;  opacity: 1; width: auto; transition-duration:0.5s; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -ms-transition-duration: 0.5s; -o-transition-duration: 0.5s;}
header.header-appear nav.header-light-transparent .logo .logo-light, header.header-appear nav.header-light .logo .logo-light {visibility: hidden; opacity: 0; width: 0; transition-duration:0.5s; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -ms-transition-duration: 0.5s; -o-transition-duration: 0.5s;}
header a.logo {display: inline-block; vertical-align: middle;line-height: 0}
header a.logo img {max-height:35px; max-width: 100px;vertical-align: sub;}

.header-appear .header-social-icon .header-social-icon a {
    margin-top: 25px;
}

header .logo .logo-dark.default, header .logo .logo-light.default {
    visibility: visible;
    opacity: 1;
    width: auto;
}
header a.logo img {
    max-height: 35px;
    max-width: 100px;
    vertical-align: sub;
    margin-top: 25px;
}
.header-appear a.logo img{
    margin-top: 15px;
}
.nav_line li.active a:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    visibility: visible;
    opacity: 1;
}

.nav_line li a:before {
    position: absolute;
    content: '';
    width: 100%;
    display: table;
    height: 4px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    bottom: -5px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    visibility: hidden;
    opacity: 0;

}
header nav .navbar-nav > li > a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.015em;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF !important;
    margin: 20px 26px;
    padding: 0;
    transform: translateZ(0);
    -webkit-transition: all .9s linear;
    -o-transition: all .9s linear;
    transition: all .9s linear;
}
nav .navbar-nav{
    margin-top: 10px;
}
.header-appear nav .navbar-nav{
    margin-top: 0;
}

header.sticky nav.navbar.navbar-default.navbar-fixed-top ul.nav > li > a, header.sticky nav.navbar.navbar-default.navbar-top ul.nav > li > a {
    padding: 20px 0 20px;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover
{
    background-color: transparent;
}
nav.navbar.bootsnav.white-link ul.nav > li a:hover {
    color: #fe5639 !important;
    background: none;
    transform: translateZ(0);
    -webkit-transition: all .9s linear;
    -o-transition: all .9s linear;
    transition: all .9s linear;
}
header nav .row > div:first-child {
    flex: 1 1 auto;
}
header nav {
    width: 100%;
    top: 0px;
    z-index: 99;
    margin-bottom: 0;
    display: table;
}
.header-social-icon a {
    top: -2px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    background: #fe563a;
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%);
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 );
    color: #fff !important;
    border-radius: 25px;
    padding: 9px;
    padding-right: 30px;
    font-weight: 100;
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
    -moz-transition-duration: .4s;
    -ms-transition-duration: .4s;
    -o-transition-duration: .4s;
    text-decoration: none;
    line-height: 20px;
}

.header-social-icon {
    margin-top: 30px;
    margin-left: -67px;
}
.header-appear .header-social-icon{
    margin-top: 20px;
}
i.fa.fa-phone.padding-5px-right {
    padding-left: 4px;
    padding-right: 4px;
}
.header-social-icon a:hover
{
    text-decoration: none;

}

.navbar-fixed-bottom, .navbar-fixed-top{
    z-index: 99;
}
/*Side Nav */


.menu_bars {
    position: fixed;
    width: 28px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 99;
    -webkit-transition: all linear 300ms;
    -moz-transition: all linear 300ms;
    -ms-transition: all linear 300ms;
    transition: all linear 300ms;
    right:3%;
    padding: 11px 10px;
    top:25px;
    color: #FFF;
}

.header-appear .menu_bars{
    top: 22px;
    transform: translateZ(0);
    -webkit-transition: all .9s linear;
    -o-transition: all .9s linear;
    transition: all .9s linear;
}

.menu_bars span {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    margin-top: 9px;
    right: 0;
    -webkit-transition: all .9s linear;
    -o-transition: all .9s linear;
    transition: all .9s linear;
}
.menu_bars .t1 {
    margin-top: -4px;
    width: 80%;
}

.menu_bars .t3{
    top: 17px;
    margin-top: 4px;
    width: 50%;
}
.menu_bars:hover .t1,.menu_bars:hover .t3{
    width: 100%;
}

.pushmenu {
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    padding: 20px 15px;
    width:600px;
    height: 100%;
    top: 0;
    z-index: 1100;
    position: fixed;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.pushmenu-right.pushmenu-open {
    right: 0;
}

.pushmenu.pushmenu-right {
    padding: 5px 20px 20px 60px;
}

.pushmenu-right {
    right: -600px;
}

.side-nav .menu_bars.active.right {
    background: none;
}

.menu_bars.active.right {
    position: fixed;
    padding: 15px;
    top: 22px !important;
    z-index: 9999;
    bottom: auto;
    transform: translateZ(0);
    -webkit-transition: all .9s linear;
    -o-transition: all .9s linear;
    transition: all .9s linear;
}

.side-nav .menu_bars.active.right span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all .9s linear;
    -o-transition: all .9s linear;
    transition: all .9s linear;
}

.menu_bars.active span.t1 {
    margin-top: -5px;
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
}

.side-nav .menu_bars.active.right span .t2 {
    margin: 4px;
}

.side-nav .menu_bars span.t2 {
    margin: 3px 0;
}

.menu_bars.active span.t2 {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu_bars.active span.t3 {
    -webkit-transform: translateY(-5px) rotate(-135deg);
    transform: translateY(-5px) rotate(-135deg);
}

.pushmenu .push-logo {
    display: inline-block;
    z-index: 9999;
    width: 115px;
    margin-top: 24px;
    margin-left: 0px;
}
.push-bottom{
    position: absolute;
    bottom: 30px;
    color: #FFFFFF;
}

.pushmenu .push_nav {
    position: absolute;
    width: 100%;
    z-index: 100;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    background: transparent;
}

.pushmenu .push_nav li {
    display: block;
    font-size: 20px;
    margin: 0 0px 18px 0px;
    text-transform: capitalize;
    padding-left: 0;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
}

.pushmenu .push_nav > li > a,.header-appear .pushmenu .push_nav > li > a {
    color: #fff;
}
.pushmenu .push_nav > li > a > span {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    width: 30px;
    -webkit-transition: all linear 300ms;
    transition: all linear 300ms;
    color: #fff !important;
    opacity: 0.7;
    margin-right: 20px;
    margin-top: 0px;
    font-weight: 500;
    transform: translateZ(0);
    -webkit-transition: all .9s linear;
    -o-transition: all .9s linear;
    transition: all .9s linear;
}

.pushmenu .social_icon {
    position: absolute;
    bottom: 15px;
    left: 25px;
    right: 0;
}
a.facebook-bg-hvr:hover {
    background: #3C599F;
    background-color: #3C599F;
    border-radius: 50%;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
a.instagram-bg-hvr:hover {
    border-radius: 50%;
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;

}
a.pinterest-bg-hvr:hover {
    background: #cc2127; ;
    background-color: #cc2127;
    border-radius: 50%;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
p.text-white.text-small {
    margin-top: 10px;
}
.sidebar_menu .small-icon li {
    margin: 0;
}

.sidebar_menu .small-icon li a {
    color: #fff;
}

.sidebar_menu .small-icon li a:hover {
    color: #fff;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

.pushmenu.pushmenu-open .push_nav > li {
    -webkit-transform: translate3d(0, 0px, 0px);
    transform: translate3d(0, 0px, 0px);
    opacity: 1;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

.pushmenu .push_nav > li {
    display: block;
    position: relative;
    -webkit-transform: translate3d(100%, 0px, 0px);
    transform: translate3d(100%, 0px, 0px);
    opacity: 0;
}

.pushmenu .push_nav > li a {
    display: block;
}

.pushmenu.pushmenu-open .push_nav > li a:hover {
    transform: translateX(-10px);
    transition: all 300ms linear;
}

.side-nav-social-icon a{
    font-size: 16px;
    display: inline-block;
    text-align: center;
    color: #fff;
    height: 30px;
    line-height: 30px;
    width: 30px;
    margin: 3px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;

}
.static-img-background {
    background-image: url(../images/slidernewimage3.jpg);
    width: 100%;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.forcarousel {
    font-size: 15px !important;
    font-family:'Open Sans', sans-serif;
    font-weight: 300;
    color: #fff;
    line-height: 20px !important;
}
p.heading1
{
    font-size: 44px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #fff;
    line-height: normal !important;
}
p.moreheading1
{
    color: #fff;
    font-size: 15px !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height:normal !important;
    letter-spacing: 1px !important;
}


a.slider-btn.btn.btn-white.btn-rounded.btn-large.btn-hvr-white.margin-10px-right
{
    border-radius: 50px !important;
    background: transparent !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
    padding: 9px 25px !important;
    line-height: 25px;
    display: inline-block;
    border: 1px solid #fff !important;
    text-transform: capitalize;
    text-align: center !important;
    width: auto;
    font-family:'Montserrat', sans-serif;
    font-weight: 600;
    transition-duration: 0.3s;
    transition: all 0.3s !important;
    transition-timing-function: ease-in-out;
}

a.slider-btn.btn.btn-white.btn-rounded.btn-large.btn-hvr-white.margin-10px-right:hover {
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    border: 1px solid transparent !important;
    transition-duration: 0.3s;
    transition: all 0.3s !important;
    transition-timing-function: ease-in-out;
}
.behance-slider .owl-theme .owl-dots .owl-dot span{
    background: none;
    border: 2px solid #4e5456;

}
.behance-slider .owl-theme .owl-dots .owl-dot.active span,
.behance-slider .owl-theme .owl-dots .owl-dot:hover span{
    background-color: #d8a62a;
}

.navbar-icon {
    text-align: center;
    margin-top: 34px;
}
.contact-button
{
    padding: 12px 25px;
    font-size: 16px;
    border: 2px solid;
    font-weight: 300;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
}
.tp-bullet {
    width: 15px;
    height: 15px;
    position: absolute;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #4f5557;
    background: transparent;
}
.tp-bullet.selected, .tp-bullet:hover {
    background: #fe563a; /* Old browsers */
    border-bottom-color: #e43a78 ;
    border-top-color: #fe563a;
    border-right-color:#e43a78 ;
    border-left-color:#fe563a ;
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;

}
/* SERVICES*/


.team-para.heading_space {
    font-size: 18px !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    padding-top: 15px;
    padding-bottom: 80px;
    color: #818181;
    margin-top: 0px;
}

.service-paragraph.bottom20 {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: #818181;
    margin-top: 20px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
.top20 {
    margin-top: 20px;
}
.process-number {
    background: #fff;
    padding: 0 5px 55px 20px;
    position: relative;
    text-align: center;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-top: 80px;
    -o-transition: all .5s ease-in;
    transition: all .5s ease-in;
}
.process-number:hover {
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    border-radius: 5px;
    color: #FFFFFF;
}


h4.font-light.bottom20 {
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #000000;
    padding-top: 0px;
    padding-bottom: 32px;
}
.process-number:hover h4.font-light.top20.bottom20 {
    color: #fff !important;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}
p.services {
    text-align: center;
    font-size: 14px;
    font-family:"Open Sans", sans-serif;
    font-weight: 300;
}
.process-number:hover .our-services
{
    color: #FFFFFF !important;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    -webkit-text-fill-color: #fff;
}
.our-services
{
    font-size: 40px;
    background: #fb5340; /* Old browsers */
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 60px;
}

/* Parallax */

.parallax1

{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Internet Exprorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    padding-top: 60px;
    padding-bottom: 60px;
}
img.parallaxie {
    margin-left: -120px;
    margin-top: -25px;
}

.parallax1 .item-titles{
    padding-top: 110px
}

h4.font-xlight.wow.fadeInUp {
    padding-bottom: 34px;
    color: #fff;
    font-size: 18px;
    font-family:"Open Sans", sans-serif;
    font-weight: 300;
}
h1.top25 {
    padding-bottom: 30px;
    color: #fff;
    font-size: 48px;
    font-family:'Montserrat', sans-serif;;
    font-weight: bold;
}
.pull-left.left-alignment {
    text-align: left;
}
p.bottom25 {
    color: #fff;
    padding-bottom: 30px;
    text-align: left;
    font-size: 18px;
    font-family:"Open Sans", sans-serif;
    font-weight: 300;
}

.btn.btn-rounded.btn-large {
    margin-bottom: 140px;

}
.btn.btn-rounded {
    border-radius: 50px;
}
.btn.btn-white {
    background: #fff;
    color: #000;
}
.btn.btn-large {

    padding: 9px 30px;
    line-height: 25px;
}
.btn {
    display: inline-block;
    border: 2px solid transparent;
    letter-spacing: .5px;
    line-height: inherit;
    border-radius: 0;
    text-transform: capitalize;
    width: auto;
    font-size: 15px;
    font-family:"Open Sans", sans-serif;
    font-weight: 500;
    transition-duration: 0.3s;
    transition: all 0.3s !important;
    transition-timing-function: ease-in-out;
}
a.btn.btn-white.btn-rounded.btn-large.btn-hvr-white.margin-10px-right:hover {
    background: #333333 ;
    color: #FFFFFF ;
    -webkit-transition: all .7s linear;
    -o-transition: all .7s linear;
    transition: all .7s linear;

}
/*Counter*/
section.counter.no-transition {
    background-color: #ffffff;
    padding-top: 120px;
    padding-bottom: 120px;
}
h2.detailcounter.blackcolor.text-center {
    font-size: 44px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding-bottom: 30px;
}
p.bottom40.text-center {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    padding-bottom: 86px;
    line-height: normal;
    color: #b2b2b2;
    font-weight: 300;
}
h3.count.text-extra-dark-gray.font-weight-100.no-margin-bottom {
    font-size: 38px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: -webkit-left;

}
p.no-margin-bottom.font-weight-400.text-medium-gray{
    padding-left: 133px;
    padding-top: 20px;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: #858585;
    text-align: -webkit-left;
}

.counter-icon {
    margin-top: -7px;
    float: left;
    font-size: 46px;
    margin-right: 25px;

}
.counter-icon i.fa{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Internet exprorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 60px;
}
.counter-icon i.fa:hover
{
    transform: translateY(-10px);
    transition: all 300ms linear;
}
/*Team*/
section#team {
    padding-top: 120px;
    padding-bottom: 120px;
}
.image {
    overflow: hidden;
}

.image, .image img {
    position: relative;
}

.image img {
    -o-transition: all .8s linear;
    -webkit-transition: all .8s linear;
    -ms-transition: all .8s linear;
    transition: all .8s linear;
    width: 100%;

}
.image:hover img {
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;

}
.item {
    text-align: center;
}

.team-box,
.team-box ul li {
    display: inline-block;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;

}
.team-box {
    position: relative;
    overflow: hidden;
    content: "";
    width: 100%;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    border: 4px solid #FFFFFF;
    max-width: 400px;

}
.team-box .social_icon{
    height: auto;
    text-align: center;
}
.team-box .team-content {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
}
.team-box .team-content h3 {
    font-weight: normal;
}
.team-box .team-content p {
    margin-bottom: 0;
}
.team-box.greycontent .team-content {
    background: #f6f6f6;
}

.overlay {
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.center-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.team-box:hover .overlay {
    opacity: 1;
    visibility: visible;
    background: linear-gradient(217deg,rgba(251, 83, 64 ,.5), rgba(250, 82, 66,.5)),
    linear-gradient(127deg, rgba(242, 73, 87,.5), rgba(230, 60, 115 ,.5));
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease ;
    -ms-transition: all .5s ease ;
    transition: all .5s ease;

}
.team-box ul li {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.team-box:hover ul li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
ul.social_icon.whitebg li a {
    background: #fff;
    border-color: #fff;
    color: #384141;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}
ul.social_icon li a {
    position:relative;
    border: 1px solid #fff;
    color: #fff;
    display:list-item;
    font-size: 16px;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease ;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
ul.social_icon li a.facebook:hover, ul.social_icon li a.facebook:focus {
    background: #3b5999;
    border-color: #3b5999;
    color: #FFFFFF;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
ul.social_icon li a.twitter:hover, ul.social_icon li a.twitter:focus {
    background: #55acee;
    border-color: #55acee;
    color: #FFFFFF;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;

}
ul.social_icon li a.linkden:hover, ul.social_icon li a.linkden:focus {
    background: #0077B5;
    border-color: #0077B5;
    color: #FFFFFF;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
ul.social_icon li a.insta:hover, ul.social_icon li a.insta:focus {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    border-color: #d6249f;
    color: #FFFFFF;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;

}
ul.social_icon li a:hover, ul.social_icon li a:focus {
    background: #0084ff;
    border-color: #0084ff;
    color: #fff;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;

}
a {
    -webkit-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    transition: all .5s ease-in;
}
a, a:hover, a:focus {
    outline: none;
    text-decoration: none;
}
a {
    color: inherit;
}


h3.team {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding-top: 40px;
    color: #333333;
}
p.bottom50 {
    text-align: center;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    padding-top: 5px;
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -ms-background-clip:text;
    -webkit-text-fill-color: transparent;

}


h3.team {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding-top: 50px;
    color: #333333;
    font-weight: 600;
}
p.bottom50 {
    text-align: center;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    padding-top: 10px;
    font-weight: 600;
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
/* ----- Team Ends ----- */

/*Testimonial Start*/

.testimonial
{
    background-image:url("../images/testimonialsection.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 120px;
    width: 100%;
}
.roundedimage
{
    height: 100px;
    max-width: 100px;
    float: left;
    width: 100px !important;

}
.testimonial-text {
    color: #fff;
    margin-left: 25px;
    text-align: left;
}
h1.testimonial-member-name {
    padding-bottom: 20px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    margin-left: 110px;
}
p.testimonial-member-desc {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    line-height: normal;
    margin-bottom: 0px;
    margin-left: 110px;
    margin-right: 20px;
    font-weight: 300;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    width: 10px;
    background: #fff;
    height: 10px;

}
.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0px 6px;
    background: #869791;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 100px;
}
/*Testimonial Ends*/


/*Work Portfolio Starts*/
section#work {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #ffffff;
}
/*Cube Portfolio*/
.cbp-l-filters-button {
    margin-bottom: 30px !important;
    text-align: center;
    margin-top: 30px !important;
}
.cbp-l-filters-buttonCenter .cbp-filter-item {
    border: none;
    margin: 0 0px 10px 0px;
    padding: 0 0px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    margin-bottom: 65px;
}
.cbp-l-grid-mosaic-flat .cbp-caption-activeWrap
{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */

}

.cbp-l-filters-buttonCenter .cbp-filter-item:hover
{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;


}
.cbp-l-filters-buttonCenter .cbp-filter-item.cbp-filter-item-active {
    color: #333333;
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
span.line {
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 15px;
    font-weight: 600;
}
.cbp-l-loadMore-bgbutton .cbp-l-loadMore-link {
    color: #FFFFFF !important;
    display: inline-block;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 500;
    text-decoration: none;
    padding: 9px 30px;
    margin-top: 40px;
    box-shadow: none;
    border-radius: 50px;
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    border: 1px solid transparent !important;
    letter-spacing: .5px;
    text-transform: capitalize;
    line-height: 25px;
}
.cbp-l-loadMore-bgbutton .cbp-l-loadMore-link:hover
{
    background:#333333 !important;
    color: #FFFFFF;
    -webkit-transition: all .3s linear !important;
    -o-transition: all .3s linear !important;
    transition: all .3s linear;
}
h1.text-medium.margin-10px-bottom {
    font-size: 44px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding-bottom: 20px;
}
p.area-title.text-capitalize.margin-10px-bottom {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    color: #818181;
    font-weight: 300;
    padding-bottom: 60px;
}


/*VIDEO PARALLAX SECTION*/

section.video-section.video-parallax.no-transition
{
    background-image: url(../images/videoparallax.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 120px;
    -webkit-background-size: cover;
}
p.text-medium.text-dark-gray.margin-20px-bottom {
    color: #ffffff;
    font-size: 23px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}
h1.text-white.font-weight-500 {
    font-size: 60px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-bottom: 65px;
}
.center-col {
    float: none;
    margin-left: auto;
    margin-right: auto;
}
.btn.btn-extra-large {
    font-size: 18px;
    line-height: 2px;
    color: #FFFFFF;
}
.btn {
    letter-spacing: .5px;
    text-transform: capitalize;
    width: auto;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    transition-duration: 0.3s;
    transition: all 0.3s !important;
    transition-timing-function: ease-in-out;
}
i.fa.fa-play-circle {
    font-size: 55px;
    margin-right: 10px;
    display: inline;
    vertical-align: middle;
    margin-top: -10px;
}
.btn.btn-extra-large:hover i.fa.fa-play-circle
{
    display: initial;
    background: #fe563a !important;
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%)!important;
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important;
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important;
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 )!important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
i.fa.fa-play-circle:hover
{
    display: initial;
    background: #fe563a;
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%);
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
/*Pricing table css start */
* {
    box-sizing: border-box;
}
.price-hide-sm {
   padding-bottom: 70px;
}

.price {
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    box-shadow: 0 5px 9px 0 rgba(0,0,0,0.1)
}

.price .table-header {
    background-color: #eee;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}
h1.pricing_rate  {
    font-size: 36px;
    font-family: 'Montserrat', sans-serif ;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
}
h1.pricing_rate .zero  {
    font-size: 25px;
    font-family: 'Montserrat', sans-serif ;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
}
h5.month {
    font-size: 15px;
    font-family:'Open Sans', sans-serif;
    font-weight: 600;
}
.price li {
    padding: 10px;
    text-align: center;
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    color: #4f4f4f;
}
.button {
    display: inline-block;
    background-color: #333333;
    border: 1px solid transparent;
    color: #FFFFFF;
    padding: 9px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: .5px;
    text-transform: capitalize;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
li.grey {
    margin-top: 40px;
    margin-bottom: 40px;
}
.button:hover {
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%, #e43a78 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe563a', endColorstr='#e43a78', GradientType=1); /* IE6-9 */
    border: 1px solid transparent !important;
    color: #FFFFFF;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.bg-color-text
{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    border: 1px solid transparent !important;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    color: #FFFFFF !important;
    margin-top: 2px;
}
.bg-color-text p
{
    color: #FFFFFF !important;
    padding-top: 30px;
    font-size: 18px;
    font-weight: 600;
    font-family:'Montserrat', sans-serif; ;
}
.button.bg-color-text:hover
{
    background: #333333 !important;
    color: #FFFFFF;
    border: 1px solid transparent;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.li-height
{
    margin-top: -45px;
}
/*Pricing table Css End */

/*START BLOG CSS */

.verticle-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.blog-image {
   border: 10px solid #FFFFFF;
   -webkit- box-shadow: 0 2px 12px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.2);
}
.blog-image > img {
   width: 100%;
}
.blog-box p {
   color: #a0a0a0;
}
.blog-box .heading-title {
   margin-bottom: 40px;
}


 /* Blog Detail Css Start*/
.blog-cover {
    background: url("../images/blog-header.jpg")!important;
    background-size: cover;
    background: no-repeat;
    background-position: top center !important;
    padding-bottom: 120px;
    width: 100%;
}
h1.text-capitalize.alt-font.text-white.margin-20px-bottom.font-weight-700 {
    padding-top: 195px;
}
section#ourblog {
    background:#f6f6f6;
    padding-bottom: 120px;
    padding-top: 20px;
}
.alt-font {
    font-family: 'Montserrat', sans-serif;
}

.top40 {
    margin-top: 40px;
    font-weight: 400;
}
h3.top40.darkcolor.bottom25
{
    font-size: 25px;
    text-transform: capitalize;
    color: #333333;
    font-family:'Montserrat', sans-serif;
    font-weight: 800;
}
.bottom25 {
    margin-bottom: 25px;
}
p.text-white.margin-5px-bottom {
    padding-top: 10px;
    padding-bottom: 10px;
}
.text-white {
    color: #FFF;
}
.margin-5px-bottom {
    margin-bottom: 5px;
}
.ourblog .blog_desc{
    position: relative;
}
.ourblog  .desc_tags {
    position: absolute;
    top: 15px;
    left: 15px;
}

.category li {
    border-bottom: 1px solid #e8ecf0;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.category li a {
    color: #666666;
}
.category li a:hover, .category li a:focus, .widget .media-body > a:hover {
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 );
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;

} .blog_author .photo >
  .widget .media-body > a, .pager li > a, .readmore, .button, .updates .latest_updates .update_text p {
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
}

.widget_search .form-control {
    border: 1px solid #b3b6b9 !important;
    border-right: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 12px;
    height: 42px;
    position: relative;
}

.postanchor .share {
    color: #ffffff;
}
.postanchor .share {
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    height: 35px;
    left: 50%;
    line-height: 38px;
    margin-left: -17px;
    margin-top: -17px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 35px;
    z-index: 1;
}

.category li a {
    color: #666666;
}
.blog_item .swiper-container{
    height: 440px;
}
i.fa.fa-search {
    background: #fe563a;
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%);
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.widget_search .input-group-addon {
    background: transparent;
    border: 1px solid #b3b6b9;
    border-left: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    cursor: pointer;
    font-size: 19px;
    padding: 0 12px;
}
form.widget_search {
    margin-bottom: 60px;
}
h4.text-capitalize.darkcolor.bottom15{
    text-transform: capitalize;
    font-family:'Montserrat', sans-serif;
    font-weight: 700;
    color: #333333;
    font-size: 22px;
    margin-bottom: 20px;
}


.widget .media-body > a {
    color: #515A5F;
}
.widget .media-body > a, .pager li > a, .readmore,.updates .latest_updates .update_text p {
    font-size: 13px;
    color: #515A5F;
    font-weight: bold;
}
ul.web_tags li, .pager, ul.social li, ul.social_simple li {
    display: inline-block;
}
.blog_item .blog_slides .swiper-pagination{
    text-align: center;
    bottom: 30px !important;
}
.blog_author.borderleft{
    border-left: 1px solid #dadada;
    padding-left: 11px;
}
.blog_author .photo {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 16px;
    display: inline-block;
    padding-bottom: 0;
}
.blog_author.flat .metas{
    border-left: 1px solid #dadada;
    padding-left: 11px;
    display: inline-block;
    padding-bottom: 0;
}
.blog_author .authorname{
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 0px;
    color: #515A5F;
}
.blog_author.flat .metas{
    margin-left: 6px;
    color: #515A5F;
}
.blog_author .photo{
    height: 36px;
    width: 36px;
    -webkit-border-radius:100%;
    border-radius:100%;
}
.blog_author.flat .photo, .blog_author.flat .authorname, .blog_author.flat .metas {
    display: inline-block;
    padding-bottom: 0;
}
.blog_author .photo > img{
    -webkit-border-radius:100%;
    border-radius:100%;
}
.blog_author .authorname {
    padding-left: 14px;
    display: inline-block;
}

.blog_author .authorname a {
    display: block;
    font-weight: bold;
    line-height: 8px;
}
.image1, .image1 img {
    position: relative;
}
.image1 img {
    width: 100%;
    display: block;
}
.blog_item:hover h3 a{
    background: #fe563a !important; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 );
   -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;

}
.readmore:hover{
    color: #fff;

}
.blog_author .authorname span{
    font-size: 11px
}
.blog_author .metas {
    margin: 10px 0 0;
}
.blog_author .metas > i{
    margin-right: 5px;
    font-size: 16px;
}
.postanchor{
    border-bottom: 1px solid #dadada;
    padding-top: 20px;
    position: relative;
}
.postanchor p{
    margin-bottom: 20px;
}
.postanchor a {
    color: #515A5F;
    font-weight: bold;
    text-transform: uppercase;
}
.postanchor i{
    font-size: 20px;
}
.postanchor .previous  a i{
    margin-right: 5px;
}
.postanchor .nextpost  a i{
    margin-left: 5px;
}
h4.text-capitalize.darkcolor.heading.bottom40 {
    font-size: 25px;
    text-transform: capitalize;
    color: #333333;
    font-family:'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 40px;
    margin-left: 5px;
}
.eny_profile {
    border-bottom: 1px solid #e4e4e4;
}

.eny_profile {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 30px;
    position: relative;
}

.eny_profile .profile_photo, .eny_profile .profile_text {
    display: table-cell;
    vertical-align: top;
}
.eny_profile .profile_text {
    padding-left: 20px;
}
.darkcolor {
    color: #333333 !important;
    font-size: 16px;
    font-weight: bold;
}
.top30
{
    margin-top: 30px;
    margin-bottom: 20px;
}

.comments{
     margin-top: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    word-spacing: 3px;
    font-family: 'Open Sans',sans-serif;
}
.bottom30 {
    margin-bottom: 30px;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    color: #797877;
}
.heading_space {
    font-size: 15px !important;
    font-weight: 300;
    line-height: 20px;
    color: #797877;
    margin-top: 60px;
}
a.button.dark.top10 {
    margin-bottom: 40px;
    color: #FFFFFF !important;
}
.pager li>a, .pager li>span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
}
.pager li>a:hover
{
    background: #fe563a !important; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 );
    color: #FFFFFF !important;
}
.postanchor .share {
    color: #ffffff !important;
    cursor: pointer;
    display: inline-block;
    height: 35px;
    left: 50%;
    line-height: 38px;
    margin-left: -17px;
    margin-top: -17px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 35px;
    z-index:1;
}
ul.web_tags {
    margin-left: -8px;
}
ul.web_tags li a {
    color: #333333;
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 8px;
    padding: 6px 0px 0px 10px;
    position: relative;
    height: 20px;
}
ul.social li a:before, nav.navbar.navbar-default, nav.navbar.bootsnav ul.nav > li > a:before, .navbar-brand > img, nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li > a:before, .overlay-menu, .overlay-menu ul.full-nav li a:before, .menu-icon span, .menu-icon span:before, .menu-icon span:after, .tp-bullet, .swiper-pagination-bullet, .swiper-button-next, .swiper-button-prev, .cbp-l-filters .cbp-filter-item span:after, .icon_wrap .icon_box, .icon_wrap .icon_box hr, .back-top, .back-top-visible, a, .pager li > a:before, .button:before, .ourteam .social_vertical, .overlay, .pricing_item {
    -moz-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
}
ul.web_tags li a::before {
    background-color: inherit;
    content: "";
    height: 10px;
    position: absolute;
    right: -5px;
    top: 5px;
    -webkit-transform: skew(-45deg, 45deg);
    -moz-transform: skew(-45deg, 45deg);
    -ms-transform: skew(-45deg, 45deg);
    -o-transform: skew(-45deg, 45deg);
    transform: skew(-45deg, 45deg);
    width: 10px;
    z-index: -1;
}
.blog_item
{
    margin-top: 60px;
}
.share_purpose {
    background: #ffd600;
    left: 50%;
    position: absolute;
    bottom: -20px;
    display: none;
    -webkit-transform: translatex(-50%);
    -moz-transform: translatex(-50%);
    -ms-transform: translatex(-50%);
    -o-transform: translatex(-50%);
    transform: translatex(-50%);
}
.share_purpose::before {
    background: #ffd600;
    content: "";
    display: block;
    height: 11px;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    top: -6px;
    width: 12px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.share_purpose .social_simple li:first-child a{
    border: none;
}
.share_purpose .social_simple li a{
    padding:5px;
    margin: 0;
    height: 36px;
    line-height: 32px;
    width: 34px;
    text-align: center;
    color: #fff;
    border-left: 1px solid #f3ce1b;
}
.share_purpose .social_simple li a:hover{
    color: #515A5F;
}
.readmore {
    display: inline-block;
}

/*Contact Form Css Start */
.contact100-form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact100-form-title {
    color: #333333;
    padding-bottom: 32px;
    font-size: 44px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.wrap-5555contact100 {
    margin-top: 50px;
}
.wrap-input100 {
    width: 100%;
    position: relative;
    margin-bottom: 35px;
}

.rs1-wrap-input100 {
    width: calc((100% - 30px) / 2);
}

.label-input100 {

    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

.input100 {
    display: block;
    width: 100%;
    border-radius: 2px;
    font-size: 15px;
    line-height: 1.2;
    padding: 0 12px;
    margin-top: 10px;
}
input.input100 {
    height: 48px;
}

textarea.input100 {
    min-height: 162px;
    padding-top: 19px;
    padding-bottom: 13px;
}
.contact100-more {
    display: block;
    max-width: 960px;
    font-size: 20px;
    color: #fff;
    line-height: 1.4;
    text-align: center;
    padding: 40px 0 10px 0;
}
.btn-send
{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Internet Explorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    border: 1px solid transparent !important;
    color: #FFFFFF !important;
    padding: 9px 40px;
    text-align: center;
    text-decoration: none;
    width: auto;
    font-size: 15px;
    border-radius: 50px;
    font-family: 'Open Sans',sans-serif;
    letter-spacing: .5px;
    line-height: 25px;
    text-transform: capitalize;
    display: inline-block;
    font-weight: 500;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.btn-send:hover
{
    color: #FFFFFF;
    background: #333333 !important;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.contact-section-widht
{
    padding: 0px 62px;
}
.paad-top-p
{
    font-size: 14px;
    font-family: 'Open Sans',sans-serif;
    font-weight: 300;
    color: #333333;
}
.paad-right
{
    margin-top: 75px;
    font-size: 14px;
    font-family: 'Open Sans' , sans-serif;
    font-weight: 400;
    color: #333333;
    text-align: justify;
    margin-left: -40px;
}
/*icons*/
.icon
{
    font-size: 40px;
margin-left: 20px;
}
.facontact:hover{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%, #e43a78 100%);
    background: linear-gradient(to right, #fe563a 0%, #e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    -webkit-background-clip: text;
    -webkit-text-fill-color:transparent;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.nopads:hover .fa{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%, #e43a78 100%);
    background: linear-gradient(to right, #fe563a 0%, #e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    -webkit-background-clip: text;
    -webkit-text-fill-color:transparent;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.p-text-form
{
    font-family: 'Open Sans',sans-serif;
    color: #959595;
}
.icon1 {
    font-size: 40px;
    margin-left: 25px;
}
.mr-top-icon-1
{
    margin-top: 40px;
    margin-left: -40px;
}
.mr-top-icon-2
{
    margin-top: 40px;
    margin-left: -36px;
}
.mr-top-icon-3
{
    margin-top: 40px;
    margin-left: -40px;
}
.icon-text-color
{   color: #515a5f;
    font-size: 14px;
    font-family:'Open Sans',sans-serif;
    font-weight: bold;
    margin-bottom: 25px;
}
/*Contact Css End*/

/*Start Footer Css*/
.bg-extra-dark-gray {
    background-color: #f6f6f6;
    padding-top: 120px;
    padding-bottom: 120px;
}
.medium-icon1 a {
    font-size: 20px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    display: inline-block;
    margin: 2px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 50px;
    color: #2a2a2a;
}
footer .copyrights{
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    color: #888888;
    margin-top: 25px;
}
.facebook1-bg-hvr:hover {
    background: #4267B2 ;
    color: #fff ;
    border: 1px solid #4267B2 ;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.twitter1-bg-hvr:hover {
    background: #1DA1F2 ;
    color: #fff ;
    border: 1px solid #1DA1F2 ;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.pinterest1-bg-hvr:hover {
    background: #BD081C ;
    color: #fff ;
    border: 1px solid #BD081C;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.google1-bg-hvr:hover {
    background: #DB4437 !important;
    color: #fff !important;
    border: 1px solid #DB4437 !important;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.linkedin1-bg-hvr:hover{
    background: #0077B5 !important;
    border: 1px solid #0077B5 !important;
    color: #FFFFFF !important;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;

}
.instagram1-bg-hvr:hover {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #FFFFFF;
    border: none !important;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.envelope1-bg-hvr:hover
{
    background: rgba(255,25,25,1);
    color: #FFFFFF;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
} /*Footer Css End*/

/*SECOND INDEX PAGE */

.center-logo {
    left: 50%;
    position: absolute;
    margin-top: -35px;
    top: 50%;
    text-align: center;
    transform: translateX(-50%);
    z-index: 1;
    max-width: 20%;
}
.header-appear .center-logo
{
    margin-top: -30px;
}
.medium-icon.side-nav-social-icon.list-inline.push-button {
    position: absolute;
    bottom: 30px;
    color: #FFFFFF;
}

/* INDEX THREE STYLING */
.bottom-nav nav .navbar-index3newnav{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
nav.index3-push.pushmenu {
    background: #fff !important;
}
.index3-push .index3-sidenav  > li > a
{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 25px;
}
.index3-push.pushmenu .push_nav > li > a > span
{
     color: #333333;
    -webkit-text-fill-color: #333333;
    font-size: 22px;
    font-weight: 900;
}
.header-appear .header-social-icon2 a
{
    color: #333333 !important;
}
.header-appear .header-social-icon2 a:hover
{
    color: #FFFFFF !important;
}

.index3-socialicon.side-nav-social-icon a
{
    color: #333333;
    border: 1px solid;
}
.index3-socialicon.side-nav-social-icon a:hover
{
    color: #FFFFFF;
}
.index3-text.text-white {
    color: #333333;
}
.bottom-nav.side-nav .menu_bars.active.right span
{
  background: #333333;
}
header nav.navbar-default, nav.navbar.bootsnav {
    border-bottom: 0;
}
.bottom-nav .navbar-fixed-top {
    position: absolute;
    top: auto;
    bottom: 0px;
    margin: 0;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}
.header-appear .menu_bars.color-change span
{
    background:#333333!important;
}


.header-appear .navbar-index3nav
{
    background: #FFFFFF;
    transition: background 5s ease;
    padding-top: 7px;
    padding-bottom: 7px;
    min-height: 70px;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

header.header-appear nav .navbar-nav.navbar-index3newnav > li > a
{
    color: #333333 !important;
}


nav.navbar.bootsnav.nav-white-list ul.nav > li a:hover {
    color: #fe5639 !important;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.nav_line li.active a:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    visibility: visible;
    opacity: 1;
}

.nav_line li a:before {
    position: absolute;
    content: '';
    width: 100%;
    display: table;
    height: 4px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    bottom: -5px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    visibility: hidden;
    opacity: 0;

}
.bottom-nav .menu_bars{
    position: absolute;
    top: auto;
    bottom: 25px;
}
.bottom-nav .header-appear .menu_bars{
    top: auto;
}
.bottom-nav .pushmenu-fixed.menu_bars{
    position:fixed;
    top: 22px;
    bottom: auto;
}

.bottom-nav .navbar-bottom-top .menu_bars {position: fixed !important;
    top: 22px !important;}

.navbar-bottom-top {
    position: fixed !important;
    top: 0 !important;
    bottom: auto !important;
    margin: auto !important;
}
header nav.navbar {
    border-radius: 0;
    padding: 0;
}
.navbar-fixed-bottom, .navbar-fixed-top {
    z-index: 99;
}
.navbar-fixed-top.header-appear
{
    top: 0;
    bottom: auto;
}
.index3 .tp-bullets
{
    display: none;
}
/* Index 3 styling end */

/* Index 4 Styling Start */
.index4-nav .gradient-bar
{
    position:relative;
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    color: #FFFFFF;
    margin-bottom: 0px!important;
}
.header-appear .gradient-bar {
    background: #333333;
    transition: background 2s ease;
    padding-top: 7px;
    padding-bottom: 7px;
    min-height: 70px;
    transform: translateZ(0);
    -webkit-transition: all .9s linear;
    -o-transition: all .9s linear;
    transition: all .9s linear;
    position: fixed;
    z-index: 99;
}
.index4-nav .menu_bars
{
    top: 25px !important;
    position:absolute;}

 .index4-nav .header-appear .menu_bars
 {
     position:fixed;
 }

nav.index4-push.pushmenu {
    background: #fff !important;
}
.index4-push.pushmenu .push_nav > li > a > span
{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%);
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: 22px;
    font-weight: 900;
}
.index4-push .index4-sidenav > li > a {

    color: #333333 !important;
    font-weight: 600;
    font-size: 22px;
}
.header-appear .menu_bars.index4 span
{
    color: #FFFFFF;
}
.index4-nav.side-nav .menu_bars.active.right span {
    background: #333333;
}

.header-social-icon1 a {
    font-size: 16px;
    display: inline-block;
    text-align: center;
    color: #fff;
    height: 30px;
    line-height: 30px;
    width: 30px;
    margin: 5px;
    border-radius: 50px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -ms-transition-duration: .5s;
    -o-transition-duration: .5s;
    text-decoration: none;
    line-height: 30px;
}
.header-appear nav.navbar.navbar-default.index4-nav.bootsnav.navbar-fixed-top.nav-white.header-light.bg-transparent.nav-box-width.white-link.on.no-full
{
    background: #fe563a; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%); /* Internet exprorer */
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    transition: background 2s ease;
    padding-top: 7px;
    padding-bottom: 7px;
    min-height: 70px;
    transform: translateZ(0);
    -webkit-transition: all .9s linear;
    -o-transition: all .9s linear;
    transition: all .9s linear;
}
.nav_line1 li.active a:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    visibility: visible;
    opacity: 1;
}

nav.navbar.bootsnav.white-link ul.nav.gradient-colors > li a:before
{
    position: absolute;
    content: '';
    width: 100%;
    display: table;
    height: 4px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    bottom: -5px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    color: #FFFFFF !important;
    visibility: hidden;
    opacity: 0;

}
nav.navbar.bootsnav.white-link ul.nav.gradient-colors > li a:hover
{
    color: #FFFFFF !important;
}

.header-appear .header-social-icon1
{
    margin-top: 10px;
}
.header-appear nav .navbar-s {
    margin-top: 0px;
}
.header-social-icon1 {
    margin-top: 19px;
}
header nav .navbar-s> li > a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.015em;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF !important;
    margin:20px 22px;
    padding: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    float: left;
}
nav .navbar-s{
    margin-top: 10px;
    margin-left: 0px;
}

.index4-nav nav .navbar-s{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.f-left li
{
    float: left;
}
.pushmenu-right.pushmenu-open {
    right: 0;
}

.pushmenu-right {
    right: -600px;
}
.push-bottom {
    position: absolute;
    bottom: 30px;
    color: #FFFFFF;
   margin-left: 2px;
}

.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent !important;
}
a.slider-btn1.btn.btn-white.btn-rounded.btn-large.btn-hvr-white.margin-10px-right
{
    color: #FFFFFF !important;
    background: #fe563a !important; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%)!important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%)!important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important;
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 ); /* IE6-9 */
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
a.slider-btn1.btn.btn-white.btn-rounded.btn-large.btn-hvr-white.margin-10px-right:hover
{
    color: #333333 !important;
    background: #FFFFFF !important;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;

}
.parallax2
{
    background: #333333;
}
 a.parallax2-btn:hover {
    background: #fe563a !important; /* Old browsers */
    background: -moz-linear-gradient(left, #fe563a 0%, #e43a78 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fe563a 0%,#e43a78 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(left, #fe563a 0%,#e43a78 100%)!important;
    background: linear-gradient(to right, #fe563a 0%,#e43a78 100%)!important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe563a', endColorstr='#e43a78',GradientType=1 )!important;
    color: #FFFFFF !important;
    -webkit-transition: all .7s linear;
    -o-transition: all .7s linear;
    transition: all .7s linear;

}
.parallax2-btn.btn
{
    border: none !important;
}
/* Index 4 Styling End */

/*MEDIA QUERIES */

@media (max-width: 768px) {
    .center-logo {
        left: 20%;
    }
    .bottom-logo
    {
        margin-top: -30px;
    }
    .gradient-logo
    {
        margin-top: -18px;
    }
    .index-4#menu_bars {
        right: 1%;
        margin-top: -15px;
    }
    .header-appear .bottom-logo
    {
        margin-top: 0px;
    }
    .menu_bars {
        top: 24px;
    }
    .index3-socialicon.side-nav-social-icon a {
        margin-left: 10px;
    }
    header a.logo img {
        margin-top: 30px;
    }

    .header-appear a.logo img {
        margin-top: 15px;
    }

    .navbar-fixed-top {
        top: 0px;
    }

    .pushmenu.pushmenu-right {
        padding: 0px 0px 0px 60px;
    }

    .pushmenu {
        width: 300px;
    }
    .pushmenu .push_nav
    {
        margin-left: -30px;
    }
    .pushmenu .push-logo
    {
        margin-left: -30px;
    }
    p.text-white.text-small {
        margin-top: 0px;
        margin-left: 15px;
    }

    .push-bottom {
        position: absolute;
        bottom: 20px;
        color: #FFFFFF;
        margin-left: -43px;
    }
    .header-social-icon a {
        display: none;
    }

     p.heading1
    {
        font-size: 25px !important;
    }
    p.moreheading1
    {
        font-size: 10px !important;
    }
   
    .bottom20 {
        font-size: 17px;
        margin-top: 10px;
    }
    .padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .process-number {
        margin-top: 45px;
    }

    img.parallaxie {
        margin-left: -80px !important;
        margin-top: 15px !important;
        width: 100%;
        display: inline-block;
    }

    .parallax1 h4.font-xlight.wow.fadeInUp {
        text-align: center;
        font-size: 17px
    }

    .parallax1 p.bottom25 {
        text-align: center;
        font-size: 15px;
    }

    .parallax1 {
        padding-top: 80px!important;
        padding-bottom: 0px;
    }
    h1.top25 {
        font-size: 30px!important;
    }

    h2.detailcounter.blackcolor.text-center {
        font-size: 25px;
        padding-bottom: 15px;
    }

    p.bottom40.text-center {
        padding-bottom: 0px;
    }

    section.counter.no-transition {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .counter-icon i.fa {
        margin-left: 20px;
        margin-top: 60px;
    }
    p.no-margin-bottom.font-weight-400.text-medium-gray
    {
        font-size: 20px;
    }
    section#team {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    p.heading_space {
        font-size: 17px;
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .team-box {
        position: relative;
        overflow: hidden;
        content: "";
        width: 80%;
        box-shadow: 0px 2px 2px 2px #eeeeee;
        border: 4px solid #FFFFFF;
        max-width: 400px;
    }

    .roundedimage {
        margin-left:0px !important;
    }

    h1.testimonial-member-name {
        margin-left: 0px;
        font-size: 16px;
        text-align: center;
    }

    p.bottom40.text-center {
        font-size: 15px !important;
    }

    p.testimonial-member-desc {
        font-size: 15px !important;
        font-weight: 300;
        text-align: center;
        margin-left: 5px;
    }

    p.area-title.text-capitalize.margin-10px-bottom {
        font-size: 17px;
        padding-bottom: 10px;
    }
    .testimonial {
        min-height: 100px;
        background-image: url(../images/testimonialsection.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        padding-top: 80px;
        padding-bottom: 80px;
        background-attachment:scroll;
        background-position: center;
    }

    section#work {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    h1.text-medium.margin-10px-bottom {
        font-size: 25px;
    }
    .cbp-l-filters-buttonCenter .cbp-filter-item {
        font-size: 15px;
    }
    .cbp-l-filters-buttonCenter {
        margin-bottom: 15px;
    }
    p.text-medium.text-dark-gray.margin-20px-bottom {
        font-size: 15px;

    }
    .cbp-l-filters-buttonCenter .cbp-filter-item {

        margin-bottom: -3px;
    }
    .cbp-l-caption-alignCenter .cbp-l-caption-body {
        display: none;
    }

    h1.text-white.font-weight-500 {
        font-size: 30px;
        margin-bottom: 45px;
    }

    section.parallax.video-parallax.no-transition {
        background-image: url(../images/videoparallax.jpg);
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .text-dummy {
        padding-bottom: 0px;
        font-size: 15px;
    }
    .text-price-plan
    {
        font-size: 25px;
    }
    .price {
        margin: 40px;
    }
    .price li {
        padding: 5px;
    }
    .li-height {
        margin-top: 0px;
    }

 

    .contact100-form-title {
        text-align: center;
        font-size: 25px !important;
    }
    .text-alignment {
        text-align: center;
    }
    .label-input100 {
        margin-left: 10px;
    }
    .rs1-wrap-input100 {
        width: 100%;
        padding-left: 4px;
        padding-right: 4px;
    }
    .wrap-input100 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .btn-center {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .paad-right {
        text-align: center;
        margin-left: 0px;
    }
    .mr-top-icon-1
    {
        text-align: center;
    }
    .mr-top-icon-2
    {
        text-align: center;
    }
    .mr-top-icon-3
    {
        text-align: center;
    }
    .medium-icon1 a
    {
        margin: 0px;
        font-size: 20px;
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
    .blog-cover
    {
        background-position: center center;
    }
    h1.text-capitalize.alt-font.text-white.margin-20px-bottom.font-weight-700 {

        margin-left: 0px!important;
    }

    p.text-white.margin-5px-bottom {

        margin-left: 0px!important;
    }
    .mr-top-icon-3,.icon, .mr-top-icon-2,.mr-top-icon-1,.icon1 {
     margin-left:0px !important;
    }
}
@media (max-width: 991px) {

    .gradient-logo
    {
        margin-top: -10px;
    }
    .center-logo {
        left: 20%;
    }
    .bottom-logo
    {
        margin-top: -30px;
    }
    .index-4#menu_bars {
        right: 2%;
        margin-top: -10px;
    }
    .header-appear .gradient-logo
    {
        margin-top: 0px;
    }
    .header-appear .index-4#menu_bars
    {
        margin-top: -2px;
    }
    .header-appear .bottom-logo
    {
        margin-top: 0px;
    }
    .index3-socialicon.side-nav-social-icon a {
        margin-left: 10px;
    }
    .tp-bullet
    {
        display: none !important;
    }
    .header-social-icon a {
        display: none;
    }

    p.bottom40.text-center {
        font-size: 15px;
    }
    img.parallaxie
    {
        width: 100%;
        margin-top: 50%;
    }

    .counter-icon
    {
        float: none;
    }
    h3.count.text-extra-dark-gray.font-weight-100.no-margin-bottom
    {
        text-align: center !important;
    }
    p.no-margin-bottom.font-weight-400.text-medium-gray
    {
        text-align: center !important;
        padding-left: 0px !important;
    }
    .cbp-l-caption-alignCenter .cbp-l-caption-body
    {
        display: none;
    }
   
    .price li {
        padding: 5px;
    }
    .text-dummy {
        padding-bottom: 0px;
        font-size: 15px;
    }
    .li-height {
        margin-top: 0px;
    }

    
    .blog-cover {
        background-position: center center!important;
    }
    
   
    .contact100-form-title {
        text-align: center;
        font-size: 44px;
    }
    .text-alignment {
        text-align: center;
    }
    .label-input100 {
        margin-left: 10px;
    }
    .rs1-wrap-input100 {
        width: 100%;
        padding-left: 4px;
        padding-right: 4px;
    }
    .wrap-input100 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .btn-center {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .paad-right {
        text-align: center;
        margin-left: 0px;
    }
    .mr-top-icon-1
    {
        text-align: center;
    }
    .mr-top-icon-2
    {
        text-align: center;
    }
    .mr-top-icon-3
    {
        text-align: center;
    }
    .medium-icon1 a
    {
        margin: 0px;
        font-size: 20px;
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}
@media (max-width: 991px) {
    .header-social-icon1 {
        display: none;
    }

    .tp-bullet {
        display: none !important;
    }

    h4.font-xlight.wow.fadeInUp {
        padding-right: 20px;
    }

    .bottom25 {
        font-size: 15px;
    }

    .roundedimage {
        float: none;
        display: inline-block !important;
        margin-left: 115px;
        width: 100px !important;
    }

    .testimonial-text {
        text-align: center;
        margin-left: -5px;
    }

    h1.testimonial-member-name {
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .parallax1 .item-titles {
        padding: 0;
    }

    img.parallaxie {
        margin-left: -140px;
        margin-top: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .parallax1 h4.font-xlight.wow.fadeInUp {
        text-align: center;
    }

    .parallax1 {
        padding-top: 20px;
        text-align: center;
    }

    .parallax1 p.bottom25 {
        text-align: center;
    }

    section.parallax.video-parallax.no-transition {
        background-image: url(../images/videoparallax.jpg);
        background-attachment: scroll !important;
        background-size: cover;
        background-repeat: no-repeat;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    h1.text-capitalize.alt-font.text-white.margin-20px-bottom.font-weight-700 {

        margin-left: -65px;
    }

    p.text-white.margin-5px-bottom {

        margin-left: -65px;
    }
}

@media (max-width: 992px) {
    .roundedimage {
        float: none;
        display: inline-block !important;
        margin-left: 115px;
        width: 100px !important;
    }

    h1.testimonial-member-name {
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .testimonial-text {
        text-align: center;
        margin-left: -5px;
    }

    section.parallax.video-parallax.no-transition {
        background-image: url(../images/videoparallax.jpg);
        background-attachment: scroll !important;
        background-size: cover;
        background-repeat: no-repeat;
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .blog-cover {
        background-position: center center !important;
    }
    h1.text-capitalize.alt-font.text-white.margin-20px-bottom.font-weight-700 {

        margin-left: 0px;
    }

    p.text-white.margin-5px-bottom {

        margin-left: 0px;
    }
}
@media (max-width: 999px) {
    h1.text-capitalize.alt-font.text-white.margin-20px-bottom.font-weight-700 {

        margin-left: 0px;
    }

    p.text-white.margin-5px-bottom {

        margin-left: 0px;
    }
}
@media (max-width: 1030px) {

    nav .navbar-s {
        margin-left: 15px !important;
    }

}


@media (min-width: 769px) and (max-width: 1070px) {

    .header-social-icon1 {
        margin-right: 34px !important;

    }

    header a.logo img
    {
        margin-top: 25px;
    }
    nav .navbar-s {
        margin-left: -10px !important;
    }
    .index-4#menu_bars
    {
        right: 1%;
    }
    .right.menu_bars
    {
        right: 1%;
    }
    .header-social-icon
    {
        margin-left: -30px;
    }
    .parallax1 .btn.btn-rounded.btn-large {
        margin-bottom: 0;
    }
    h1.top25 {
        font-size: 40px !important;
    }

    h4.font-xlight.wow.fadeInUp {
        padding-right: 69px !important;
    }
    .blog-cover {
        background-position: center center !important;
    }
    h1.text-capitalize.alt-font.text-white.margin-20px-bottom.font-weight-700 {

        margin-left: -20px;
    }

    p.text-white.margin-5px-bottom {

        margin-left: -20px;
    }
}

@media (min-width: 1000px) and (max-width: 1100px) {

    .header-social-icon1 {
         margin-right: 13px;
    }
    nav .navbar-s {
        margin-left: 0px ;
    }
    header a.logo img {
        margin-top: 25px !important;
    }
    .index-4#menu_bars
    {
        right: 1%;
    }
    .right.menu_bars
    {
        right: 1%;
    }
    .tp-bullet {
        display: none !important;
    }

    img.parallaxie {
        margin-left: -140px;
        margin-top: -50px;
    }

    h4.font-xlight.wow.fadeInUp {
        padding-right: 65px;
    }

    h1.top25 {
        font-size: 40px;
    }

    p.bottom25 {
        font-size: 15px;
    }
    .blog-cover {
        background-position: center center !important;
    }
    h1.text-capitalize.alt-font.text-white.margin-20px-bottom.font-weight-700 {

        margin-left: 20px!important;
    }

    p.text-white.margin-5px-bottom {

        margin-left: 20px !important;
    }
}
@media (max-width: 1199px) {

    header nav .navbar-nav > li > a {
        margin: 20px 15px;
    }

    .header-social-icon a {
        font-size: 12px;
    }

    .header-social-icon1 {
        margin-right: -13px;

    }

    nav .navbar-s {
        margin-left: 25px;
    }

    img.parallaxie {
        margin-left: -140px;
        margin-top: -45px;
    }

    h4.font-xlight.wow.fadeInUp {
        font-size: 17px;
    }

    h1.top25 {
        font-size: 40px;
    }

    p.no-margin-bottom.font-weight-400.text-medium-gray {
        padding-left: 89px;
    }

    .counter-icon i.fa {
        margin-left: 20px;
    }

    .roundedimage {
        margin-right: 10px;
    }

    .testimonial-text {
        float: none;
    }

    p.testimonial-member-desc {
        font-size: 13px;
    }

    .blog-cover {
        background-position: center center !important;
    }
    h1.text-capitalize.alt-font.text-white.margin-20px-bottom.font-weight-700 {

        margin-left: -60px;
    }

    p.text-white.margin-5px-bottom {

        margin-left: -60px;
    }
}
@media (min-width: 1200px) and (max-width: 1300px) {

    .index-4#menu_bars
    {
        right: 1%;
    }
    .right.menu_bars
    {
        right: 1%;
    }
    .header-social-icon1 {
        margin-right: 40px;
    }
    .blog-cover {
        background-position: center center !important;
    }
}
@media (max-width: 1315px) {

    .index-4#menu_bars
    {
        right: 1%;
    }
    .right.menu_bars
    {
        right: 1%;
    }
    .header-social-icon
    {
        margin-left: -70px;
    }

}
































@media (max-width: 1200px) {
   .heading-title > span {
      font-size: 40px;
   }
}

@media (max-width: 1024px) {
   .heading-title > span {
      font-size: 38px;
   }
   h4 {
      font-size: 17px;
   }
}

@media (max-width: 992px) {
   .container {
    width: 960px;
    max-width: 100%;
}
   .sm-text-center {
      text-align:  center;
   }
   .heading-title > span {
      font-size: 36px;
   }
   
   /*Blog Here*/
   section#ourblog1 {
       padding-top: 60px;
       padding-bottom: 60px;.
   }
   .blog-box .heading-title {
       margin-bottom: 30px;
   }
   /*Blog Ends*/
}

@media (max-width: 768px) {
   .container {
      width: 100%;
   }
}