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

1 Fonts
2 Body
3 Common Css
3.1 Reset Style
3.2 Form Inputs
3.3 Button Style
3.4 Padding Style
3.5 Margin Style
4 Header Style
5 Main Slider



-------------------------------------------------------------------*/
/*---bootstap.CSS ---*/

@import url("bootstrap.min.css");

/*---mega menu .CSS ---*/

@import url("../plugin/megamenu/css/hover-dropdown-menu.css");

/*---owl-carousal.CSS ---*/

@import url("../plugin/owl-carousel/css/owl.carousel.css");
@import url("../plugin/owl-carousel/css/owl.theme.default.css");

/*---fontawesome.CSS  font ---*/

@import url("../plugin/font-awesome/css/font-awesome.min.css");
/*
==========================
1 Fonts
==========================
*/

@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');

/*
==========================
2 Body
==========================
*/

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #626161;
    line-height: 24px;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: hidden;
    letter-spacing: 1px;
}

/*
==========================
3 Common Css
==========================
*/

/* 3.1 Reset Style */

img {
    max-width: 100%;
}
a {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
    letter-spacing: 1px;
    color: inherit;
}
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}
p,
em {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: inherit;
    letter-spacing: 1px;
	text-align: justify;
}
h1{
    position: relative;
    font-weight: 600;
    margin: 0px;
    background: none;
    line-height: 1.6em;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    text-transform: initial;
    letter-spacing: 1px;
    clear: both;
}
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: 600;
    margin: 0px;
    background: none;
    line-height: 1.6em;
    font-family: 'Raleway', sans-serif;
    color: #000;
    text-transform: initial;
    letter-spacing: 1px;
    clear: both;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul li a {
    display: inline-block;
}
.clear {
    clear: both;
}
.parallax-style {
    background-attachment: fixed;
}
.grey-background {
    background-color: #eee;
}
.colorW {
    color: #fff;
}
.colorB {
    color: #000 !important;
}
/* 3.2 Form Inputs */

input[type=text],
input[type=email],
input[type=search],
input[type=password],
input[type=number],
select {
    padding: 5px 20px;
    border: 0;
    display: inline-block;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    outline: none;
    height: 50px;
    font-size: 14px;
    color: #000;
}
textarea {
    padding: 5px 20px;
    border: 0;
    display: inline-block;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    outline: none;
    font-size: 14px;
    color: #000;
}
input[type=radio] {
    position: absolute;
    visibility: hidden;
}
input[type=checkbox] {
    position: absolute;
    visibility: hidden;
}
.box-check:before {
    display: block;
    position: absolute;
    content: "\f00c";
    border-radius: 0;
    top: 0;
    left: 1px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
    font: normal normal normal 11px/1 FontAwesome;
    opacity: 0;
}
.box-check {
    display: block;
    position: absolute;
    border: 2px solid;
    border-radius: 0;
    height: 15px;
    width: 15px;
    top: 17px;
    margin-top: -10px;
    left: 0;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}
.check {
    border: 5px solid #FFFFFF;
}
.check::before {
    display: block;
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    top: 4px;
    left: 4px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
    visibility: hidden;
}
.check {
    display: block;
    position: absolute;
    border: 2px solid;
    height: 20px;
    width: 20px;
    top: 50%;
    margin-top: -10px;
    left: 15px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}
input[type=radio]:checked ~ .check::before {
    visibility: visible;
}
input[type=radio]:checked ~ label {
    color: #2e2e2e;
}
input[type=checkbox]:checked ~ .box-check {
    border: 2px solid;
}
input[type=checkbox]:checked ~ label {
    color: #2e2e2e;
}
input[type=checkbox]:checked ~ .box-check:before {
    opacity: 1;
}
ul.list label.radio-label,
label.radio-label {
    display: block;
    position: relative;
    font-size: 16px;
    padding: 5px 0px 0px 15px;
    margin: 0 auto;
    height: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    text-transform: capitalize;
}
label {
    display: inline-block;
    font-weight: 400;
    margin: 0 0 5px 0px;
    color: #777;
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #777;
}
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
    color: #777;
}
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #777;
}
input:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
    color: #777;
}

section {
    position: relative;
    width: 100%;
    float: left;
}
/*=================
 3.3 Button Style
================== */

.itg-button {
    color: #000;
    padding: 10px 30px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid #000;
    display: inline-block;
    background-color: transparent;
	-webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;

}

.itg-button:hover, .itg-button.active {
    color: #fff;
}
/* ================
3.4 Padding Style
=================== */

.pad0 {
    padding: 0px;
}
.pad5 {
    padding: 5px;
}
.pad10 {
    padding: 10px;
}
.pad15 {
    padding: 15px;
}
.pad20 {
    padding: 20px;
}
.pad30 {
    padding: 30px;
}
.pad40 {
    padding: 40px;
}
.pad50 {
    padding: 50px;
}
.pad60 {
    padding: 60px;
}
.pad70 {
    padding: 70px;
}
.pad80 {
    padding: 80px;
}
.pad90 {
    padding: 90px;
}
.pad100 {
    padding: 100px;
}
.padTB0 {
    padding: 0px 0;
}
.padTB5 {
    padding: 5px 0;
}
.padTB10 {
    padding: 10px 0;
}
.padTB15 {
    padding: 15px 0;
}
.padTB20 {
    padding: 20px 0;
}
.padTB30 {
    padding: 30px 0;
}
.padTB40 {
    padding: 40px 0;
}
.padTB50 {
    padding: 50px 0;
}
.padTB60 {
    padding: 60px 0;
}
.padTB70 {
    padding: 70px 0;
}
.padTB80 {
    padding: 80px 0;
}
.padTB90 {
    padding: 90px 0;
}
.padTB100 {
    padding: 100px 0;
}
.padT0 {
    padding-top: 0px;
}
.padT5 {
    padding-top: 5px;
}
.padT10 {
    padding-top: 10px;
}
.padT15 {
    padding-top: 15px;
}
.padT20 {
    padding-top: 20px;
}
.padT30 {
    padding-top: 30px;
}
.padT40 {
    padding-top: 40px;
}
.padT50 {
    padding-top: 50px;
}
.padT60 {
    padding-top: 60px;
}
.padT70 {
    padding-top: 70px;
}
.padT80 {
    padding-top: 80px;
}
.padT90 {
    padding-top: 90px;
}
.padT100 {
    padding-top: 100px;
}
.padB0 {
    padding-bottom: 0px;
}
.padB5 {
    padding-bottom: 5px;
}
.padB10 {
    padding-bottom: 10px;
}
.padB20 {
    padding-bottom: 20px;
}
.padB30 {
    padding-bottom: 30px;
}
.padB40 {
    padding-bottom: 40px;
}
.padB50 {
    padding-bottom: 50px;
}
.padB60 {
    padding-bottom: 60px;
}
.padB70 {
    padding-bottom: 70px;
}
.padB80 {
    padding-bottom: 80px;
}
.padB90 {
    padding-bottom: 90px;
}
.padB100 {
    padding-bottom: 100px;
}
.padL0 {
    padding-left: 0px;
}
.padL5 {
    padding-left: 5px;
}
.padL10 {
    padding-left: 10px;
}
.padL20 {
    padding-left: 20px;
}
.padL30 {
    padding-left: 30px;
}
.padL40 {
    padding-left: 40px;
}
.padL50 {
    padding-left: 50px;
}
.padL60 {
    padding-left: 60px;
}
.padL70 {
    padding-left: 70px;
}
.padL80 {
    padding-left: 80px;
}
.padL90 {
    padding-left: 90px;
}
.padL100 {
    padding-left: 100px;
}
.padLR0 {
    padding-left: 0px;
}
.padLR5 {
    padding-left: 5px;
}
.padLR10 {
    padding-left: 10px;
}
.padLR20 {
    padding-left: 20px;
}
.padLR30 {
    padding-left: 30px;
}
.padLR40 {
    padding-left: 40px;
}
.padLR50 {
    padding-left: 50px;
}
.padLR60 {
    padding-left: 60px;
}
.padLR70 {
    padding-left: 70px;
}
.padLR80 {
    padding-left: 80px;
}
.padLR90 {
    padding-left: 90px;
}
.padLR100 {
    padding-left: 100px;
}
.padR0 {
    padding-right: 0px;
}
.padR5 {
    padding-right: 5px;
}
.padR10 {
    padding-right: 10px;
}
.padR20 {
    padding-right: 20px;
}
.padR30 {
    padding-right: 30px;
}
.padR40 {
    padding-right: 40px;
}
.padR50 {
    padding-right: 50px;
}
.padR60 {
    padding-right: 60px;
}
.padR70 {
    padding-right: 70px;
}
.padR80 {
    padding-right: 80px;
}
.padR90 {
    padding-right: 90px;
}
.padR100 {
    padding-right: 100px;
}
/*================
 3.5 Margin Style
================== */

.mar0 {
    margin: 0px;
}
.mar5 {
    margin: 5px;
}
.mar10 {
    margin: 10px;
}
.mar15 {
    margin: 15px;
}
.mar20 {
    margin: 20px;
}
.mar30 {
    margin: 30px;
}
.mar40 {
    margin: 40px;
}
.mar50 {
    margin: 50px;
}
.mar60 {
    margin: 60px;
}
.mar70 {
    margin: 70px;
}
.mar80 {
    margin: 80px;
}
.mar90 {
    margin: 90px;
}
.mar100 {
    margin: 100px;
}
.marT0 {
    margin-top: 0px;
}
.marT5 {
    margin-top: 5px;
}
.marT10 {
    margin-top: 10px;
}
.marT15 {
    margin-top: 15px;
}
.marT20 {
    margin-top: 20px;
}
.marT30 {
    margin-top: 30px;
}
.marT40 {
    margin-top: 40px;
}
.marT50 {
    margin-top: 50px;
}
.marT60 {
    margin-top: 60px;
}
.marT70 {
    margin-top: 70px;
}
.marT80 {
    margin-top: 80px;
}
.marT90 {
    margin-top: 90px;
}
.marT100 {
    margin-top: 100px;
}
.marB0 {
    margin-bottom: 0px;
}
.marB5 {
    margin-bottom: 5px;
}
.marB15 {
    margin-bottom: 15px;
}
.marB10 {
    margin-bottom: 10px;
}
.marB20 {
    margin-bottom: 20px;
}
.marB30 {
    margin-bottom: 30px;
}
.marB40 {
    margin-bottom: 40px;
}
.marB50 {
    margin-bottom: 50px;
}
.marB60 {
    margin-bottom: 60px;
}
.marB70 {
    margin-bottom: 70px;
}
.marB80 {
    margin-bottom: 80px;
}
.marB90 {
    margin-bottom: 90px;
}
.marB100 {
    margin-bottom: 100px;
}
.marL0 {
    margin-left: 0px;
}
.marL5 {
    margin-left: 5px;
}
.marL10 {
    margin-left: 10px;
}
.marL20 {
    margin-left: 20px;
}
.marL30 {
    margin-left: 30px;
}
.marL40 {
    margin-left: 40px;
}
.marL50 {
    margin-left: 50px;
}
.marL60 {
    margin-left: 60px;
}
.marL70 {
    margin-left: 70px;
}
.marL80 {
    margin-left: 80px;
}
.marL90 {
    margin-left: 90px;
}
.marL100 {
    margin-left: 100px;
}
.marR0 {
    margin-right: 0px;
}
.marR5 {
    margin-right: 5px;
}
.marR10 {
    margin-right: 10px;
}
.marR20 {
    margin-right: 20px;
}
.marR30 {
    margin-right: 30px;
}
.marR40 {
    margin-right: 40px;
}
.marR50 {
    margin-right: 50px;
}
.marR60 {
    margin-right: 60px;
}
.marR70 {
    margin-right: 70px;
}
.marR80 {
    margin-right: 80px;
}
.marR90 {
    margin-right: 90px;
}
.marR100 {
    margin-right: 100px;
}
.textL{text-align: left;}
.textR{text-align: right;}
/*
==========================
4 Header Style
==========================
*/

#header {
    position: absolute;
    width: 100%;
    float: left;
    z-index: 2;
	    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
	background: transparent;
	box-shadow: none;
}
.newpages-menu {
    position: fixed;
    width: 100%;
    float: left;
    z-index: 2;
	    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
	background: #fff;
	box-shadow: none;
    box-shadow: 0 5px 41px rgba(0,0,0,.16);
	padding: 10px 0;
}
.newpages-menu1 {
    position: absolute;
    width: 100%;
    float: left;
    z-index: 2;
	    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
	box-shadow: none;
    box-shadow: 0 5px 41px rgba(0,0,0,.16);
	padding: 10px 0;
}
/* .main-feature-menu-middle .menu-middle
{
	display: inline-block;
    padding: 20px 40px 20px 70px;
    height: 50px;
    background-position: left center;
    background-repeat: no-repeat;
	background-size: 36px auto;
    line-height: 50px;
    color: #fcb93b;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
} */
.main-feature-menu-middle .menu-middle {
    display: inline-block;
    padding: 10px 65px 55px 90px;
    height: 50px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 80px auto;
    line-height: 50px;
    color: #fcb93b;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
	margin: 0 50px;
     cursor: pointer;
}
	a.bttn1.btn.btn-sm.animated-button.thar-one.hidden-xs {
    width: 40%;
    color: #fff;
	
}
/* 
1 = top
2 = highlight
3 = urgent reduced / urgent ribbon
4 = 
5 = home page gallery
6 = url direct

*/
.main-feature-menu-middle .menu-middle.featureone{
background-image: url(../img/services/1.png);
}
.main-feature-menu-middle .menu-middle.featuretwo{
background-image: url(../img/services/7.png);
}

.main-feature-menu-middle .menu-middle.featurethree{
background-image: url(../img/services/2.png);
}

.main-feature-menu-middle .menu-middle.featurefour{
background-image: url(../img/services/3.png);
}

.main-feature-menu-middle .menu-middle.featurefive{
background-image: url(../img/services/5.png);
}

.main-feature-menu-middle .menu-middle.featuresix{
background-image: url(../img/services/6.png);
}

.main-feature-menu-middle .menu-middle span{
font-size: 12px;
font-weight: 700;
}
.main-feature-menu-middle {
    float: left;
    position: relative;
    width: 100%;
}
a.navbar-brand {
    padding: 1px 0;
}
img.site_logo {
    width: 100%;
}
.navbar-nav {
    padding: 10px 0;
    float: none;
    text-align: center;
    display: inline-block;
}
.navbar-nav>li {
    display: inline-block;
    float: none;
    text-align: center;
}
.navbar-default .navbar-nav>li>a {
    color: #fff;
    background-color: transparent;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
	font-weight: 700;
}
body.dark .navbar-default .navbar-nav>li>a {
    color: #eee;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover,
.nav .open > a:focus,
.nav .open > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover,
ul.nav.navbar-nav li a:hover {
    background-color: transparent;
    color: #fff;

}

.navbar-default {
    background-color: transparent;
	padding: 20px 0;
}
a.gt {
    margin: 10px 0;
    float: right;
    color: #fff;
    border: solid 1px;
    font-size: 12px;
    padding: 12px 45px;
    font-size: 16px;
    text-transform: uppercase;
	font-weight: 600;
	-webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}
.navbar-default .navbar-collapse {
    border-color: #e7e7e7;
    float: left;
    position: relative;
    text-align: center;
    width: 100%;
}
/*
==========================
5 Main Slider
==========================
*/

.slider {
    position: relative;
    float: left;
    width: 100%;
}
body.dark .slider {
    background-color: #131212;
}
.slider {
    width: 100%;
    float: left;
    position: relative;
}
.slider-image {
    float: left;
    position: relative;
    width: 100%;
}
.slider-text {
    position: absolute;
    width: 100%;
    top: 25%;
}
.slide-content h1 {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 36px;
	text-align: center;
}
.slider-button a {
    color: #fff;
    border-color: #fff;
    margin: 0px 12px;
    padding: 12px 45px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;

}
body.dark .slide-content h1,
body.dark .slide-content h3 {
    color: #fff;
}
body.dark .slide-content p {
    color: #ccc;
}
.slide-content span {
    color: #00aeff;
    font-weight: 700;
}
.slide-content h3 {
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
    font-size: 30px;
}
.slider-button {
    text-align: center;
    width: 100%;
    position: relative;
}
.slide-content {
    width: 70%;
    padding: 50px 40px;
    margin: 0 auto;
}
.slide-content p {
    margin-bottom: 0;
}
.slider .item.left .slider-image {
    right: 10%;
    left: initial;
}
.slider .item.right .slider-image {
    left: 10%;
    right: initial;
}
.slider .item.left .slide-content {
    float: left;
    text-align: left;
}
.slider .item.right .slide-content {
    float: right;
    text-align: right;
}
.slider.owl-theme .owl-nav .owl-prev {
    float: left;
    margin-left: 30px;
}
.slider.owl-theme .owl-nav .owl-next {
    float: right;
    margin-right: 30px;
}
.slider.owl-theme .owl-nav {
    width: 100%;
    float: left;
    position: absolute;
    top: 50%;
    margin-top: -30px;
}

#slider-section .slider-image:before {
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    opacity: 0.80;
   background: #000000b3;
}


/*Header Button*/

.newpages-menu a.animated-button.thar-one {
	color:  #00aeff;
	cursor: pointer;
	font-size: 16px;
	display: block;
	position: relative;
	border: 2px solid #00aeff;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.newpages-menu a.animated-button.thar-one:hover {
	color: #fff !important;
	background-color: transparent;
	text-shadow: none;
}
.newpages-menu a.animated-button.thar-one:hover:before {
	bottom: 0%;
	top: auto;
	height: 100%;
}
.newpages-menu a.animated-button.thar-one:before {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 0px;
	width: 100%;
	z-index: -1;
	content: '';
	color: #fff !important;
	background: #00aeff;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.newpages-menu .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    /* white-space: nowrap; */
    /* vertical-align: middle; */
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.newpages-menu .btn,.btn-sm
{
    padding: 12px 10px;
    /* font-size: 12px; */
    line-height: 1.5;
    border-radius: 3px;
}

/* BUttons CSS */

a.animated-button.thar-one {
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	display: block;
	position: relative;
	border: 2px solid #00aeff;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
a.animated-button.thar-one:hover {
	color: #fff !important;
	background-color: transparent;
	text-shadow: none;
}
a.animated-button.thar-one:hover:before {
	bottom: 0%;
	top: auto;
	height: 100%;
}
a.animated-button.thar-one:before {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 0px;
	width: 100%;
	z-index: -1;
	content: '';
	color: #fff !important;
	background: #00aeff;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    /* white-space: nowrap; */
    /* vertical-align: middle; */
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn,.btn-sm
{
    padding: 12px 10px;
    /* font-size: 12px; */
    line-height: 1.5;
    border-radius: 3px;
}

.themebg{
	background: #f4f7fa;
}
/*
==========================
About us css
==========================
*/

.oz-about-us{
	float: left;
	position: relative;
	width: 100%;	
	background: #fff;
	
}

.oz-about-us-inner-content {
    float: left;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 80px 35px;
	margin-top: -45px;
	z-index: 1;
	box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.55);
}

.oz-about-us-inner-content span:before {
    position: absolute;
    left: 40%;
    right: 40%;
    top: 86%;
    bottom: 2px;
    /* margin-top: 4px; */
    content: "";
    background: #000;
	height: 3px;
}

.oz-about-us-inner-content h1 {
    text-align: center;
    font-size: 20px;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
	margin-bottom: 10px;
}

.oz-about-us-inner-content h3 {
    font-size: 16px;
    text-align: center;
    color: #000;
    text-transform: capitalize;
    font-style: italic;
	margin-bottom: 10px;
}

.oz-about-us-inner-content p {
    color: #262626;
    text-align: center;
    font-size: 14px;
    text-transform: capitalize;
    line-height: 24px;
}

/*==============
Service section
===============*/
.oz-service-content{
float: left;
position: relative;
width: 100%;	
}

.oz-services-container-box {
    float: left;
    position: relative;
    width: 100%;
}

.oz-services-images-box{
	float: left;
position: relative;
width: 100%;	
}

section.oz-service-content  h1.service-title {
    text-align: center;
    font-size: 42px;
    color: #000;
    font-weight: 600;
}

h1.service-title span {
    font-size: 42px;
    color: #00aeff;
}

.oz-services-container{
	
		float: left;
position: relative;
width: 100%;	
padding: 100px 0;
}
.oz-service-left-side-content-main{
		
	float: left;
position: relative;
width: 100%;	
}
ul.services-top-head-list {
    text-align: center;
}

ul.services-top-head-list li {
    display: inline-block;
    margin: 0 40px;
}
#services-head.sticky-header {
  /*  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);  */
	background: #eee;
	z-index: 1;
}
 #services-head.sticky-header {
    position: fixed;
    box-shadow: 4px 4px 20px rgba(225, 225, 225, 0.1);
	background-color:#eee;
}

.services-menu-list{
	float: left;
	position: relative;
	width: 100%;
	margin-bottom: 100px;
}
ul.services-top-head-list img {
    width: 50%;

}
ul.services-top-head-list li a span {
    position: relative;
    top: 60px;
    right: 55px;
    text-align: center;
}
.services-top-head {
    float: left;
    position: absolute;
    padding: 30px 0px;
    top: 0;
    width: 100%;
    background: #eee;
    left: 0;
    right: 0;
    z-index: 1;
}
.oz-service-left-side-content {
    float: left;
    position: relative;
    width: 100%;

    padding: 30px 20px;

}

.functions-section{
	float: left;
    position: relative;
    width: 100%;
}
.functions-section h2{    
	font-size: 20px;
    text-transform: capitalize;
    color: red;
}
.oz-service-left-side-content h1 {
    font-size: 16px;
    text-transform: capitalize;
    color: red;
}
.oz-service-features-list h2{    
	font-size: 18px;
    text-transform: capitalize;
    color: red;
}
.oz-service-left-side-content h2 {
    font-size: 20px;
    text-transform: capitalize;
    line-height: 26px;
    margin: 10px 0;
}
ul.oz-services-listings {
    margin: 30px 0;
}

ul.oz-services-listings span {
    color: #808080;
    font-size: 10px;
	float: left;
}
ul.oz-services-listings li  p{
	font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    text-align: justify;
	letter-spacing: 0;
    margin: 0 0 20px 20px;
}
.oz-service-left-side-content p {
    font-size: 16px;
    color: #808080;
    line-height: 24px;
	font-size: 600;
}
.oz-service-left-side-content a.btn.btn-sm.animated-button.thar-one {
    padding: 10px 10px;
    color: #000;
    margin-top: 20px;
    z-index: 1;
    width: 35%;
    font-size: 14px;
}
.oz-service-right-side-content-main{
		
	float: left;
position: relative;
width: 100%;	
padding: 100px 0;
}

.oz-service-right-side-content {
    float: left;
    position: relative;
    width: 100%;
    padding: 30px 20px;

}

.oz-service-right-side-content p {
    font-size: 16px;
    color: #262626;
    text-transform: capitalize;
    line-height: 24px;
    letter-spacing: 2px;
}

.oz-one span
{
/*     content: "";
    position: absolute;
    height: 0px;
    width: 20px;
    top: 40%;
    right: -40px;
    border-width: 20px;
    border-color: transparent transparent transparent #000;
    border-style: solid; */
/* 	    content: "";
    position: absolute;
    height: 0px;
    width: 20px;
    top: 40%;
    left: 0;
    border-width: 20px;
    border-color: transparent transparent transparent #000;
    border-style: solid;
	transform: rotate(180deg); */
}

/*Sidebar Style*/

#showMenu, #hideMenu {
    position: fixed;
    padding: 10px;
    color: #fff;
    background: #00aeff;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    top: 38%;
    left: 0;
    z-index: 2;
    -webkit-transition: left 0.2s, color 0.2s; 
    transition: left 0.2s, color 0.2s;
}

#showMenu:hover, #hideMenu:hover {
    color: #FFF;
    cursor: pointer;
}

#showMenu i:hover, #hideMenu i:hover {
    cursor: pointer;
}

#navigation-hover {
    position: fixed;
    width: 100%;
	height: 100% !important;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: display 0.2s;
    transition: display 0.2s;
}

#navigation-menu {
    position: fixed;
    width: 300px;
    background: #222d32;
    left: -300px;
    top:0%;
	height: 100% !important;
    z-index: 3;
    -webkit-transition: left 0.2s; 
    transition: left 0.2s;
	overflow-y: scroll;
}

.menu-selection {
    width: 100%;
    background: #222d32;
    color: #fff;
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: background 0.2s, color 0.2s; 
    transition: background 0.2s, color 0.2s;
    border-bottom: solid 1px #000000;  
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

.menu-selection:hover {
    background: #000;
    cursor: pointer;
    color: #fff;
    padding-left: 10px;
}
.menu-text a {
    color: #fff;
}
.menu-selection:hover .menu-text a{
	 color: #fff;
}
.menu-selection div {
    display: inline-block;
}

.menu-selection div:hover, .menu-selection i:hover {
    cursor: pointer;
}

.menu-selection .menu-icon {
    width: 30px;
    padding-left: 10px;
}

/*Side bar Style end*/



#scroll-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    font-size: 25px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    background: #00aeff;
}
#scroll-top.showScrollTop {
    opacity: 1;
    visibility: visible;
}



/*==================
Banner Content
===================*/

.oz-banner-section{
	float: left;
	position: relative;
	width: 100%;
}

.oz-banner-content-box{
		float: left;
	position: relative;
	width: 100%;
	text-align: center;
}

.oz-banner-content-box.brder-right:after {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: -15px;
    width: 3px;
    background: #eee;
    margin-left: 1px;
}
.oz-banner-content-box-details{
	float: left;
	position: relative;
	width: 100%;	
	
}
.oz-banner-content-box figure img {
    max-width: 30%;
}
h1.banner-title {
    text-align: center;
    font-size: 24px;
    text-transform: capitalize;
	margin-bottom: 60px;
}

.oz-banner-content-box-details h2 {
    font-size: 24px;
    margin: 20px 0px;
	font-weight: 700;
	color: #00aeff;
}

.oz-banner-content-box-details p{
	
	color: #808080;
    font-size: 14px;
    font-weight: 600;
    margin: 0 5px;
}
.oz-banner-content-box .itg-button {
    margin: 30px 0;
}

.oz-service-features-list{
	float: left;
    position: relative;
    width: 100%;
}

/*========================
Login Dropdown
=========================*/
.login-nav-index > li > a {
    color:#fff;
}
.login-nav.nav>li>a {
    position: relative;
    display: block;
    padding: 2px 18px;
	font-size: 12px;
    font-weight: 600;
}
.login-nav.nav>li>a:hover, .login-nav.nav>li>a:focus{
	background: none;
}

.login-nav.navbar-right .dropdown-menu
{
    right: 2%;
    top: 50%;
    max-width: 120px !important;
    min-width: 200px;
	-webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}
.login-nav.nav>li {
    right: 60%;
}
.login-nav.navbar-right ul.dropdown-menu li {
    margin:0 0;
    float: left;
    position: relative;
    padding: 5px 13px;
    border-top: solid 1px #f1f1f1;
    width: 100%;
}
ul.dropdown-menu{
	display: none;   
	-webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}
.login-nav.navbar-right li.dropdown:hover ul.dropdown-menu{
	display: block
}
.login-nav.navbar-right ul.dropdown-menu li a{
	color: #000;
	padding: 0;
}
.login-nav.navbar-right ul.dropdown-menu li:hover{
	background: #f1f1f1;
}

/*==================
	Theme Heading
===================*/

.theme-heading {
    max-width: 400px;
    margin: auto auto 50px;
    padding: 0 15px;
	text-align: center;
}

.theme-heading h1 {
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 10px;
}

.theme-heading span {
    font-size: 20px;
    position: relative;
	color: blue;
}

.theme-heading span:before {
    left: 100%;
    margin-left: 10px;
}

.theme-heading span:after {
    right: 100%;
    margin-right: 10px;
}

.theme-heading span:after, .theme-heading span:before {
    height: 5px;
    width: 40px;
    position: absolute;
    border-top: 1px solid;
    border-bottom: 1px solid;
    margin-top: -2.5px;
    top: 50%;
    content: "";
	color: blue;
}


/*============
	footer
==============*/

footer.oz-footer-main {
    float: left;
    position: relative;
    width: 100%;
    padding: 100px 0;
	background-image: url('../img/11.png');
	background-size: cover;
}
footer.oz-footer-main:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    background: #262626;
    opacity: 0.80;
}

.oz-footer-left-first{
    float: left;
    position: relative;
    width: 100%;	
	
}

.oz-footer-left-second h2 {
    color: #00aeff;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.oz-footer-left-first p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
}

.oz-footer-left-second{
	    float: left;
    position: relative;
    width: 100%;
}

ul.oz-footer-menu-list{
	
}

ul.oz-footer-menu-list li {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 10px;
}
ul.oz-footer-menu-list li a:hover{
padding-left: 10px;
text-decoration: underline;
color: red;
}
.footer-bottom {
    position: relative;
    width: 100%;
    float: left;
    text-align: center;
	padding: 10px 0;
}
.footer-bottom h2{
	font-size: 18px;
}


.wrap { 
  color:transparent;
  text-decoration: none;
  font-weight: 700;
}

@keyframes borderFades {

}
/*
==========================
Preloader css
==========================


.preloader.loaderout {
    top: -100%;
    -webkit-transition: all 0.80s ease-in-out;
    -moz-transition: all 0.80s ease-in-out;
    -o-transition: all 0.80s ease-in-out;
    -ms-transition: all 0.80s ease-in-out;
    transition: all 0.80s ease-in-out;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}
.cssload-container {
    display: block;
    width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -14px;
}
.cssload-loading i {
    width: 25px;
    height: 5px;
    display: inline-block;
    border-radius: 0;
}
.cssload-loading i:first-child {
    opacity: 0;
    animation: cssload-loading-ani2 0.58s linear infinite;
    -o-animation: cssload-loading-ani2 0.58s linear infinite;
    -ms-animation: cssload-loading-ani2 0.58s linear infinite;
    -webkit-animation: cssload-loading-ani2 0.58s linear infinite;
    -moz-animation: cssload-loading-ani2 0.58s linear infinite;
    transform: translate(-19px);
    -o-transform: translate(-19px);
    -ms-transform: translate(-19px);
    -webkit-transform: translate(-19px);
    -moz-transform: translate(-19px);
}
.cssload-loading i:nth-child(2),
.cssload-loading i:nth-child(3) {
    animation: cssload-loading-ani3 0.58s linear infinite;
    -o-animation: cssload-loading-ani3 0.58s linear infinite;
    -ms-animation: cssload-loading-ani3 0.58s linear infinite;
    -webkit-animation: cssload-loading-ani3 0.58s linear infinite;
    -moz-animation: cssload-loading-ani3 0.58s linear infinite;
}
.cssload-loading i:last-child {
    animation: cssload-loading-ani1 0.58s linear infinite;
    -o-animation: cssload-loading-ani1 0.58s linear infinite;
    -ms-animation: cssload-loading-ani1 0.58s linear infinite;
    -webkit-animation: cssload-loading-ani1 0.58s linear infinite;
    -moz-animation: cssload-loading-ani1 0.58s linear infinite;
}
@keyframes cssload-loading-ani1 {
    100% {
        transform: translate(39px);
        opacity: 0;
    }
}
@-o-keyframes cssload-loading-ani1 {
    100% {
        -o-transform: translate(39px);
        opacity: 0;
    }
}
@-ms-keyframes cssload-loading-ani1 {
    100% {
        -ms-transform: translate(39px);
        opacity: 0;
    }
}
@-webkit-keyframes cssload-loading-ani1 {
    100% {
        -webkit-transform: translate(39px);
        opacity: 0;
    }
}
@-moz-keyframes cssload-loading-ani1 {
    100% {
        -moz-transform: translate(39px);
        opacity: 0;
    }
}
@keyframes cssload-loading-ani2 {
    100% {
        transform: translate(19px);
        opacity: 1;
    }
}
@-o-keyframes cssload-loading-ani2 {
    100% {
        -o-transform: translate(19px);
        opacity: 1;
    }
}
@-ms-keyframes cssload-loading-ani2 {
    100% {
        -ms-transform: translate(19px);
        opacity: 1;
    }
}
@-webkit-keyframes cssload-loading-ani2 {
    100% {
        -webkit-transform: translate(19px);
        opacity: 1;
    }
}
@-moz-keyframes cssload-loading-ani2 {
    100% {
        -moz-transform: translate(19px);
        opacity: 1;
    }
}
@keyframes cssload-loading-ani3 {
    100% {
        transform: translate(19px);
    }
}
@-o-keyframes cssload-loading-ani3 {
    100% {
        -o-transform: translate(19px);
    }
}
@-ms-keyframes cssload-loading-ani3 {
    100% {
        -ms-transform: translate(19px);
    }
}
@-webkit-keyframes cssload-loading-ani3 {
    100% {
        -webkit-transform: translate(19px);
    }
}
@-moz-keyframes cssload-loading-ani3 {
    100% {
        -moz-transform: translate(19px);
    }
} */
/* Preloader CSS */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999999;
}
#preloader-status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../img/45.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}
.line-1{
    position: relative;
    top: 50%;  
    width: 24em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}
ul.social-icon-list {
    margin-left: 10px;
    text-align: center;
}
ul.social-icon-list li {
	display: inline-block;
    margin: 0 5px;
    color: #fff;
    font-size: 16px;
    border: solid 1px transparent;
    padding: 1px 10px;
    text-align: center;
    background: #515151;
    border-radius: 8px;
	
}
ul.social-icon-list li a {
    color: #fff;
}


/* Animation */
.anim-typewriter{
  animation: typewriter 9s steps(55) 1s 1 normal both,
             blinkTextCursor 500ms steps(55) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 100%;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}




ul.stander, ul.description{padding: 20px 0;}

nav1 {
    background: #fff;
    position: absolute;
    width: 100%;
    float: left;
    top: 0;
    z-index: 2;
	box-shadow: 0 5px 41px rgba(0,0,0,.16);
}
nav1.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
	background: #fff;
		box-shadow: 0 5px 41px rgba(0,0,0,.16);
	
}

nav1 ul.featuresmenu {
  margin: 0 auto;
  list-style: none;
  text-align: center;
  color: #000;
}
nav1 ul.featuresmenu li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
nav1 ul.featuresmenu li a {
  padding: 30px;
  color: #000;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;

}
.sticky-header ul.featuresmenu li a 
{
	display: block;
    padding: 65px 74px 10px;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    color: #8b8aa4;
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: 75px auto;
    font-size: 11px;

}
nav1 ul.featuresmenu li a 
{
	display: block;
    padding: 90px 67px 20px;
    transition: all 0.15s ease-out;
    color: #8b8aa4;
    background-repeat: no-repeat;
    background-position: center 20px;
    background-size: 90px auto;
    font-size: 13px;
    letter-spacing: 0px;
}
nav1 ul.featuresmenu li.featureone a{
	  background-image: url("../img/services/1.png");
	 
	  
} 
nav1 ul.featuresmenu li.featuretwo a{
	  background-image: url("../img/services/7.png");
	 
	  
} 

nav1 ul.featuresmenu li.featurethree a{
	  background-image: url("../img/services/2.png");
	
	  
} 

nav1 ul.featuresmenu li.featurefour a{
	  background-image: url("../img/services/3.png");
	
	  
} 

nav1 ul.featuresmenu li.featurefive a{
	  background-image: url("../img/services/5.png");
	 
	  
} 

nav1 ul.featuresmenu li.featuresix a{
	  background-image: url("../img/services/6.png");
	
	  
} 
nav1 ul.featuresmenu li a:hover {
  color: #fcb93b;
  background-color: #f7f7f75e;
}
nav1 ul.featuresmenu li a.active {
    background-color: #f7f7f7;
    color: #fcb93b;

}
nav2{
    /* background: #fff; */
    position: relative;
    width: 100%;
    /* float: left; */
    top: 0;
    z-index: 2;
    text-align: center;
    /* box-shadow: 0 5px 41px rgba(0,0,0,.16); */
    display: table;
}
ul.featuresmenu2
{
    display: table;
    margin: 0 auto;
    list-style: none;
    text-align: center;
    color: #000;
}
ul.featuresmenu2 li {
  display: table;
  margin: 0;
  padding: 0;
}
ul.featuresmenu2 li.featureone a{
	  background-image: url("../img/services/1.png");
  
} 
ul.featuresmenu2 li.featuretwo a{
	  background-image: url("../img/services/7.png");
  
}
ul.featuresmenu2 li.featurethree a{
	  background-image: url("../img/services/2.png");
  
}
ul.featuresmenu2 li.featurefour a{
	  background-image: url("../img/services/3.png");
  
}
ul.featuresmenu2 li.featurefive a{
	  background-image: url("../img/services/5.png");
  
}
ul.featuresmenu2 li.featuresix a{
	  background-image: url("../img/services/6.png");
  
}
ul.featuresmenu2 li a {
    display: block;
    padding: 25px 35px 21px 120px;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    color: #8c89a4;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 1px;
    background-repeat: no-repeat;
    background-position: 0px;
    background-size: 110px auto;
	    margin: 10px 0px;

}


.menu2 {
    padding: 10px;
    background: transparent;
    font-size: 30px;
    color: #000;
    position: absolute;
    right: 0;
    top: 0;
}
.menu-button {
    float: left;
    position: relative;
    width: 100%;
    text-align: center;
}

.slidemenu .btn {

font-size: 25px;
    top: 1%;
    padding: 0 0;
    position: relative;
    left: 88%;
}


.toggle-btn:hover, .menu li a:hover {
  transition: 0.3s ease all;
  color: #000;
}

.toggle-btn {
  color: #000;
  cursor: pointer;
}

#slideout-menu {
position: absolute;
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 10px;
    top: 0;
    transform: translateX(-100%);
    transition: 0.4s ease all;
    z-index: 3;
    color: #000;
    left: 0;
    right: 0;
}

.page-slide {
  transform: translateX(100%);
}

.page-wrapper {
  transition: 0.4s ease all;
}

.open {
  transform: translateX(0)!important;
}

.menu {
    list-style-type: none;
    font-size: 18px;
    padding: 0;
    padding: 10px 0px;
    position: relative;
    float: left;
    width: 100%;
}

.menu li {
  margin-top: 10px;
}

.menu a {
  color: #000;
  text-decoration: none;
}


section.new-services-menu-list {
    position: fixed;
    top: 12%;
    z-index: 2;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,.16);
	display: none;
	-webkit-transition: height 0.25s ease-out;
  -webkit-transition: height 0.25s ease-out;
    transition: height 0.25s ease-out;
}
.main-feature-menu-middle .menu-middle span i {
    font-size: 16px;
    position: relative;
    top: 3px;
	padding-left:5px;
}

nav3 {
    background: #fff;
    position: absolute;
    width: 100%;
    float: left;
    top: 0;
    z-index: 2;
	box-shadow: 0 5px 41px rgba(0,0,0,.16);
}
nav3.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
	background: #fff;
		box-shadow: 0 5px 41px rgba(0,0,0,.16);
	
}

nav3 ul.featuresmenu {
  margin: 0 auto;
  list-style: none;
  text-align: center;
  color: #000;
  	-webkit-transition: height 0.25s ease-out;
  -webkit-transition: height 0.25s ease-out;
    transition: height 0.25s ease-out;
}
nav3 ul.featuresmenu li {
  display: inline-block;
  margin: 0;
  padding: 0;
  
}
nav3 ul.featuresmenu li a {
  padding: 30px;
  color: #000;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;

}
.sticky-header ul.featuresmenu li a 
{
	display: block;
    padding: 65px 74px 10px;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    color: #8b8aa4;
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: 75px auto;
    font-size: 11px;

}
nav3 ul.featuresmenu li a 
{
	display: block;
    padding: 90px 67px 20px;
    transition: all 0.15s ease-out;
    color: #8b8aa4;
    background-repeat: no-repeat;
    background-position: center 20px;
    background-size: 90px auto;
    font-size: 13px;
    letter-spacing: 0px;
}
nav3 ul.featuresmenu li.featureone a{
	  background-image: url("../img/services/1.png");
	 
	  
} 
nav3 ul.featuresmenu li.featuretwo a{
	  background-image: url("../img/services/7.png");
	 
	  
} 

nav3 ul.featuresmenu li.featurethree a{
	  background-image: url("../img/services/2.png");
	
	  
} 

nav3 ul.featuresmenu li.featurefour a{
	  background-image: url("../img/services/3.png");
	
	  
} 

nav3 ul.featuresmenu li.featurefive a{
	  background-image: url("../img/services/5.png");
	 
	  
} 

nav3 ul.featuresmenu li.featuresix a{
	  background-image: url("../img/services/6.png");
	
	  
} 
nav3 ul.featuresmenu li a:hover {
  color: #fcb93b;
  background-color: #f7f7f75e;
}
nav3 ul.featuresmenu li a.active {
    background-color: #f7f7f7;
    color: #fcb93b;

}
/*premiumfeatures user nav*/

ul.login-nav.nav.oz-sign.navbar-right.header-top-bar-menu.prm-fts .dropdown-menu {
    max-width: 160px !important;
    min-width: 160px;
    padding: 0px 0px;
}
ul.login-nav.prm-fts.nav>li>a {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border: solid 1px #fff;
    border-radius: 7px;
    margin: 7px 0;
}

/*premiumfeatures inside pages user nav*/

ul.login-nav.nav.oz-sign.navbar-right.header-top-bar-menu.prm-fts-list .dropdown-menu {
    max-width: 160px !important;
    min-width: 160px;
    padding: 0px 0px;
}
ul.login-nav.prm-fts-list.nav>li>a {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    border: solid 1px #000;
    border-radius: 7px;
    margin: 7px 0;
}