


/*--------------------------------------------------------*/
/* TABLE OF CONTENTS: */
/*--------------------------------------------------------*/
/* 01 - LAYOUT INITIALIZATION & COLOR PRESETS */
/* 02 - HEADER, INTRO & NAVIGATION */
/* 03 - COMMON ELEMENTS & TYPOGRAPHY */
/* 04 - PAGES & SECTIONS SETUP*/
/* 05 - FOOTER*/


/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 01 - LAYOUT INITIALIZATION & COLOR PRESETS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
body
{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; 
}
body{
	font-weight:300;
	/*overflow-x:hidden !important; */
}

a, a:hover, a:focus{
	text-decoration: none;
}
a:focus { 
    	outline: none; 
}

.ease{
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}
.ease:hover{
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}
.text-center > .img-responsive{
	display: block;
	display: inline-block;
}

p{
	font-size: 13px;
	line-height:25px;
	font-weight: 400;
}
h1,h2,h3,h4,h5,h6,p,a,ul,li{
	margin: 0;
	padding: 0;
	font-weight: normal;
}
li {
	list-style: none;
}

@media (min-width: 1024px) and (max-width: 5000px) {
	.container{
		max-width: 960px;
	}
}
/*--------------------------------------------------------------------------------*/
								/*Common Spacing and Padding*/
/*--------------------------------------------------------------------------------*/

.add-top{
	margin-top: 160px;
}
.add-bottom{
	margin-bottom: 160px;
}
.add-top-half{
	margin-top: 80px;
}
.add-bottom-half{
	margin-bottom: 80px;
}
.add-min-top-half{
	margin-top: 40px;
}
.add-min-bottom-half{
	margin-bottom: 40px;
}
.add-min-top-quarter{
	margin-top: 20px;
}
.add-min-bottom-quarter{
	margin-bottom: 20px;
}
.pad-top{
	padding-top: 160px;
}
.pad-bottom{
	padding-bottom: 160px;
}
.pad-top-half{
	padding-top: 80px;
}
.pad-bottom-half{
	padding-bottom: 80px;
}
.pad-min-top-half{
	padding-top: 40px;
}
.pad-min-bottom-half{
	padding-bottom: 40px;
}
.pad-min-top-quarter{
	padding-top: 20px;
}
.pad-min-bottom-quarter{
	padding-bottom: 20px;
}
.no-padding{
	padding: 0;
}

.no-pad-bottom {
	padding-bottom: 0;
}

.display-none {
	display: none;
}

/*--------------------------------------------------------------------------------*/
								/* Common Objects */
/*--------------------------------------------------------------------------------*/

.float-clear{
	clear: both;
}
.float-left{
	float: left;
}
.float-right{
	float: right;
}
.text-left{
	text-align: left;
}
.text-right{
	text-align: right;
}
.text-center, .align-center{
	text-align: center;
}
.vertical-align{
	position: relative;
	top: 50%;
	 -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.horizontal-align{
	position: relative;
	left: 50%;
	 -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.trans-bg{
	background: transparent;
}
.video-bg.player, .bgplayer{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover !important;
}
.section-bgimg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.static-position {
	position: static;
}
.img-fullwidth {
	width: 100%;
}

.fullwidth {
	width: 100%;
}

.fullheight {
	height: calc(100vh);
}

/*-------------------------------*/
	/*Preloader Style*/
/*-------------------------------*/

body.preloader-running{
    overflow: hidden;
}
div#preloader {
    background: #fff;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}

#status  {
     width: 200px;
     height: 200px;
     position: fixed;
     left: 50%;
     top: 50%;
     background-image: url(../images/ring.gif);
     background-repeat: no-repeat;
     background-position: center;
     margin: -100px 0 0 -100px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - HEADER, INTRO & NAVIGATION */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*-------------------------------*/
	/*Page Header Style*/
/*-------------------------------*/

.page-header {
	margin:0;
	border:none;
}

.page-header h2 {
	font-size: 26px;
	line-height: 33px;
	font-weight: 400;
	letter-spacing: 6px;
	text-transform: uppercase;
	margin-bottom: 12px;
	padding-left: 6px;
}

.page-header h3 {
	font-size: 14px;
	line-height: 21px;
	font-weight: 700;
	letter-spacing: 1px;
	padding-left: 5px;
}

/*-------------------------------*/
	/*Side Header Style*/
/*-------------------------------*/

.side-header h2{
	font-size: 58px;
	line-height: 70px;
	font-weight: 400;
	text-transform: uppercase;
}

/*-------------------------------*/
	/*Inner Header Style*/
/*-------------------------------*/

.inner-header h2 {
	font-size: 22px;
	line-height: 29px;
	font-weight: 400;
	letter-spacing: 4px;
	padding-left: 4px;
	text-transform: uppercase;
}

/*-------------------------------*/
	/*Center Hero Text Style*/
/*-------------------------------*/

.center-hero-text h3{
	font-size: 20px;
    line-height: 37px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-left: 4px;
}

/*-------------------------------*/
	/*Intermediate Hero Text Style*/
/*-------------------------------*/

.intermediate-hero-text {
	font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/*-------------------------------*/
	/*Fixed Left Logo Style*/
/*-------------------------------*/

.logo-left-fixed {
	position: absolute;
	left: 50px;
	top: 50px;
	z-index: 100;
}

/*-------------------------------*/
	/*Vertical Navigation Type 1 Style*/
/*-------------------------------*/

.main-vertical-nav-wrap .vertical-nav-trigger {
	width: 100px;
	height: 100px;
	position: fixed;
	right: 15px;
	top:15px;
	z-index: 1000;
	cursor: pointer;
}

/*Hamburger Icon Style Begin*/

#menu-toggle span {
	display: block;
	border-radius: 2px;
	box-sizing: border-box;

    -moz-transition: .25s ease-in-out;
	  -webkit-transition: .25s ease-in-out;
	    -o-transition: .25s ease-in-out;
	      -ms-transition: .25s ease-in-out;
	        transition: .25s ease-in-out;
}

#menu-toggle {
	width: 100px;
	height: 100px;
	position: relative;
	position: relative;
	cursor: pointer;
	border-radius: 5px;
}
#menu-toggle:hover {
}
#menu-toggle #hamburger {
	position: absolute;
	height: 100%;
	width: 100%;
}
#menu-toggle #hamburger span {
	width: 50%;
	height: 2px;
	position: relative;
	top: 24px;
	left: 20px;
	margin: 10px 0;
}
#menu-toggle #hamburger span:nth-child(1) {
	-moz-transition-delay: .5s;
	  -webkit-transition-delay: .5s;
	    -o-transition-delay: .5s;
	      -ms-transition-delay: .5s;
	        transition-delay: .5s;
}
#menu-toggle #hamburger span:nth-child(2) {
	-moz-transition-delay: .625s;
	  -webkit-transition-delay: .625s;
	    -o-transition-delay: .625s;
	      -ms-transition-delay: .625s;
	        transition-delay: .625s;  
}
#menu-toggle #hamburger span:nth-child(3) {
	-moz-transition-delay: .75s;
	  -webkit-transition-delay: .75s;
	    -o-transition-delay: .75s;
	      -ms-transition-delay: .75s;
	        transition-delay: .75s;  
}
#menu-toggle #cross {
  	position: absolute;
  	height: 100%;
  	width: 100%;
  	-moz-transform: rotate(45deg);
  	  -webkit-transform: rotate(45deg);
  	    -o-transform: rotate(45deg);
  	      -ms-transform: rotate(45deg);
  	        transform: rotate(45deg);
}
#menu-toggle #cross span:nth-child(1) {
	height: 0%;
	width: 2px;
	position: absolute;
	top: 24%;
	left: 48px;

  	-moz-transition-delay: 0s;
  	  -webkit-transition-delay: 0s;
  	    -o-transition-delay: 0s;
  	      -ms-transition-delay: 0s;
   			transition-delay: 0s;
}
#menu-toggle #cross span:nth-child(2) {
	width: 0%;
	height: 2px;
	position: absolute;
	left: 24%;
	top: 48px;

	-moz-transition-delay: .25s;
  	  -webkit-transition-delay: .25s;
  	    -o-transition-delay: .25s;
  	      -ms-transition-delay: .25s;
   			transition-delay: .25s;
}

#menu-toggle.open #hamburger span {
  width: 0%;
}
#menu-toggle.open #hamburger span:nth-child(1) {
	-moz-transition-delay: 0s;
  	  -webkit-transition-delay: 0s;
  	    -o-transition-delay: 0s;
  	      -ms-transition-delay: 0s;
   			transition-delay: 0s;
}
#menu-toggle.open #hamburger span:nth-child(2) {
	-moz-transition-delay: .125s;
  	  -webkit-transition-delay: .125s;
  	    -o-transition-delay: .125s;
  	      -ms-transition-delay: .125s;
   			transition-delay: .125s;
}
#menu-toggle.open #hamburger span:nth-child(3) {
	-moz-transition-delay: .25s;
  	  -webkit-transition-delay: .25s;
  	    -o-transition-delay: .25s;
  	      -ms-transition-delay: .25s;
   			transition-delay: .25s;
}
#menu-toggle.open #cross span:nth-child(1) {
	height: 50%;

	-moz-transition-delay: .625s;
  	  -webkit-transition-delay: .625s;
  	    -o-transition-delay: .625s;
  	      -ms-transition-delay: .625s;
   			transition-delay: .625s;
}
#menu-toggle.open #cross span:nth-child(2) {
	width: 50%;

	-moz-transition-delay: .375s;
  	  -webkit-transition-delay: .375s;
  	    -o-transition-delay: .375s;
  	      -ms-transition-delay: .375s;
   			transition-delay: .375s;
}


/*Hamburger Icon Style End*/

.main-vertical-nav-wrap .vertical-nav-container {
	width: 100%;
	position: fixed;
	right: -101%;
	top: 0;
	z-index: 990;
	background-size: cover;

	-webkit-transition: right 1.2s ease-in 0.5s;
	   -moz-transition: right 1.2s ease-in 0.5s;
		-ms-transition: right 1.2s ease-in 0.5s;
		 -o-transition: right 1.2s ease-in 0.5s;
			transition: right 1.2s ease-in 0.5s;
}

.main-vertical-nav-wrap .vertical-nav-container.vertical-nav-container-expnd {
  	right:0 !important;

 	-webkit-transition: right 1.2s ease-in;
	   -moz-transition: right 1.2s ease-in;
		-ms-transition: right 1.2s ease-in;
		 -o-transition: right 1.2s ease-in;
			transition: right 1.2s ease-in;
}


.mastwrap {
	opacity: 1;

	-webkit-transition: opacity 0.4s ease-in 1.2s;
	   -moz-transition: opacity 0.4s ease-in 1.2s;
		-ms-transition: opacity 0.4s ease-in 1.2s;
		 -o-transition: opacity 0.4s ease-in 1.2s;
			transition: opacity 0.4s ease-in 1.2s;
}
.mastwrap.main-vertical-nav-on {
	opacity: 0;

	-webkit-transition: opacity 0.4s ease-in;
	   -moz-transition: opacity 0.4s ease-in;
		-ms-transition: opacity 0.4s ease-in;
		 -o-transition: opacity 0.4s ease-in;
			transition: opacity 0.4s ease-in;
}

.main-vertical-nav-wrap .vertical-nav-container.no-bg {
  background: none;
}

.vertical-nav-container .vertical-logo-section {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 50%;
	height: 100%;
	opacity: 0;

	-webkit-transition: opacity 0.4s ease-in;
	   -moz-transition: opacity 0.4s ease-in;
		-ms-transition: opacity 0.4s ease-in;
		 -o-transition: opacity 0.4s ease-in;
			transition: opacity 0.4s ease-in;				
}

.vertical-nav-container .vertical-logo-section.vertical-logo-on {
	opacity: 1;

	-webkit-transition: opacity 0.4s ease-in 1.3s;
	   -moz-transition: opacity 0.4s ease-in 1.3s;
		-ms-transition: opacity 0.4s ease-in 1.3s;
		 -o-transition: opacity 0.4s ease-in 1.3s;
			transition: opacity 0.4s ease-in 1.3s;	
}

.vertical-nav-container .vertical-logo-section h1 {
	margin-top: 15px;
    font-size: 19px;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding-left: 5px;
}

.vertical-nav-container .vertical-img-section {
	content: '';
	position: absolute;
	width: 50%;
	height: 100%;
	left: 0;
	top:0;
	z-index: -1;
	opacity: 0;

	-webkit-transition: opacity 0.4s ease-in;
	   -moz-transition: opacity 0.4s ease-in;
		-ms-transition: opacity 0.4s ease-in;
		 -o-transition: opacity 0.4s ease-in;
			transition: opacity 0.4s ease-in;
}

.vertical-nav-container .vertical-img-section.vertical-img-on {
	opacity: 1;

	-webkit-transition: opacity 0.7s ease-in 1s;
	   -moz-transition: opacity 0.7s ease-in 1s;
		-ms-transition: opacity 0.7s ease-in 1s;
		 -o-transition: opacity 0.7s ease-in 1s;
			transition: opacity 0.7s ease-in 1s;	
}

.vertical-nav-container .vertical-menu-section {
  width: 50%;
  float: right;
}

.vertical-menu .sub-menu{
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  margin-bottom: 20px;
}

.vertical-menu .sub-menu a {
	display: block;
}

.vertical-menu ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.vertical-menu ul li{
    margin-bottom: 20px;
}

.vertical-menu ul li a {
	font-size: 14px;
	line-height: 21px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding-left: 3px;

	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.vertical-menu ul li a + .sub-menu a {
	font-size: 12px;
	line-height: 19px;
	font-weight: 400;
	margin-bottom: 10px;
}

/*-------------------------------*/
	/*Horizontal Navigation Type 1 Style*/
/*-------------------------------*/

.horizontal-nav-trigger {
	position: fixed;
    right: 15px;
    top: 15px;
    z-index: 1000;
    cursor: pointer;
}

.main-horizontal-nav-wrap .menu-container{
    width: auto;
    position: relative;
}

.main-horizontal-nav-wrap .menu-container .logo-section {
	position: absolute;
	left: 40px;
	top: 17px;
	display: none;
}

.main-horizontal-nav-wrap .menu-container .logo-section img {
	width: 30px;
}

.main-horizontal-nav-wrap ul.menu li > a{
    position: relative;
}


/*Main Menu Position center, left or right*/
.main-horizontal-nav-wrap ul.menu{
    text-align: center;
}

/*Main Menu Styles*/
.main-horizontal-nav-wrap ul.menu > li{
    display: inline-block;
    margin-right: 10px;
}

.main-horizontal-nav-wrap ul.menu > li > a{
	font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 43px 25px 40px 25px;
    display: inline-block;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.main-horizontal-nav-wrap.inner-page ul.menu > li > a {
	padding: 23px 25px 20px 25px;
}

/*First Level Sub Menu Styles*/
.main-horizontal-nav-wrap ul.menu .has-dropdown{
    position: relative;
}

.main-horizontal-nav-wrap ul.menu li:not(.megamenu).has-dropdown > .dropdown{
    position: absolute;
    text-align: left;
    opacity: 0;
    min-width: 210px;
    visibility: hidden;
    z-index: 10;
}

.main-horizontal-nav-wrap ul.menu .has-dropdown > .dropdown a{
    padding: 10px 20px;
    display: inline-block;
}

.main-horizontal-nav-wrap ul.menu > li:not(.megamenu).has-dropdown > .dropdown > li > a{
    width: 100%;
    font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	padding-left: 15px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.main-horizontal-nav-wrap li.has-dropdown > .dropdown{
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.main-horizontal-nav-wrap li.has-dropdown:hover > .dropdown{
    opacity: 1;
}


@media (min-width: 320px) and (max-width: 1024px) {
    .main-horizontal-nav-wrap ul.menu > li {
        display: block;
        text-align: left
    }

    .main-horizontal-nav-wrap ul.menu > li > a {
        display: inherit;
    }

    .main-horizontal-nav-wrap ul.menu li.has-dropdown:not(.megamenu) > .dropdown{
        display: none;
        visibility: visible;
        opacity: 1;
        position: static;
    }

    .main-horizontal-nav-wrap ul.menu > li:not(.megamenu).has-dropdown > .dropdown > li.has-dropdown .dropdown{
        display: none;
        width: 100%;
        z-index: 1000;
        visibility: visible;
        opacity: 1;
        position: static;
        left: 0;
        top: 100% !important;
    }
}

/*Main Horizontal Navigation Sticky*/
.main-horizontal-nav-wrap.nav-sticky-on {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.main-horizontal-nav-wrap.nav-sticky-on .menu-container .logo-section {
	display: block;
}

.main-horizontal-nav-wrap.nav-sticky-on ul.menu > li > a {
	padding-top: 23px;
    padding-bottom: 20px;
    padding-right: 15px;
    padding-left: 15px;
}

.main-horizontal-nav-wrap.nav-sticky-on .menu-container > ul.menu > li:not(.megamenu) > .dropdown {
	top: 64px !important;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/*Main Horizontal Nav for Mobile Devices*/

.main-horizontal-nav-wrap.on-mob-nav {
	display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
}

.main-horizontal-nav-wrap.on-mob-nav ul.menu > li > a {
	padding: 10px;
}

.mobile-menu-brand-section h1 {
	font-size: 16px;
	line-height: 23px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding: 28px 10px;
}

/*To Top Button*/

.adam-to-top{
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 555;
	width: 35px;
	height: 35px;
	border-radius: 3px;

	-moz-transform: scale(0);
   -o-transform: scale(0);
   -ms-transform: scale(0);
   -webkit-transform: scale(0);
   transform: scale(0);

	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		 -o-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
}

.adam-to-top a{
	width: 35px;
	height: 35px;
	background: transparent;
	display: inline-block;
	margin:0;
	position: relative;
	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
		-ms-transition: all .5s ease;
		 -o-transition: all .5s ease;
			transition: all .5s ease;
}

.adam-to-top a i{
	font-size: 23px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;

	-moz-transform: translateX(-50%) translateY(-50%);
   -o-transform: translateX(-50%) translateY(-50%);
   -ms-transform: translateX(-50%) translateY(-50%);
   -webkit-transform: translateX(-50%) translateY(-50%);
   transform: translateX(-50%) translateY(-50%);

    -webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		 -o-transition: all .3s ease;
			transition: all .3s ease;
}

.adam-to-top:hover a i{
	-moz-transform: translateX(-50%) translateY(-50%) scale(1.2);
   -o-transform: translateX(-50%) translateY(-50%) scale(1.2);
   -ms-transform: translateX(-50%) translateY(-50%) scale(1.2);
   -webkit-transform: translateX(-50%) translateY(-50%) scale(1.2);
   transform: translateX(-50%) translateY(-50%) scale(1.2);
}
.adam-to-top-scale{
	-moz-transform: scale(1);
   -o-transform: scale(1);
   -ms-transform: scale(1);
   -webkit-transform: scale(1);
   transform: scale(1);
}


/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 03 - COMMON ELEMENTS & TYPOGRAPHY */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------*/
								/* Background Video Player Styles */
/*--------------------------------------------------------------------------------*/

.video-section {
	position: relative;
}

.bgplayer{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover !important;
}

.bgplayer {
	position: absolute;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
}

.bgplayer .buttonBar {
	display: none;
}

/*--------------------------------------------------------------------------------*/
								/* Featherlight Styles */
/*--------------------------------------------------------------------------------*/

.featherlight{
	z-index: 1100;
	cursor: auto;
}
.featherlight .featherlight-content{
	padding-top: 0px;
	border-top: 25px solid transparent;
	position: static;
}

.featherlight-iframe .featherlight-content {
	border-top: 0px solid transparent;
}

.featherlight-next span, .featherlight-previous span{
	font-size: 36px;
	line-height: 43px;
	text-shadow: none;
	display: block;
	opacity: 0.5;

	-webkit-transition: all .4s ease;
	   -moz-transition: all .4s ease;
		-ms-transition: all .4s ease;
		 -o-transition: all .4s ease;
			transition: all .4s ease;
}

.featherlight-next:hover span, .featherlight-previous:hover span {
	opacity: 1;
}

.featherlight .featherlight-close-icon{
	right: 0px;
	top: 0px;
	width: 30px;
	height: 30px;

	-webkit-transition: all .4s ease;
	   -moz-transition: all .4s ease;
		-ms-transition: all .4s ease;
		 -o-transition: all .4s ease;
			transition: all .4s ease;
}
.featherlight .featherlight-close-icon i {
	font-size: 17px;
	line-height: 1px;
	display: inline-block;
	padding-top: 7px;

	-webkit-transition: all .4s ease;
	   -moz-transition: all .4s ease;
		-ms-transition: all .4s ease;
		 -o-transition: all .4s ease;
			transition: all .4s ease;
}
.featherlight.featherlight-loading .featherlight-content{
	background:url('../images/video-loader.gif') #fff  center center no-repeat !important;
}

.featherlight-next:hover, .featherlight-previous:hover {
	background: transparent;
}

/*--------------------------------------------------------------------------------*/
								/* Button Styles */
/*--------------------------------------------------------------------------------*/

/*-------------------------------*/
	/*Button Style 1*/
/*-------------------------------*/

.adam-button-section .adam-button-border-type-one {
	display: inline-block;
	padding: 8px 16px;
	padding-top: 11px;
	font-size: 13px;
	line-height: 20px;
	font-weight: 700;
	letter-spacing: 2px;
	border: 2px solid;
}

/*-------------------------------*/
	/*Button Style 2*/
/*-------------------------------*/

.adam-button-section .adam-button-type-one {
	display: inline-block;
	padding: 4px 8px;
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
}

.adam-button-section .adam-button-type-two {
	display: inline-block;
	padding: 8px 16px;
	padding-top: 11px;
	font-size: 13px;
	line-height: 20px;
	font-weight: 700;
}

/*-------------------------------*/
	/*Button Hover Style*/
/*-------------------------------*/

.adam-button-section .button-hover-style {
	position: relative;
    z-index: 1;
	-webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
}

.adam-button-section .button-hover-style:after {
	content:'';
	width:101%;
	top:0;
	left:0;
	height:100%;
	position:absolute;
	z-index: -1;

	-webkit-transform:scaleX(0);
	transform:scaleX(0);

	-webkit-transform-origin:right top;
	transform-origin:right top;

	transition-property:-webkit-transform;
	transition-property:transform;

	transition-duration:.5s;

	transition-timing-function:cubic-bezier(.645,.045,.355,1);
}

.adam-button-section .button-hover-style:hover:after {
	-webkit-transform:scaleX(1);
	transform:scaleX(1);
	-webkit-transform-origin:left top;
	transform-origin:left top;
}

/*--------------------------------------------------------------------------------*/
								/* Block Hover Style */
/*--------------------------------------------------------------------------------*/

.hover-block-container {
	position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
	-webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
}

.hover-block-container .hover-block-bg {
	width:100%;
	top:0;
	left:0;
	height:100%;
	position:absolute;

	-webkit-transform:scaleY(0);
	transform:scaleY(0);

	-webkit-transform-origin:right bottom;
	transform-origin:right bottom;

	transition-property:-webkit-transform;
	transition-property:transform;

	transition-duration:.5s;

	transition-timing-function:cubic-bezier(.645,.045,.355,1);
}

.hover-block-wrap:hover .hover-block-container .hover-block-bg {
	-webkit-transform:scaleY(1);
	transform:scaleY(1);
	-webkit-transform-origin:left top;
	transform-origin:left top;
}

.hover-block-container .hover-block-content {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	opacity: 0;

	-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
			-o-transform: translate(-50%, -50%);
				-ms-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);

	-webkit-transition: opacity .5s ease-in-out;
       -moz-transition: opacity .5s ease-in-out;
        -ms-transition: opacity .5s ease-in-out;
         -o-transition: opacity .5s ease-in-out;
            transition: opacity .5s ease-in-out;
}

.hover-block-wrap:hover .hover-block-container .hover-block-content {
	opacity: 1;

	-webkit-transition: opacity .5s ease-in-out 0.3s;
       -moz-transition: opacity .5s ease-in-out 0.3s;
        -ms-transition: opacity .5s ease-in-out 0.3s;
         -o-transition: opacity .5s ease-in-out 0.3s;
            transition: opacity .5s ease-in-out 0.3s;
}

/*--------------------------------------------------------------------------------*/
								/* Separator Section Style */
/*--------------------------------------------------------------------------------*/

/*-------------------------------*/
	/*Separator Block Small Style*/
/*-------------------------------*/

.separator-block-small {
	position: relative;
	margin-bottom: 15px;
}

.separator-block-small:after {
	content: '';
	position: absolute;
	width: 60%;
    height: 3px;
    bottom: -8px;
	left: 50%;

	-moz-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
			-o-transform: translateX(-50%);
				-ms-transform: translateX(-50%);
					transform: translateX(-50%);
}

/*-------------------------------*/
	/*Separator Block Large Style*/
/*-------------------------------*/

.separator-block-large {
	position: relative;
	margin-bottom: 80px;
}

.separator-block-large:after {
	content: '';
	position: absolute;
	width: 30%;
    height: 3px;
    bottom: -30px;
	left: 50%;

	-moz-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
			-o-transform: translateX(-50%);
				-ms-transform: translateX(-50%);
					transform: translateX(-50%);
}

/*--------------------------------------------------------------------------------*/
								/* Owl Carousel Styles */
/*--------------------------------------------------------------------------------*/

/*-------------------------------*/
	/*Synced Owl Carousel Type 1 Style*/
/*-------------------------------*/

.synced-owl-section {
	position: relative;
}

.sync2-owl .owl-controls .owl-dots{
	position: absolute;
	left: 50%;
	bottom:-20px;
	z-index: 1;

	-moz-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
			-o-transform: translateX(-50%);
				-ms-transform: translateX(-50%);
					transform: translateX(-50%);
}

.synced-owl-section .sync2-owl .owl-controls .owl-nav div {
	position: absolute;
	top: 50%;
	z-index: 1;

	-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
			-o-transform: translateY(-50%);
				-ms-transform: translateY(-50%);
					transform: translateY(-50%);
}

.synced-owl-section .sync2-owl .owl-controls .owl-nav .owl-prev {
	left: -65px;
}

.synced-owl-section .sync2-owl .owl-controls .owl-nav .owl-next {
	right: -65px;
}

.sync1-owl .owl-controls .owl-dots {
	display: none !important;
}
/*-------------------------------*/
	/*Owl Carousel Style*/
/*-------------------------------*/

.owl-carousel .owl-item {
	backface-visibility: initial;
}

/*-------------------------------*/
	/*Owl Carousel Pagination Style*/
/*-------------------------------*/

.owl-theme .owl-dots .owl-dot span {
	width: 30px;
	height: 6px;
	border-radius: 0;
}

/*-------------------------------*/
	/*Owl Carousel Navigation Style*/
/*-------------------------------*/

.owl-theme .owl-nav {
	margin-top: 0;
}

.owl-carousel .owl-controls .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	/*border-radius: 50%;*/
	background: transparent;

	-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
			-o-transform: translateY(-50%);
				-ms-transform: translateY(-50%);
					transform: translateY(-50%);
}

.owl-theme .owl-nav [class*=owl-]:hover {
	background: transparent;
}

.owl-theme .owl-nav [class*=owl-] i {
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 20px;
	line-height: 1px;

	-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
			-o-transform: translate(-50%, -50%);
				-ms-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);

 	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;					
}

.owl-carousel .owl-controls .owl-nav .owl-prev {
	left: 0;
}

.owl-carousel .owl-controls .owl-nav .owl-next {
	right: 0;
}

/*-------------------------------*/
	/*Skillbar Section Style*/
/*-------------------------------*/

.skill-bars .skill-block {
	width: 100%;
	display: inline-block;
}

.skill-bars .level-full {
	width: 100%;
	height: 3px;
	position: relative;
	z-index: -1;
}

.skill-bars  span.name {
	float: left;
	display: inline-block;
	font-size: 16px;
	line-height: 23px;
	font-weight: 400;
}

.skill-bars  span.amount {
	float: right;
	display: inline-block;
	font-size: 16px;
	line-height: 23px;
	font-weight: 400;
}

.skill-bars .level-full .actual-level {
	width: 0;
	height: 3px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	-webkit-transition: all 1s ease-in-out;
	   -moz-transition: all 1s ease-in-out;
		-ms-transition: all 1s ease-in-out;
		 -o-transition: all 1s ease-in-out;
			transition: all 1s ease-in-out;
}

/*-------------------------------*/
	/*Testimonial Type One style*/
/*-------------------------------*/

.testimonial-type-one-container .img-container {
	width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.testimonial-type-one-container .img-container img {
	display: inline;
    margin: 0 auto;
    height: 100%;
    width: auto;
}

.testimonial-type-one-container .content-container {
	width: 72%;
	margin-left: 14%;
	margin-top: 23px;
	margin-bottom: 20px;
}

.testimonial-type-one-container .content-container p {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

.testimonial-type-one-container .author p {
	font-size: 16px;
    line-height: 23px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 2px;
}

.testimonial-type-one-container .author span {
	text-transform: none;
	letter-spacing: 0px;
	font-style: italic;
}

/*-------------------------------*/
	/*Counter style*/
/*-------------------------------*/

.counter-text-section span {
	display: inline-block;
	font-size: 60px;
	line-height: 50px;
	font-weight: 700;
}

.counter-text-section span.timer {
	font-size: 76px;
	line-height: 76px;
}

.counter-text-section h4 {
	font-size: 15px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-left: 4px;
}

/*-------------------------------*/
	/*Shuffle Style*/
/*-------------------------------*/

.gutter-grid .shuf-item.filtered, .gutter-grid .shuf-item.concealed{
	margin-left: 0% !important;
	-webkit-transition: all 1s ease-in-out;
	   -moz-transition: all 1s ease-in-out;
		-ms-transition: all 1s ease-in-out;
		 -o-transition: all 1s ease-in-out;
			transition: all 1s ease-in-out;
}

/*-------------------------------*/
	/*Accordion Image Style*/
/*-------------------------------*/

.accordion-image-wrap {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.accordion-image-wrap .team-details {
	position: absolute;
	width: 100%;
	display: inline-block;
	left: 0;
	bottom: 60px;
}

.accordion-image-wrap .name {
	font-size: 20px;
	line-height: 27px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.accordion-image-wrap .desig {
	font-size: 14px;
	line-height: 21px;
	font-weight: 700;
	font-style: italic;
}

/*-------------------------------*/
	/*Accordion Block Style*/
/*-------------------------------*/


.accordion-box{
	position:relative;	
}

.accordion-box .accordion{
	position:relative;
	min-height:80px;
	display: inline-block;
	width: 100%;
}

.accordion-box .accordion:before{
	content:'';
	position:absolute;
	display:block;
	left:21px;
	top:20px;
	width:1px;
	height:100%;
}

.accordion-box .accordion:last-child:before{
	display:none;	
}

.accordion-box .accordion .acc-btn{
	position:relative;
	padding:9px 0px 4px 70px;
	margin-bottom:15px;
	cursor:pointer;
	z-index:2;
	font-size: 14px;
	line-height: 23px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.accordion-box .accordion .acc-btn .toggle-icon{
	position:absolute;
	left:0px;
	top:0px;
	display:block;
	width:42px;
	height:42px;
	border-radius:50%;
	-webkit-border-radius:50%;
	-ms-border-radius:50%;
	-o-border-radius:50%;
	-moz-border-radius:50%;
}

.accordion-box .accordion .acc-content{
	position:relative;
	display:none;
	padding:0px 0px 20px 70px;
}

.accordion-box .accordion .acc-content.collapsed{
	display:block;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 04 - HOME PAGE SETUP */
/*-------------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------------------------------------*/
								/*Home Page 1*/
/*--------------------------------------------------------------------------------*/

.home-01-wrap {
	position: relative;
}

.home-01 .overlay-text-wrap {
	position: absolute;
	left: 50px;
	top: 0;
	width: 30%;
	height: calc(100vh);
	z-index: 1;
}

.home-01 .brand-name {
	margin-top: 15px;
}

.home-01 .brand-name h1{
	font-size: 20px;
	line-height: 27px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding-left: 3px;
}

/*-------------------------------*/
	/*Home Owl Nav style*/
/*-------------------------------*/

.home-01-carousel-wrap .owl-carousel .owl-controls .owl-nav [class*=owl-] {
	top: auto;
	bottom: 30px;
	z-index: 10;
	opacity: 0.3;

	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.home-01-carousel-wrap .owl-carousel .owl-controls .owl-nav [class*=owl-]:hover {
	opacity: 1;
}

.home-01-carousel-wrap .owl-carousel .owl-controls .owl-nav .owl-prev {
	left: 25%;
}

.home-01-carousel-wrap .owl-carousel .owl-controls .owl-nav .owl-next {
	left: 30%;
}

/*-------------------------------*/
	/*Home Animated Text style*/
/*-------------------------------*/

.home-01 .animated-text {
	margin-top: 15px;
}

.home-01 .animated-text .cd-headline {
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 2px;
	padding-left: 2px;
	text-transform: uppercase;
}

.home-01 .animated-text .cd-headline i {
	font-style: normal;
}

.home-01-carousel-wrap .item {
	position: relative;
}

.home-01-carousel-wrap .item .img-desc-wrap {
	position: absolute;
	right: 68px;
	bottom: 50px;
	padding: 15px;
}

.home-01-carousel-wrap .item .img-desc-wrap .name {
	font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.home-01-carousel-wrap .item .img-desc-wrap .desig {
	font-size: 14px;
    line-height: 21px;
    font-weight: 400;
}

/*--------------------------------------------------------------------------------*/
								/*Home Page 2*/
/*--------------------------------------------------------------------------------*/

.home-02-header {
	position: relative;
}

.home-02-banner {
	border-bottom: 1px solid #ccc;
}

.home-02-banner h1 {
	margin-top: 30px;
    font-size: 19px;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding-left: 5px;
}

.home-02-banner p {
	margin-top: 15px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    letter-spacing: 2px;
    padding-left: 2px;
    text-transform: uppercase;
}

.home-02-wrap {
	position: relative;
}

.home-02-wrap .home-02-hero-text-wrap {
	position: absolute;
	width: 70%;
	left: 50%;
	top: 50%;
	-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
			-o-transform: translate(-50%, -50%);
				-ms-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
}

.home-02-wrap .home-02-hero-text {
	position: relative;
}

.home-02-wrap .home-02-hero-text:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -20px;
	width: 28%;
	height: 12px;
	background-color: #03A9F4;

	-moz-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
			-o-transform: translateX(-50%);
				-ms-transform: translateX(-50%);
					transform: translateX(-50%);
}

.home-02-wrap .home-02-hero-text h1 {
	font-size: 26px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 4px;
    padding-left: 4px;
}

.home-02-wrap .home-02-hero-text p.bold-text {
	font-size: 82px;
    line-height: 87px;
    font-weight: 700;
    letter-spacing: 8px;
    padding-left: 4px;
    display: inline-block;
    margin-top: 15px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------------------------*/
								/*Home Page 3*/
/*--------------------------------------------------------------------------------*/

.vegas-body-bg-slider {
	position: absolute !important;
}

/*.vegas-timer {
	display: none;
}
*/
.home-03-wrap {
	position: relative;
}

.home-03-wrap .home-03-hero-text-wrap {
	position: absolute;
	width: 70%;
	left: 5%;
	top: 50%;
	z-index: 10;
	-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
			-o-transform: translateY(-50%);
				-ms-transform: translateY(-50%);
					transform: translateY(-50%);
}

.home-03-hero-text .home-03-text-carousel {
	margin-top: 30px;
}

.home-03-wrap .home-03-hero-text p.bold-text {
	font-size: 100px;
	line-height: 90px;
	font-weight: 700;
	text-transform: uppercase;
}

/*--------------------------------------------------------------------------------*/
								/*Home Page 4*/
/*--------------------------------------------------------------------------------*/

.home-04-carousel-wrap .item {
	position: relative;
}

.home-04-carousel-wrap .item .img-desc-wrap {
	width:40%;
	position: absolute;
	right: 60px;
	top:20px;
	padding: 15px;
	opacity: 0;

	-moz-transform: translateY(-20%);
		-webkit-transform: translateY(-20%);
			-o-transform: translateY(-20%);
				-ms-transform: translateY(-20%);
					transform: translateY(-20%);

	-webkit-transition: all 1s ease-in;
	   -moz-transition: all 1s ease-in;
		-ms-transition: all 1s ease-in;
		 -o-transition: all 1s ease-in;
			transition: all 1s ease-in;		
			background-color:rgba(255,255,255,0.7);		
}

.home-04-carousel-wrap .owl-item.active .item .img-desc-wrap {
	opacity: 1;

	-moz-transform: translateY(20%);
		-webkit-transform: translateY(20%);
			-o-transform: translateY(20%);
				-ms-transform: translateY(20%);
					transform: translateY(20%);
}

.home-04-carousel-wrap .item .img-desc-wrap .name {
	font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    position: relative;
    padding-bottom: 3px;
    margin-bottom: 5px;
}

.home-04-carousel-wrap .item .img-desc-wrap .name:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;

	-webkit-transition: all 1.5s ease-in 0.5s;
	   -moz-transition: all 1.5s ease-in 0.5s;
		-ms-transition: all 1.5s ease-in 0.5s;
		 -o-transition: all 1.5s ease-in 0.5s;
			transition: all 1.5s ease-in 0.5s;
}

.home-04-carousel-wrap .owl-item.active .item .img-desc-wrap .name:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 70%;
	height: 2px;
}

.home-04-carousel-wrap .item .img-desc-wrap .desig {
	font-size: 14px;
    line-height: 21px;
    font-weight: 400;
}

.home-04-carousel-wrap .owl-carousel .owl-controls .owl-nav [class*=owl-] {
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

/*--------------------------------------------------------------------------------*/
								/*Home Page 5*/
/*--------------------------------------------------------------------------------*/

.home-05 {
	position: relative;
}

.home-05 .bg-img-section {
	position: absolute;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
}

.home-05-hero-text {
	width: 100%;
}

.home-05-hero-text h1 {
	font-size: 120px;
    line-height: 130px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 32px;
    padding-left: 32px;
    position: relative;
}

.home-05-hero-text h2 {
	font-size: 24px;
	line-height: 31px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 14px;
	padding-left: 14px;
}

.home-05-hero-text h2 .cd-words-wrapper b {
	font-weight: 400;
	font-style: normal;
}

/*--------------------------------------------------------------------------------*/
								/*Home Page 6*/
/*--------------------------------------------------------------------------------*/

.home-06-content-section {
	position: relative;
}

.home-06-content-section:after {
	content: '';
	position: absolute;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	background: url(../images/pattern-bg.png);
}

.home-06-content-section .content {
	z-index: 1;
	padding-left: 70px;
}

.home-06-content-section .banner-text-head {
	font-size: 18px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding-left: 5px;
    margin-bottom: 40px;
}

.home-06-content-section .cd-words-wrapper i {
	font-style: normal;
    font-size: 124px;
    line-height: 127px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 28px;
}

.home-06-content-section .cd-headline.scale i.in {
  -webkit-animation: scale-up 0.6s forwards;
  -moz-animation: scale-up 0.6s forwards;
  animation: scale-up 0.6s forwards;
}
.home-06-content-section .cd-headline.scale i.out {
  -webkit-animation: scale-down 0.6s forwards;
  -moz-animation: scale-down 0.6s forwards;
  animation: scale-down 0.6s forwards;
}

.home-06-content-section .adam-button-section {
	margin-top: 40px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 05 - PAGES & SECTIONS SETUP */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------*/
								/*About Page 1*/
/*--------------------------------------------------------------------------------*/

/*-------------------------------*/
	/*Top Carousel style*/
/*-------------------------------*/

.about-hero-content {
	padding:0px 30px;
}

/*-------------------------------*/
	/*Team Members 1 style*/
/*-------------------------------*/

.team-type-one-content-section {
	padding: 50px 10px;
}

.team-type-one-content-section .name{
	font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.team-type-one-content-section .desig {
	font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    font-style: italic;
    margin: 7px 0px;
}

.team-type-one-content-section p {
	font-size: 14px;
	line-height: 24px;
}

.team-type-one-content-section ul {
	margin-top: 7px;
}

.team-type-one-content-section ul li {
	display: inline-block;
	margin: 5px;
}

.team-type-one-content-section ul li a {
	display: inline-block;
	padding: 5px;
}

.team-type-one-content-section ul li a i {
	font-size: 20px;
	line-height: 27px;

	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

/*--------------------------------------------------------------------------------*/
								/*About Page 2*/
/*--------------------------------------------------------------------------------*/

/*-------------------------------*/
	/*Team Members 2 style*/
/*-------------------------------*/

.team-type-two-block .content-section {
	padding: 20px;
}

.team-type-two-block .content-section .name {
	font-size: 16px;
	line-height: 23px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.team-type-two-block .content-section .desig {
	font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    letter-spacing: 1px;
    padding-left: 1px;
}

.team-type-two-block ul li {
	display: inline-block;
	margin: 5px;
}

.team-type-two-block ul li a {
	display: inline-block;
	padding: 5px;
}

.team-type-two-block ul li a i {
	font-size: 20px;
	line-height: 27px;

	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}



/*--------------------------------------------------------------------------------*/
								/*Service Page 1*/
/*--------------------------------------------------------------------------------*/

.service-type-one {
	padding-top: 150px;
	padding-bottom: 110px;
}

.service-type-one-container {
	padding: 20px;
	padding-top: 0;
}

.service-type-one-container .icon-section i {
	font-size: 64px;
	line-height: 71px;
}

.service-type-one-container h3.heading {
	font-size: 16px;
    line-height: 23px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-left: 4px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.service-type-one-container p {
	font-size: 13px;
	line-height: 24px;
}

.service-type-one-container .separator-block-small:after {
	bottom: -16px;
}

/*-------------------------------*/
	/*Features style*/
/*-------------------------------*/

.features-carousel .owl-dot {
	padding: 30px;
	padding-top: 0;
	padding-bottom: 20px;
	margin-bottom: 32px;
	border-bottom: 4px solid;

	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.features-carousel .owl-dot i {
	font-size: 70px;
    line-height: 77px;

    -webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.features-carousel .item h3 {
	font-size: 24px;
    line-height: 31px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-left: 4px;
}

.features-carousel .item p {
	font-size: 13px;
	line-height: 24px;
	margin-top: 15px;
	width: 80%;
	margin-left: 10%;
}

/*--------------------------------------------------------------------------------*/
								/*Service Page 2*/
/*--------------------------------------------------------------------------------*/

.service-type-two-block {
	padding: 40px 20px;
	border: 0px solid black;

	-webkit-transition: all .2s ease-in-out;
	   -moz-transition: all .2s ease-in-out;
		-ms-transition: all .2s ease-in-out;
		 -o-transition: all .2s ease-in-out;
			transition: all .2s ease-in-out;
}

.service-type-two-block:hover {
	border: 5px solid;
}

.service-type-two-block .icon-section i {
	font-size: 64px;
	line-height: 71px;
}

.service-type-two-block .content-section {
	position: relative;
}

.service-type-two-block .content-section:after {
	content: '';
	position: absolute;
	left: -35px;
	top: 50%;
	width: 3px;
	height: 85%;

	-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
			-o-transform: translateY(-50%);
				-ms-transform: translateY(-50%);
					transform: translateY(-50%);
}

.service-type-two-block .content-section h3.heading {
	font-size: 16px;
    line-height: 23px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-left: 4px;
    margin-top: 0px;
    margin-bottom: 15px;
}

.service-type-two-block .content-section p {
	font-size: 13px;
	line-height: 24px;
}

/*--------------------------------------------------------------------------------*/
								/*Portfolio Page*/
/*--------------------------------------------------------------------------------*/

.portfolio-wrap {
	padding-bottom: 138px;
}

.feather-single, .feather-gallery {
	cursor: url(../images/cursor/lightbox-white.png), auto;
}

.popup-video {
	cursor: url(../images/cursor/play-white.png), auto;
}

/*-------------------------------*/
	/*Filter style*/
/*-------------------------------*/

.portfolio-filter-nav ul{
	margin-bottom: 0px;
	padding-left: 0px;
}
.portfolio-filter-nav ul li{
	list-style: none;
	display: inline-block;
	position: relative;
	margin: 0px 15px;
}

.portfolio-filter-nav ul li a{
	padding: 3px 0px;
	font-size: 14px;
	line-height: 21px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 3px;
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		 -o-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
}

/*-------------------------------*/
	/*Portfolio Hover style*/
/*-------------------------------*/

.portfolio-hover-content p{
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	letter-spacing: 3px;
	padding-left: 3px;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.portfolio-hover-content p:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 60%;
	height: 2px;

	-moz-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
			-o-transform: translateX(-50%);
				-ms-transform: translateX(-50%);
					transform: translateX(-50%);
}

/*-------------------------------*/
	/*Portfolio Page 4*/
/*-------------------------------*/

/* clearfix */
.packery:after {
  content: ' ';
  display: block;
  clear: both;
}

.parallax-random-grid .works-item {
  width:  25%;
  position: absolute;
 /* margin-bottom: 130px;
  margin-top: 20px; */
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.parallax-random-grid .works-item.w2 { width:  33%;
  /*margin-bottom: 80px; margin-top: 50px;*/ }
.parallax-random-grid .works-item.w4 { width:  50%;
  /*margin-bottom: 160px; margin-top: 70px;*/ }

.margin-top-20 {
	margin-top: 20px;
}

.margin-top-50 {
	margin-top: 50px;
}

.margin-top-70 {
	margin-top: 70px;
}

.margin-bottom-80 {
	margin-bottom: 80px;
}

.margin-bottom-130 {
	margin-bottom: 130px;
}

.margin-bottom-160 {
	margin-bottom: 160px;
}

.margin-left-20 {
	margin-left: 20%;
}

.margin-left-10 {
	margin-left: 10%;
}

.parallax-random-grid .gutter-sizer { width: 10%; }

.works-item-fade{
	opacity: 0.1;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.works-item-fade .hover-block-container .hover-block-bg {
	width: 0;
	height: 0;
}

.works-item-fade .hover-block-container .hover-block-content {
	display: none;
}

/*--------------------------------------------------------------------------------*/
								/*News Page*/
/*--------------------------------------------------------------------------------*/

/*-------------------------------*/
	/*News Carousel style*/
/*-------------------------------*/

.news-carousel-each {
	display: block;
	width: 100%;
	height: 500px;
	position: relative;

	display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-carousel-each:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0.7;

	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		 -o-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
}

.news-carousel-container .owl-controls{
	position: absolute;
    width: 100%;
    bottom: 37px;
}

.news-carousel-each .content {
	width: 80%;
	margin-left: 10%;
	z-index: 1;
}

.news-carousel-each .content .date {
	font-size: 16px;
    line-height: 23px;
    font-weight: 400;
}

.news-carousel-each .content .title {
	font-size: 26px;
    line-height: 33px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-left: 4px;
    margin: 15px 0px;
}

.news-carousel-each .content .author {
	font-size: 16px;
    line-height: 23px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.news-carousel-each .content .author > span {
	text-transform: none;
    letter-spacing: 0px;
    font-weight: 700;
}

/*-------------------------------*/
	/*News Block style*/
/*-------------------------------*/

.news-block-section.masonry-type {
	padding-bottom: 138px;
}

.news-type-one-container .img-wrap {
	position: relative;
}

.news-type-one-container .img-wrap .overlay {
	position: absolute;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;

	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		 -o-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
}

.news-type-one-container:hover .img-wrap .overlay {
	opacity: 1;
}

.news-type-one-container .img-wrap .overlay i {
	font-size: 40px;
	line-height: 1;
	position: absolute;
	left: 50%;
	top: 50%;
	opacity: 1;

	-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
			-o-transform: translate(-50%, -50%);
				-ms-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
}

.news-type-one-container .content-wrap {
	padding: 30px;
}

.news-type-one-container .content-wrap .date {
	font-size: 12px;
    line-height: 19px;
    font-weight: 400;
}

.news-type-one-container .content-wrap .title {
	font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-left: 0px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.news-type-one-container .content-wrap .author {
	font-size: 12px;
    line-height: 17px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 15px;
}

.news-type-one-container .content-wrap .author > span {
	display: block;
	text-transform: none;
    letter-spacing: 0px;
    font-weight: 400;
}

/*-------------------------------*/
	/*News Equi Block style*/
/*-------------------------------*/

.news-equi-block-container .news-type-one-container {
	margin-bottom: 30px;
}

/*-------------------------------*/
	/*News Aside Section*/
/*-------------------------------*/

.news-aside-header p {
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
	padding-left: 14px;
	padding-top: 12px;
	padding-bottom: 10px;
	padding-right: 10px;
}

.news-aside-container .news-category {
	margin-left: 12px;
}

.news-aside-container .news-category li {
	margin-bottom: 10px;
	overflow: hidden;
	width: 100%;
}

.news-aside-container .news-category li a {
	font-size: 13px;
	line-height: 19px;
	font-weight: 400;
	float: left;

	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
		-ms-transition: all .4s;
		 -o-transition: all .4s;
			transition: all .4s;
}

.news-aside-container .news-category li span {
	font-size: 13px;
	line-height: 19px;
	font-weight: 400;
	float: right;
	margin-right: 12px;
}

.news-aside-container .most-viewed-post li {
	margin-top: 15px;
}

.news-aside-container .most-viewed-post li:first-child {
	margin-top: 0;
}

.news-aside-container .most-viewed-post a {
	display: inline-block;
	width: 100%;
	overflow: hidden;
}

.news-aside-container .most-viewed-post .img-section {
	width:80px;
	height: 80px;
	float: left;
	display: inline-block;
}

.news-aside-container .most-viewed-post .content-section {
	height: 80px;
	margin-left: 80px;
}

.news-aside-container .most-viewed-post .content-section h4 {
	font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    padding-left: 14px;

    -webkit-transition: all .4s;
	   -moz-transition: all .4s;
		-ms-transition: all .4s;
		 -o-transition: all .4s;
			transition: all .4s;
}

/*--------------------------------------------------------------------------------*/
								/*Contact Page*/
/*--------------------------------------------------------------------------------*/

.contact-hero-text {
	margin-top: 100px;
	margin-bottom: 140px;
}

.contact-home-hero-text {
	padding-top: 70px;
	padding-bottom: 150px;
}

.contact-hero-text.separator-block-large:after {
	bottom: -40px;
}

/*-------------------------------*/
	/*Map style*/
/*-------------------------------*/
.contact-map-wrap {
	width: 100%;
	height: 350px;
}

/*-------------------------------*/
	/*Contact Address style*/
/*-------------------------------*/

.contact-one-address-container {
	width: 70%;
	margin-left: 15%;
	height: 350px;
}

.contact-one-address-container h3 {
	font-size: 16px;
    line-height: 33px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-left: 4px; 
}

/*-------------------------------*/
	/*Contact Type 2 Address style*/
/*-------------------------------*/

.contact-one-address-container.type-two {
	height: auto;
}

/*-------------------------------*/
	/*Contact Form style*/
/*-------------------------------*/

.contact-form input.website_url{
	display: none !important;
}

.error-msg::-webkit-input-placeholder{
	font-weight: 700;
	color: #f00 !important;
}

.error-msg:-moz-placeholder{
	font-weight: 700;
	color: #f00 !important;
}

.error-msg::-moz-placeholder{
	font-weight: 700;
	color: #f00 !important;
}

.error-msg:-ms-input-placeholder{
	font-weight: 700;
	color: #f00 !important;
}

.contact-form input[type="text"]{
	font-size: 16px;
	line-height: 23px;
	text-align: left;
	margin-bottom: 25px;
	display: block;
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 2px solid;
	outline: none;
}

.contact-form textarea{
	font-size: 16px;
	line-height: 23px;
	text-align: left;
	display: block;
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 2px solid;
	outline: none;
	resize: none;
}

.contact-form button[type="submit"]{
	position: relative;
    z-index: 1;
	padding: 5px 25px;
	margin-top: 20px;
	outline: none;
	border: none;
	box-shadow: none;
	-webkit-transition: all .5s ease-in;
	   -moz-transition: all .5s ease-in;
		-ms-transition: all .5s ease-in;
		 -o-transition: all .5s ease-in;
			transition: all .5s ease-in;
}

.contact-form button[type="submit"]:after {
	content:'';
	width:101%;
	top:0;
	left:0;
	height:100%;
	position:absolute;
	z-index: -1;

	-webkit-transform:scaleX(0);
	transform:scaleX(0);

	-webkit-transform-origin:right top;
	transform-origin:right top;

	transition-property:-webkit-transform;
	transition-property:transform;

	transition-duration:.5s;

	transition-timing-function:cubic-bezier(.645,.045,.355,1);
}

.contact-form button[type="submit"]:hover:after {
	-webkit-transform:scaleX(1);
	transform:scaleX(1);
	-webkit-transform-origin:left top;
	transform-origin:left top;
}

.contact-form button[type="submit"] span {
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	-webkit-transition: all .5s ease-in;
	   -moz-transition: all .5s ease-in;
		-ms-transition: all .5s ease-in;
		 -o-transition: all .5s ease-in;
			transition: all .5s ease-in;
}

.contact-form ::-webkit-input-placeholder{ /* WebKit browsers */
    font-size: 16px;
    line-height: 23px;
   	text-align: left;
    opacity:  1;
    font-weight: 400;
}

.contact-form :-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
    font-size: 16px;
    line-height: 23px;
   	text-align: left;
    opacity:  1;
    font-weight: 400;
}

.contact-form ::-moz-placeholder{ /* Mozilla Firefox 19+ */
    font-size: 16px;
    line-height: 23px;
   	text-align: left;
    opacity:  1;
    font-weight: 400;
}

.contact-form :-ms-input-placeholder{ /* Internet Explorer 10+ */
    font-size: 16px;
    line-height: 23px;
   	text-align: left;
    opacity:  1;
    font-weight: 400;
}

/*MD Overlay Styles*/

.md-modal .md-content h3 {
	letter-spacing: 3px;
	padding-left: 3px;
}

.md-modal button{
	position: relative;
    z-index: 1;
	padding: 5px 25px;
	margin-top: 20px;
	outline: none;
	border: none;
	box-shadow: none;
	-webkit-transition: all .5s ease-in;
	   -moz-transition: all .5s ease-in;
		-ms-transition: all .5s ease-in;
		 -o-transition: all .5s ease-in;
			transition: all .5s ease-in;
}

.md-modal button:hover {
	border: none;
}

.md-modal button:after {
	content:'';
	width:101%;
	top:0;
	left:0;
	height:100%;
	position:absolute;
	z-index: -1;

	-webkit-transform:scaleX(0);
	transform:scaleX(0);

	-webkit-transform-origin:right top;
	transform-origin:right top;

	transition-property:-webkit-transform;
	transition-property:transform;

	transition-duration:.5s;

	transition-timing-function:cubic-bezier(.645,.045,.355,1);
}

.md-modal button:hover:after {
	-webkit-transform:scaleX(1);
	transform:scaleX(1);
	-webkit-transform-origin:left top;
	transform-origin:left top;
}

.md-modal button span {
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	-webkit-transition: all .5s ease-in;
	   -moz-transition: all .5s ease-in;
		-ms-transition: all .5s ease-in;
		 -o-transition: all .5s ease-in;
			transition: all .5s ease-in;
}

/*--------------------------------------------------------------------------------*/
								/*Project Page Section*/
/*--------------------------------------------------------------------------------*/

.extra-page-para-text {
	font-size: 15px;
    line-height: 28px;
}

.single-project-img-carousel .owl-controls {
    position: absolute;
    left: 50%;
    bottom: 45px;
    z-index: 1;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
} 

/*--------------------------------------------------------------------------------*/
								/*Blog Page Section*/
/*--------------------------------------------------------------------------------*/   

.blog-heading h3 {
	font-size: 32px;
	line-height: 39px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.blog-post-desc {
	border-top: 1px solid;
}

.blog-post-desc h3 {
	font-size: 16px;
	line-height: 23px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding-left: 3px;
}

.blog-post-desc h4 {
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
}

/*--------------------------------------------------------------------------------*/
								/*Footer Section*/
/*--------------------------------------------------------------------------------*/

.footer-section-wrap {
	position: absolute;
	padding-left: 50px;
	padding-right: 50px;
	bottom:0px;
	width:100%
}

.footer-name {
	float: left;
}

.footer-name h1 {
	font-size: 14px;
	line-height: 21px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.footer-name p {
	font-size: 12px;
	line-height: 19px;
	font-weight: 400;
}

.footer-social-icons {
	position: absolute;
	right: 0;
	top:50%;

	-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
			-o-transform: translateY(-50%);
				-ms-transform: translateY(-50%);
					transform: translateY(-50%);
}

.footer-social-icons ul {
	margin: 0px;
}

.footer-social-icons ul li {
	display: inline-block;
	margin: 5px;
}

.footer-social-icons ul li a {
	display: inline-block;
	padding: 5px;
}

.footer-social-icons ul li a i {
	font-size: 20px;
	line-height: 1px;

	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}



/*--------------------------------------------------------------------------------*/
								/*Parallax Styles*/
/*--------------------------------------------------------------------------------*/

.parallax-layer{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed !important;
}

/*this class will be activated on mobile devices in order to switch off the parallax effect*/
.parallax-off, .no-parallax {
	background-attachment:scroll !important;
	background-size:cover !important;
}



.scrollbar
{
	padding-right:25px;

	float: left;
	height: 250px;
	overflow-y: scroll;
	margin-bottom: 25px;
}

.force-overflow
{
	min-height: 450px;
}
/*
 *  STYLE 4
 */

#style-4::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
}


@media (min-width: 100px) and (max-width: 450px) {
.home-04-carousel-wrap .item .img-desc-wrap {
	width:100%;
	position: absolute;
	right: 0px;
	top:20px;
	padding: 15px;
	opacity: 0;

	-moz-transform: translateY(-20%);
		-webkit-transform: translateY(-20%);
			-o-transform: translateY(-20%);
				-ms-transform: translateY(-20%);
					transform: translateY(-20%);

	-webkit-transition: all 1s ease-in;
	   -moz-transition: all 1s ease-in;
		-ms-transition: all 1s ease-in;
		 -o-transition: all 1s ease-in;
			transition: all 1s ease-in;		
			background-color:rgba(255,255,255,0.7);		
}	
		
}
