@charset "utf-8";


/* ----------------------------------

Name: style.css

------------------------------------- */


/*	Table of contents
	-----------------
			
			
		01. Generel Styles

			+ Google Fonts
			+ Essential Styling
			+ Padding Styles
			+ Margin Styles
			+ Border Styles
			+ Buttons
			+ Floats
			+ Row Fix
			+ Section Styles
			+ Separators

		02. Typography

			+ Text Styles
			+ Text Aligns
			+ Text Weight
			+ Text Transformation
			+ Text Colors
			+ Text Sizes

		03. Backgrounds

			+ Overlays
			+ Image Backgrounds
			+ Colored Backgrounds
			+ Transparent Backgrounds

		04. Social Media Icons

		05. Loading Screen

			+ Loader Logo
			+ Loader Animation
			+ After Loading

		06. Navigations

			+ Navigations Styles
			+ Navigations Links

		07. Home Page Styles

			+ Left Sides
			+ Right Sides
			+ Home Section Backgrounds
			+ Header Basics
			+ Minimal Styings
			+ Home Social Icons

		08. Professionals Style Fix

			+ Positioning Fix
			+ Film Maker Fix
			+ Model Fix
			+ Real Estate Agent Fix
			+ Musician Fix
			+ Fashion Designer Fix
			+ Lawyer Fix

		09. Home Page Navigations

			+ Fashion Designer Navigations
			+ Influencer Navigations

		10. About


		11. Tours & Events
			
			+ Tours
			+ Events

		12. Map

		13. Films

		14. Equipments

		15. History

		16. Packages

		17. Slideshow

		18. Video

		19. Testimonial Slider

		20. Skills

		21. Services

			+ Services Style 01
			+ Services Style 02
			+ Services Style 03
			+ Services Style 04 (Lawyers)

		22. Blog

			+ Posts
			+ Iframe
			+ Sidebars
			+ Category
			+ Archive
			+ Featured Posts
			+ Comment

		23. FAQ

		24. Clients

		25. Gallery

		26. Portfolio

			+ Spacing & Positioning
			+ Filters
			+ Hovers & Overlays
			+ Gutters
			+ Single Projects

		27. Store

		28. Contact

		30. Shop

		31. Footer

		32. Responsive
		

*/




/*======================

	01. Generel Styles 

========================*/



/* Google Fonts
-------------------------*/



	/* Lato */
	@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900);
	
	/* Montserrat */
	@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,700,800,900);

	
	
	
/* Essential Styling
-------------------------*/



	*{
		margin: 0%;
		padding: 0%;
		
	}

	::selection {
		background-color: #ececec;
	}

	
	html, body {
		width:100%;
		padding:0;
		margin-left:0;
		margin-right:0;
		font-family: 'Montserrat', sans-serif;
		-webkit-font-smoothing: antialiased;
		text-align: center;
		font-size: 1em;
	}

	body{
		overflow-x: hidden; 
	}
	
	body > .inner {
		display: none;
	}

	body.pg-loaded > .inner {
	  display: block;
	}


	img {
	    -moz-user-select: none; 
	    -webkit-user-select: none;
	    -ms-user-select: none; 
	    user-select: none; 
	    -webkit-user-drag: none;
	    user-drag: none;
		width: 100%;
	}
	
	i{
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	a{
		color: #191919;
		text-decoration:none;
		outline:none;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;

	}

	a:hover,
	a:active,
	a:focus
	{
		text-decoration:none;
		outline:none;
		color: #505050;
	
	}
	
	a i:hover,
	a i:active,
	a i:focus
	{
		text-decoration:none;
		outline:none;
		color: #505050;
	}

	

	h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
		font-family: 'Montserrat', sans-serif;
		font-weight:100;
		margin: 0px;
		padding: 0px
	}

	p{
		margin:0 0 5px;
		font-family: 'Montserrat', sans-serif;
		line-height: 1.8;
	}

	.clear{
		clear:both;
	}

	ol, ul, li{
		list-style:none;
		padding:0;
	}
	
	.box-shadow{
		
		-o-box-shadow: 0px 3px 10px rgba(0,0,0,.3);
		-ms-box-shadow: 0px 3px 10px rgba(0,0,0,.3);
		-webkit-box-shadow: 0px 3px 10px rgba(0,0,0,.3);
		-moz-box-shadow: 0px 3px 10px rgba(0,0,0,.3);
		box-shadow: 0px 3px 10px rgba(0,0,0,.3)
	}
	
	.fullwidth{
		width: 100%;
	}
	
	.fullheight{
		height: 100vh;
		height: 100%;
	}
	
	.pointer{
		cursor: pointer;
	}

	blockquote{
		line-height: 1.8;
	}
	
	
	
/*	Padding Styles
-------------------------*/


	.no-padding{
		padding:0 !important;
	}
	
	.no-padding-bottom{
		padding-bottom: 0px !important;
	}
	
	.no-padding-top{
		padding-top: 0px !important;
	}
	
	.no-padding-left{
		padding-left: 0px !important;
	}
	
	.no-padding-right{
		padding-right: 0px !important;
	}
	
	.padding-15px{
		padding: 15px;
	}

	
/*	Margin Styles
-------------------------*/


	.no-margin{
		margin: 0px !important;
	}
	
	.no-margin-right{
		margin-right: 0px !important;
	}
	
	.no-margin-left{
		margin-left: 0px !important;
	}
	
	.no-margin-top{
		margin-top: 0px !important;
	}
	
	.no-margin-bottom{
		margin-bottom: 0px !important;
	}
	
	.auto-margin{
		margin: auto !important;
	}
	

/*	Border Styles
-------------------------*/

	
	.no-border{
		border: none !important;
		border-style: none !important;
	}
	
	.no-border-left{
		border-left: none !important;
	}

	.no-border-right{
		border-right: none !important;
	}
	
	.no-border-top{
		border-top: none !important;
	}
	
	.no-border-bottom{
		border-bottom: none !important;
	}
	
	.no-border-radius{
		border-radius: 0px !important;
	}
	
	.full-border-radius{
		border-radius: 100%;
	}
	
	.border-dark{
		border-color: #191919;
	}
	
	.border-gray{
		border-color: #505050;
	}
	
	.border-white{
		border-color: #fff;
	}
	
	.border-7px{
		border: 7px solid rgba(0,0,0,0.1)
		
	}
	
	.uk-animation-middle-left{
		transform-origin: 0 50%;
		-moz-transform-origin: 0 50%;
		-ms-transform-origin: 0 50%;
		-o-transform-origin: 0 50%;
	}

	
	
/* Buttons
-------------------------*/


	.button,
	.btn{
		z-index: 0;
		border: 1px solid #ced4da;
		border-radius: 0px;
		cursor: pointer;
		color: #000;
		padding: 0px;
		display: block;
		width: 150px;
		box-shadow: none;
		height: 53px;
		line-height: 50px;
		margin-top: 30px;
		letter-spacing: 1px;
		text-transform: uppercase;
		font-size: 11px;
		font-weight: 800;
		word-spacing: 1px;
		background: transparent;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.button:hover,
	.button:active,
	.button:focus{
		border: 1px solid #000;
		background: transparent;
		color: #ccc;
	}

	
	.btn-success:hover,
	.btn-success:focus,
	.btn-success:active{
		border: 1px solid #000;
		background: transparent;
		color: #191919;
	}
	
	.btn-success:not(:disabled):not(.disabled).active:focus, 
	.btn-success:not(:disabled):not(.disabled):active:focus, 
	.show>.btn-success.dropdown-toggle:focus,
	.btn-success:not(:disabled):not(.disabled).active, 
	.btn-success:not(:disabled):not(.disabled):active, 
	.show>.btn-success.dropdown-toggle{
		border: 1px solid #000;
		background: transparent;
		background: #191919;
		color: #fff;
		box-shadow: none;
	}
	
	
	.buttons .button{
		margin-bottom: 20px;
		border-color: #505050;
		color: #a7a7a7;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
	}
	
	.buttons .button:hover{
		border: 1px solid #fff;
		color: #fff;
	}
	
	
/* Floats
-------------------------*/

	
	.float-l{
		float: left !important;
	}
	
	.float-r{
		float: right !important;
	}



/* Row Fix
-------------------------*/

	
	.row:before, 
    .row:after {
        content:"";
        display: table ;
        clear:both;
    }
	
	
	
/* Section Styles

-------------------------*/

	
	.section-content{
		padding: 0px 10% 0px 10%;
		z-index: 9999;
	}
	
	
	.section-content-full{
		padding: 0px 0% 0px 0%;
		z-index: 9999;
	}
		
	.section-content-over-img{
		background: #fff;
		margin: 50px;
		padding: 100px;
	}
	
	.section-title{
		margin-bottom: 75px;
	}
	
	.section-title h2{
		margin-bottom: 10px;
	}
	
	.title-2 h2 span{
		letter-spacing: 4px;
	}
	
	.title-3 h3{
		letter-spacing: 4px;
	}
	
	
	
	
/* Separators
----------------------------*/	


	
	.separator { 
		width: 60px;
		height: 5px;
		background: #e0e0e0 none repeat;
		margin-top: 40px;
		margin-bottom: 40px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.separator-small,
	.separator-small-white,
	.separator-center{ 
		width: 40px;
		height: 2px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.separator-center{
		margin: 40px auto;
		background: #505050 none repeat;
	}
	
	.separator-small{
		margin-top: 40px;
		margin-bottom: 40px;
		background: #505050 none repeat;
	}
	
	.separator-small-white{
		margin-top: 40px;
		margin-bottom: 40px;
		background: #fff none repeat;
	}
	

	
/*======================

	02. Typography

========================*/




/* Text Styles
-------------------------*/



	.lato{
		font-family: 'Lato', sans-serif;
	}
	
	.montserrat{
		font-family: 'Montserrat', sans-serif;
	}
	



/* Text Aligns
-------------------------*/


	.t-left{
		text-align:left !important;
	}

	.t-center{
		text-align:center !important;
	}

	.t-right{
		text-align:right !important;
	}
	
	.no-line-height{
		line-height: 1 !important;
	}
	
	.line-height-3{
		line-height: 1.3;
	}

	
	
	
/* Text Weight
-------------------------*/


	.ultrabold{
		font-weight: 900;
	}

	.extrabold{
		font-weight: 800;
	}

	.bold{
		font-weight: 700;
	}

	.semibold{
		font-weight: 600;
	}

	.normal{
		font-weight: 500;
	}
	
	.light{
		font-weight: 300;
	}

	.lighter{
		font-weight: 100;
	}
	

	
/* Text Transformation
-------------------------*/


	.italic{
		font-style: italic;
	}

	.uppercase{
		text-transform: uppercase;
	}
	
	.lowercase{
		text-transform: lowercase;
	}
	
	.underline{
		text-decoration: underline;
	}
	
	.linethrough{
		text-decoration: line-through;
	}
	
	

/* Text Colors
-------------------------*/


	.dark{
		color: #191919;
	}

	.white{
		color: #fff;
	}

	.gray1{
		color: #a7a7a7;
	}

	.gray2{
		color: #505050;
	}
	
	.colored-purple{
		color:	#f45dff;
	}

	.colored-gold{
		color: #F3C563;
	}
	
	.colored-blue{
		color: #0A93DB;
	}
	
	.colored-turquoise{
		color: #c8d4d3;
	}
	
	.colored-pink{
		color: #FFD0DE;
	}
	
	.colored-red{
		color: #FF3232;
	}
	

	
/* Text Sizes
-------------------------*/


	.f-smaller{
		font-size: 13px;
		
	}
	
	.f-small{
		font-size: 14.5px;
		
	}
	
	.f-normal{
		font-size: 1em;
		
	}
	
	.f-semi-expanded{
		font-size: 1.25em;
		
	}
	
	.f-medium{
		font-size: 1.5em;
		
	}
	
	.f-expanded{
		font-size: 2em;
		
	}
	
	.f-big{
		font-size: 2.5em;
		
	}
	
	.f-large{
		font-size: 3em;
		
	}
	
	.f-extra-expanded{
		font-size: 3.5em;
		
	}
	
	.f-huge{
		font-size: 5em;
		
	}

	
/*======================

	03. Backgrounds

========================*/



/* Overlays
-------------------------*/


	.overlay-black:after,
	.overlay-black-light:after,
	.overlay-black-dense:after,
	.overlay-white:after,
	.overlay-white-light:after,
	.overlay-white-dense:after,
	.overlay-gold:after,
	.overlay-gold-light:after,
	.overlay-gold-dense:after,
	.overlay-blue:after,
	.overlay-blue-light:after,
	.overlay-pink:after,
	.overlay-pink-light:after,
	.overlay-turquoise:after,
	.overlay-turquoise-light:after{
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
		z-index:-1;
	}
	
	.overlay-black-dense:after{
		
		background: #000000;
		opacity: 0.9;
	}
	
	.overlay-black:after{
		
		background: url(../images/overlay-1.png) repeat;
	}
	
	.overlay-black-light:after{
		
		background: url(../images/overlay-1.png) repeat;
		opacity: 0.7;
	}
	
	.overlay-white:after{
		
		background: url(../images/overlay-2.png) repeat;
	}
	
	.overlay-white-dense:after{
		
		background: #fff;
		opacity: 0.95;
	}
	
	.overlay-white-light:after{
		
		background: url(../images/overlay-2.png) repeat;
		opacity: 0.6;
	}
	
	.overlay-gold:after{
		
		background: #F3C563;
		opacity: 0.8;
	}
	
	.overlay-gold-dense:after{
		
		background: #F3C563;
		opacity: 0.95;
	}
	
	.overlay-gold-light:after{
		
		background: #F3C563;
		opacity: 0.5;
	}
	
	.overlay-blue:after{
		
		background: #0A93DB;
		opacity: 0.8;
	}
	
	.overlay-blue-light:after{
		
		background: #0A93DB;
		opacity: 0.5;
	}
	
	.overlay-turquoise:after{
		
		background: #c8d4d3;
		opacity: 0.8;
	}
	
	.overlay-turquoise-light:after{
		
		background: #c8d4d3;
		opacity: 0.5;
	}
	
	.overlay-pink:after{
		
		background: #FFD0DE;
		opacity: 0.8;
	}
	
	.overlay-pink-light:after{
		
		background: #FFD0DE;
		opacity: 0.5;
	}
	
	
/* Image Backgrounds
-------------------------*/	

	
	.image-bg-1{
		background: url(../images/backgrounds/bg-01.jpg);
	}
	
	.image-bg-2{
		background: url(../images/backgrounds/bg-02.jpg);
	}
	
	.image-bg-3{
		background: url(../images/backgrounds/bg-03.jpg);
		
	}
	
	.image-bg-4{
		background: url(../images/backgrounds/bg-04.jpg);
		
	}

	.image-bg-5{
		background: url(../images/backgrounds/bg-05.jpg);
		
	}
	
	.image-bg-6{
		background: url(../images/backgrounds/bg-06.jpg);
		
	}
	
	.image-bg-7{
		background: url(../img/contact-bg.jpg);
		
	}
	
	.image-bg-8{
		background: url(../images/backgrounds/bg-08.jpg);
		
	}
	
	.image-bg-9{
		background: url(../images/backgrounds/bg-09.jpg);
		
	}
	
	.image-bg-10{
		background: url(../images/backgrounds/bg-10.jpg);
		
	}
	
	.image-bg-11{
		background: url(../images/backgrounds/bg-11.jpg);
		
	}
	
	.image-bg-12{
		background: url(../img/awards-bg.jpg);
		
	}
	
	.image-bg-13{
		background: url(../images/backgrounds/bg-13.jpg);
		
	}
	
	.image-bg-14{
		background: url(../images/backgrounds/bg-14.jpg);
		
	}
	
	.image-bg-15{
		background: url(../img/backgrounds/main.jpg);
		
	}
	
	.image-bg-16{
		background: url(../images/backgrounds/bg-16.jpg);
		
	}
	
	.image-bg-17{
		background: url(../images/backgrounds/bg-17.jpg);
		
	}

	
	.image-bg-18{
		background: url(../images/backgrounds/bg-18.jpg);
		
	}
	
	.album-bg-01{
		background: url(../images/backgrounds/album-bg01.jpg);
		
	}
	
	.album-bg-02{
		background: url(../images/backgrounds/album-bg02.jpg);
		
	}
	
	.album-bg-03{
		background: url(../images/backgrounds/album-bg03.jpg);
		
	}
	

	
	.image-bg-1, 
	.image-bg-2, 
	.image-bg-3,
	.image-bg-4,
	.image-bg-5,
	.image-bg-6,
	.image-bg-7,
	.image-bg-8,
	.image-bg-9,
	.image-bg-10,
	.image-bg-11,
	.image-bg-12,
	.image-bg-13,
	.image-bg-14,
	.image-bg-15,
	.image-bg-16,
	.image-bg-17,
	.image-bg-18,
	.image-bg-19,
	.image-bg-20,
	.album-bg-01,
	.album-bg-02,
	.album-bg-03{
		width: 100%;
		height: auto;
		display: block;
		position: relative;
		overflow: hidden;
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size:cover;
		-moz-background-size: cover;
		-webkit-background-size: cover;
		-o-background-size: cover;
		z-index: 1;
	}

	
/* Colored Backgrounds
-------------------------*/

	
	.white-bg{
		background-color: #fff !important;
		padding: 4px;
	}

	.gray-bg{
		background-color:#ccc !important;
		padding: 4px;
	}
	
	.gray-light-bg{
		background-color: #f7f7f7 !important;
	}

	.dark-bg{
		background-color: #191919 !important;
		 padding: 0px 7px 0px 10px;
	}
	
	.black-bg{
		background: #000;
	}
	
	.colored-gold-bg{
		background-color: #F3C563 !important;
		padding: 4px;
	}
	
	.colored-blue-bg{
		background-color: #0A93DB !important;
		padding: 4px;
	}
	
	.colored-red-bg{
		background-color: #FF3232 !important;
		padding: 4px;
	}
	
	.colored-pink-bg{
		background-color: #FFD0DE !important;
		padding: 4px;
	}
	
	.colored-pink-bg-dark{
		background-color: #d6b7c0 !important;
		padding: 4px;
	}
	
	.colored-turquoise-bg{
		background-color: #c8d4d3 !important;
		padding: 4px;
	}

	
	
/* Transparent Backgrounds
-------------------------*/

	
	.transparent-bg{
		background: transparent !important;
	}
	
	
	.semi-transparent-white-bg{
		background: url(../images/overlay-2.png) repeat !important;
		padding: 2px;
	}
	
	.semi-transparent-dark-bg{
		background: url(../images/overlay-1.png) repeat !important;
		padding: 2px;
	}
	

	
	
/*======================

	04. Social Media Icons

========================*/


	.fa-500px{
		color: #0099e5;
	}
	
	.500px-bg{
		background: #0099e5;
	}
	
	.fa-amazon{
		color: #ff9900;
	}
	
	.fa-android{
		color: #a4c639;
	}
	
	.fa-apple{
		color: #999999;
	}
	
	.fa-bitbucket,
	.fa-bitbucket-square{
		color: #205081;
	}
	
	.fa-bluetooth,
	.fa-bluetooth-b{
		color: #3B5998;
	}
	
	.fa-cc-mastercard{
		color: #cc0000;
	}
	
	.fa-cc-stripe{
		color: #00afe1;
	}
	
	.fa-cc-visa{
		color: #1a1f71;
	}
	
	.fa-cc-paypal{
		color: #003087;
	}
	
	.fa-chrome{
		color: #CC0033;
	}
	
	.fa-codepen{
		color: #0ebeff;
	}
	
	.fa-delicious{
		color: #3399ff;
	}
	
	.fa-deviantart{
		color: #05cc47;
	}
	
	.fa-digg{
		color: #005be2;
	}
	
	.fa-dropbox{
		color: #007ee5;
	}
	
	.fa-drupal{
		color: #0077c0;
	}
	
	.fa-edge{
		color: #0078d7;
	}
	
	.fa-etsy{
		color: #d5641c;
	}
	
	.fa-etsy{
		color: #d5641c;
	}
	
	.fa-facebook,
	.fa-facebook-f,
	.fa-facebook-official,
	.fa-facebook-square{
		color: #3b5998;
	}
	
	.facebook-bg{
		background: #3b5998;
	}
	
	.fa-firefox{
		color: #e66000;
	}
	
	.fa-flickr{
		color: #0063dc;
	}
	
	.flickr-bg{
		background: #0063dc;
	}
	
	.fa-foursquare{
		color: #f94877;
	}
	
	.fa-github,
	.fa-github-square{
		color: #4078c0;
	}
	
	.fa-gitlab{
		color: #fca326;
	}
	
	.fa-gittip{
		color: #663300;
	}
	
	.fa-google{

		color: #4285f4;
	}
	
	.fa-google-plus,
	.fa-google-circle,
	.fa-google-official,
	.fa-google-square{
		color: #dd4b39;
	}
	
	.fa-hacker-news{
		color: #ff4000;
	}
	
	.fa-html5{
		color: #e34f26;
	}
	
	.fa-joomla{
		color: #f44321;
	}
	
	.fa-lastfm,
	.fa-lastfm-square{
		color: #d51007;
	}
	
	.fa-linkedin,
	.fa-linkedin-square{
		color: #0077b5;
	}
	
	.fa-linux{
		color: #333333;
	}
	
	.fa-mixcloud{
		color: #52aad8;
	}
	
	.fa-odnoklassniki,
	.fa-odnoklassniki-square{
		color: #ed812b;
	}
	
	.fa-opera{
		color: #cc0f16;
	}
	
	.fa-paypal{
		color: #003087;
	}
	
	.fa-pinterest,
	.fa-pinterest-p,
	.fa-pinterest-square{
		color: #cb2027;
	}
	
	.fa-reddit{
		color: #ff4500;
	}
	
	.fa-reddit,
	.fa-reddit-alien,
	.fa-reddit-square{
		color: #ff4500;
	}
	
	.fa-scribd{
		color: #1a7bba;
	}
	
	.fa-skype{
		color: #00aff0;
	}
	
	.fa-slack{
		color: #6ecadc;
	}
	
	.fa-slideshare{
		color: #0077b5;
	}
	
	.fa-snapchat,
	.fa-snapchat-ghost,
	.fa-snapchat-square{
		color: #fffc00;
	}
	
	.fa-soundcloud{
		color: #ff8800;
	}
	
	.fa-spotify{
		color: #1db954;
	}
	
	.fa-stack-exchange{
		color: #1e5397;
	}
	
	.fa-stack-overflow{
		color: #f48024;
	}
	
	.fa-steam,
	.fa-steam-square{
		color: #00adee;
	}
	
	.fa-stumbleupon{
		color: #eb4924;
	}
	
	.fa-stumbleupon,
	.fa-stumbleupon-circle{
		color: #eb4924;
	}
	
	.fa-stumbleupon{
		color: #eb4924;
	}
	
	.fa-telegram{
		color: #0088cc;
	}
	
	.fa-twitter,
	.fa-twitter-square{
		color: #1da1f2;
	}
	
	.twitter-bg{
		background: #1da1f2;
	}
	
	.fa-tripadvisor{
		color: #00af87;
	}
	
	.fa-tumblr,
	.fa-tumblr-square{
		color: #35465c;
	}
	
	.fa-vimeo{
		color: #1ab7ea;
	}
	
	.fa-vimeo,
	.fa-vimeo-square{
		color: #1ab7ea;
	}
	
	.fa-vine{
		color: #00b488;
	}
	
	.fa-wechat{
		color: #7bb32e;
	}
	
	.fa-wikipedia{
		color: #000000;
	}
	
	.fa-windows{
		color: #0078d7;
	}
	
	.fa-wordpress{
		color: #21759b;
	}
	
	.fa-xing,
	.fa-xing-square{
		color: #026466;
	}
	
	.fa-yahoo{
		color: #410093;
	}
	
	.fa-dribbble{
		color: #ea4c89;
	}
	
	.dribbble-bg{
		background: #ea4c89;
	}
	
	.fa-behance,
	.fa-behance-square{
		color: #053eff;
	}
	
	.fa-twitch{
		color: #6441a5;
	}
	
	.fa-snapchat{
		color: #fffc00;
	}
	
	.snapchat-bg{
		background: #fffc00;
	}
	
	.fa-youtube,
	.fa-youtube-play,
	.fa-youtube-square{
		color: #ff0000;
	}
	
	.youtube-bg{
		background: #ff0000;
	}
	
	.fa-windows{
		color: #0078d7;
	}
	
	.fa-whatsapp{
		color: #075e54;
	}
	
	.fa-quora{
		color: #a82400;
	}
	
	.fa-instagram{
		color: #e1306c;
	}
	
	.instagram-bg{
		background: #e1306c;
	}

	
	.fa-imdb{
		color: #f5de50;
	}

	.fa fa-yelp{
		color: #af0606;
	}
	

	
/*======================

	05. Loading Screen

========================*/	


	#loader-wrapper {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1000;
		overflow: hidden;
	}
	
	
	#loader {
		display: block;
		position: relative;
		left: 50%;
		top: 50%;
		width: 150px;
		height: 150px;
		margin: -75px 0 0 -75px;
		border-radius: 100%;
		border: 0px solid transparent;
		border-top-color: #fff;
		-webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
		animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
		z-index: 9999999999;
		overflow: hidden;
	}
	
	
	
	
/* Loader Logo
-------------------------*/

	.loader-img img{
		display: block;
		position: absolute;
		left: 46%;
		bottom: 48%;
		width: 120px;
		height: auto;
		z-index: 1002;
		border-radius: 100%;
	}
	
	
	
	
/* Loader Animation
-------------------------*/

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 100%;
        border: 2px solid transparent;
        border-top-color: #fff;
		overflow: hidden;
        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 100%;
        border: 0px solid transparent;
        border-top-color: #fff;
		overflow: hidden;
        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 50%;
        height: 100%;
		overflow: hidden;
		background-color: #fff;
		background: r#fff;
		color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

	
	
/* After Loading
-------------------------*/



    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(-100%);  /* IE 9 */
        transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */
        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(100%);  /* IE 9 */
        transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */
		-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
        transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;
        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateY(-100%);  /* IE 9 */
        transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */
        -webkit-transition: all 0.3s 1s ease-out;  
        transition: all 0.3s 1s ease-out;
    }
    
	.section-content-over-img{
		margin: 50px;
		padding: 100px;
	}
	
	.wrapper{
		padding: 0px !important;
		margin: 0px !important;
		overflow-x: hidden;
	}
	
	
	
/*======================

	06. Navigations

========================*/



/* Navigations Styles
-------------------------*/
	
	
	.nav-trigger{
		position: fixed;
		top: 50px;
/* 		left: 60px; */
		right: 60px;
		z-index: 3;
		letter-spacing: 6px;
	}
	
	
	.uk-nav, .uk-nav ul {
		margin: 0;
		padding: 10px 10px 0px 10px;
		list-style: none;
	}
	
	
	.uk-nav-sub li{
		padding-top: 7px;
		padding-bottom: 7px;
	}
	
	.uk-nav-sub li span{
		letter-spacing: 3px;
	}
	
	.uk-offcanvas-bar{
		width: 50%;
		background: #000;
		overflow-x: hidden;
	}
	
	.uk-nav-offcanvas>li>a {
		color: #fcfcfc;
		letter-spacing: 3px;
		padding: 10px 10px 10px 10px;
		
	}
	
	.uk-nav ul a{
		letter-spacing: 3px;
		word-spacing: 3px;
	}
	
	.uk-nav ul a {
		padding: 0px 0px 0px 10px;
		color: #777777;
	}
	
	.navigation-footer{
		position: relative;
		top: 60px;
		margin-left: 20px;
	}

	
/* Navigations Links
-------------------------*/

	
	.to-top{
		position: fixed;
		bottom: 50px;
		left: 60px;
		z-index: 3;
		letter-spacing: 6px;
	}
	
	.trigger-2{
		position: fixed;	
		top: 50px;
		left: 60px;
		z-index: 3;
		letter-spacing: 6px;
	}
	
	.trigger-3{
		position: fixed;	
		top: 75px;
		left: 100px;
		z-index: 3;
		letter-spacing: 6px;
		padding-left: 8px;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	
	.trigger-4{
		top: 50px;
		left: 35px;
	}
	
	
	.contact-us{
		position: fixed;
		bottom: 50px;
		right: 53.5%;
		z-index: 3;
		letter-spacing: 6px;
	}
	
	.info-left{
		position: fixed;
		top: 50px;
		right: 53.5%;
		z-index: 3;
		letter-spacing: 6px;
	}
	

	
	
/*======================

	07. Home Page Styles

========================*/	


	
/* Left Sides
----------------------------*/	

	
	.left-side{
		width: 50%;
		padding: 30px;
	}
	
	.left-side-small{
		width: 30%;
	}
	
	.left-side-large{
		width: 65%;
	}
	
	.left-side,
	.left-side-small{
		position: fixed;
		left: 0px;
		top: 0px;
		height: 100vh;
		height: 100%;
		z-index: 2;
	}
	


/* Right Sides
----------------------------*/	

	
	.right-side{
		width: 50%;
	}


	.right-side-large{
		width: 70%;
	}
		
	.right-side,
	.right-side-small,
	.right-side-large{
		position: absolute;
		right: 0px;
		top: 0px;
		height: 100%;
		z-index:1;
	}

	
/* Home Section Backgrounds
----------------------------*/
	

	
	.home-image-freelancer{
		background: url(../images/portraits/freelancer.jpg);
		
	}
	

	.home-image-filmmaker{
		background: url(../images/portraits/filmmaker.jpg);

		
	}
	
	.home-image-photographer{
		background: url(../images/portraits/photographer.jpg);

		
	}
	
	.home-image-blogger{
		background: url(../images/portraits/blogger.jpg);
		
	}
	
	.home-image-influencer{
		background: url(../images/portraits/influencer.jpg);

	}
	
	.home-image-musician{
		background: url(../images/portraits/musician.jpg);

	}
	
	.home-image-model{
		background: url(../img/backgrounds/main.jpg);

	}
	
	.home-image-fashion-designer{
		background: url(../images/portraits/fashion-designer.jpg);

	}
	
	.home-image-lawyer{
		background: url(../images/portraits/lawyer.jpg);

	}
	
	.home-image-real-estate-agent{
		background: url(../images/portraits/real-estate-agent.jpg);

	}
	
	.home-image-freelancer,
	.home-image-filmmaker,
	.home-image-photographer,
	.home-image-influencer,
	.home-image-model,
	.home-image-musician,
	.home-image-fashion-designer,
	.home-image-lawyer,
	.home-image-real-estate-agent,
	.home-image-blogger{
		width: 100%;
		height: 100%;
		background-size: cover;
		display: block;
		position: relative;
		overflow: hidden;
		z-index: 1;
		
	}
	
/* Header Basics
-------------------------*/
	
	
	#header,
	#header-minimal{
		padding: 150px 0px 150px 0px;
	}
	
	.header-content{
		margin-top: 40px;
		
	}

	.header-img{
		padding: 150px 0px 150px 0px;
	}
	
	.header-content h1{
		line-height: 1.3;
	}
	
	.header-content h2{
		line-height: 1.78;
	}
	
	.page-section{
		padding: 150px 0px 150px 0px;
	}
	

	.multi-page{
		padding: 150px;
	}
	
	
	.home-subscribe .section-content-over-img{
		margin: 15px;
	}
	

/* Minimal Styings
-------------------------*/
	
	
	#header-minimal-page{
		padding: 150px 0px 150px 0px;
	}

	
	.header-minimal-img{
		max-width: 70px;
	}
	
	.header-minimal-img img{
		border-radius: 100%;
	}

	

	
/* Home Social Icons
-------------------------*/
	
	
	.header-social a{
		margin-right: 30px;
		letter-spacing: 3px;
	}
	
	.social-2 a i{
		width: 40px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		border-radius: 100%;
		color: #fff;
	}
	


/*======================

	08. Professionals Style Fix

========================*/



/* Positioning Fix
-------------------------*/
	

	
	.photographer-content,
	.lawyer-content,
	.filmmaker-content{
		position: fixed;
		top: 17%;
		left: 60px;
		z-index: 99;
	}
	
	.split-portfolio-content,
	.model-content,
	.rea-content,
	.mucisian-content{
		position: absolute;
		top: 50%;
		left: 50%;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}
	
	

/* Film Maker Fix
----------------------------*/
	
	.filmmaker-content h2{
		line-height: 1.4;
		max-width: 500px;
		letter-spacing: 15px;
	}
	
	.home-awards img{
		max-width: 90px;
		max-height: 125px;
		margin-right: 10%;
		opacity: 0.7;
		float: left;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.home-awards img:hover{
		opacity: 1;
	}

	
/* Model Fix
----------------------------*/
	
	
	.model-content h2{
		line-height: 1;
	}
	
	
	.model-content h3{
		letter-spacing: 5px;
		line-height: 1.4;
	}
	

/* Real Estate Agent Fix
----------------------------*/
	
	.rea-content h2{
		line-height: 1;
	}
	
	.rea-content h3{
		letter-spacing: 3px;
		margin-top: 40px;
	}
	
	.rea-minimal h3{
		letter-spacing: 3px;
		line-height: 1.5;
	}
	
	.house-category .overlay-black h2 a{
		letter-spacing: 0px;
	}
	
	.house-category .overlay-black:hover p{
		color: #000;
	}
	
	.featured-houses h3,
	.agent-services h3,
	.house-gallery h3{
		letter-spacing: 3px;
		margin-top: 20px;
		line-height: 2.5;
	}
	
	.house-gallery h3{
		margin-bottom: 20px;
	}
	

/* Musician Fix
----------------------------*/
	
	
	.mucisian-content h2{
		line-height: 1;
	}
	
	.play-links a{
		margin-right: 40px;
	}
	
	.play-links-small a{
		margin-right: 20px;
	}
	
	.play-links-section li{
		margin-top: 20px;
		margin-bottom: 40px;
	}
	
	.albums{
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.albums iframe{
		width: 100%;
	}
	
	.soundcloud-songs li{
		padding:0px 40px 0px 0px;
	}

	
/* Fashion Designer Fix
----------------------------*/


	.fashion-designer-minimal .section-content{
		padding: 150px 0% 150px 75px;
	}
	
	.fashion-designer-minimal ul li{
		margin-bottom: 20px;
	}

	.fullwidth-lawyer-links h2{
		margin-bottom: 100px;
	}
	
	
/* Lawyer Fix
----------------------------*/

	.lawyer-info li{
		margin-bottom: 30px;
		letter-spacing: 3px;
	}
	

	.lawyer-info li i{
		color: #ccc;
		width: 40px;
		height: 40px;
		line-height: 40px;
		border-radius: 100%;
		text-align: center;
		margin-right: 10px;
		letter-spacing: 0px;
	}
	
	.lawyer-info li:hover i{
		background: #fff;
		color: #191919;
	}
	

	
/* Blogger Fix
----------------------------*/


	.blogger-nav{
		width: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	
	.blogger-nav li{
		margin-bottom: 75px;
		letter-spacing: 5px;
	}
	
	.blogger-nav li a:hover,
	.blogger-nav li a:focus{
		color: #fff;
		text-decoration: underline;
	}
	

	
	
	
/*========================

	09. Home Page Navigations

==========================*/


/*	Fashion Designer Navigations
----------------------------*/

	.fashion-designer-nav{
		width: 70%;
		position: absolute;
		top: 50%;
		left: 50%;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	
	.fashion-designer-nav a{
		letter-spacing: 4px;
	}
	
	
/*	Influencer Navigations
----------------------------*/


	.influencer-nav{
		width: 70%;
		position: absolute;
		top: 50%;
		left: 50%;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	
	.influencer-nav li{
		margin-bottom: 50px;
		letter-spacing: 4px;
	}
	
	.influencer-nav li i{
		border-radius: 100%;
		width: 40px;
		height: 40px;
		line-height: 40px;
		padding-left: 4px;
		text-align: center;
		margin-right: 5px;
	}
	
	.influencer-nav li a:hover i,
	.influencer-nav li a:focus i{
		background: #fff;
		box-shadow: none;
	}
	
	.influencer-nav li a:hover{
		color: #fff;
	}
	
	.influencer-nav-minimal{
		width: 100%;
		position: relative;
		top: 0px;
		left: 0px;
		-moz-transform: none;
		-webkit-transform: none;
		-o-transform: none;
		transform: none;
	}
	
	.influencer-nav-minimal li a:hover {
		color: #000;
	}

	
	.influencer-nav-fullwidth li{
		margin-top: 75px;
		margin-bottom: 75px;
	}
	
	.influencer-nav-fullwidth li a{
		letter-spacing: 0px;
	}

	

	
/*========================

	10. About
	
==========================*/
	
	
	
	#about{
		padding-bottom: 150px;
		
	}
	
	#about-2,
	.about-2{
		padding-top: 150px;
		padding-bottom: 150px;
		
	}
	
	#about p,
	#about-2 p{
		line-height: 2;
	}
	
	.about-2-btn{
		margin-top: 10px;
	}

	
	
/*======================

	11. Tours & Events

========================*/

	
/*	Tours
----------------------------*/	
	
	#tour{
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.tour-date{
		background: #dfdfe5;
		width: 100px;
		height: 100px;
		
	}
	
	.tour-date h2{
		line-height: 100px;
	}
	
	.tour{
		margin-bottom:150px;
	}
	
	.tour-block{
		margin-bottom: 75px;
	}
	
	
/*	Events
----------------------------*/		

	#events{
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.eventtime{
		width: 200px;
		height: 200px;
		opacity: 0.85;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
		border-radius: 100%;
	}
	
	.eventtime h2{
		line-height: 200px;
	}

	
	.event h3{
		letter-spacing: 5px;
		line-height: 200px;
	}
	
	.event-block{
		margin-bottom: 150px;
	}

	
	
/*========================

	12. Map
	
==========================*/	
	
	
	#gmap{
		width: 100%;
		height: 100%;
	}
	
	.map-img img{
		width: 250px;
		margin-bottom: 20px;
	}
	
	.gm-style .gm-style-iw{
		padding: 30px 7px 20px 10px;
	}
	

	
/*========================

	13. Films
	
==========================*/
	
	
	
	#films{
		padding-top: 150px;
	}

	.film li{
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
		overflow: hidden;
	}

	.film-post .uk-overlay-background{
		background: rgba(0,0,0,.1);
	}

	.trailer iframe{
		width: 100%;
		min-height: 400px;
	}
	
	.stars li{
		display: inline-block;
	}
	
	.cine-timeline{
		margin-top: 75px;
	}
	
	.cine-timeline h2{
		letter-spacing: 4px;
	}
	
	.film-award{
		padding-bottom: 100px;
	}
	
	.film-award h3{
		letter-spacing: 4px;
	}
		
	
	.film-award img{
		max-width: 110px;
		margin-bottom: 5px;
		opacity: 0.6;
	}


	
/*========================

	14. Equipments
	
==========================*/

	
	
	#equipments{
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.work-equipment{
		margin-bottom: 75px;
	}
	
	.equipment img{
		max-width: 120px;
		opacity: .95;
		height: auto;
		text-align: left;
		float: left;
		margin-top: 4px;
	}
	
	.equipment h1{
		line-height: 1.5;
		letter-spacing: 4px;
	}
	
	
	.equipment p{
		line-height: 2;
		margin-top: 25px;
	}
	
	
/*========================

	15. History
	
==========================*/	
	
	#history{
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.work-history{
		margin-bottom: 75px;
	}
	
	.history .separator{
		width: 30px;
		height: 3px;
		margin-top: 25px;
		margin-bottom: 25px;
		background: #F3C563 none repeat;
	}
	
	.history img{
		max-width: 120px;
		opacity: .8;
		height: auto;
		text-align: left;
		float: left;
		margin-top: 4px;
	}
	
	.history h1{
		letter-spacing: 2px;
	}
	
	.history h5{
		letter-spacing: 3px;
		margin-top: 25px;
		opacity: 0.8;
	}
	
	.history p{
		line-height: 2;
		margin-top: 25px;
	}
	
	
/*========================

	16. Packages
	
==========================*/
	
	
	#packages .section-content-over-img .drop{
		letter-spacing: 3px;
	}
	
	#packages i{
		margin-bottom: 25px;
	}
	
	.price{
		letter-spacing: 5px;
		-ms-transform: scale(3.87);
		-webkit-transform: scale(3.87);
		-moz-transform: scale(3.87);
		-o-transform: scale(3.87);
		transform: scale(3.87);
		position: relative; 
		left: 100%;
		z-index: 1;
		opacity: 0.2;
		
	}
	
	.pack ul li{
		margin-top: 25px;
		margin-bottom: 25px;
	}
	
	.pack h1{
		line-height: 1.3;
	}
	
	.pack-02 h3{
		margin-bottom: 25px;
	}

	.pack-02-list{
		letter-spacing: 1px;
	}
	
	
/*========================

	17. Slideshow
	
==========================*/	
	
	#slider-home{
		padding: 0px;
		margin: 0px;
		width: 100%;
		height: auto;
	}

	
	.slideshow-nav-next{
		
		bottom: 70px;
		right: 60px;
	}
	
	.slideshow-nav-prev{
		
		top: 70px;
		right: 60px;
	}
	
	.slideshow-nav-next,
	.slideshow-nav-prev{
		position: absolute;
		border: 3px solid #191919;
		background: #191919;
		width: 50px;
		height: 50px;
		line-height: 47px;
		text-align: center;
	}
	
	.slideshow-nav-next:hover,
	.slideshow-nav-prev:hover{
		border: 3px solid #c8d4d3;
		background: transparent;
	}

/*========================

	18. Video & Download
	
==========================*/		
	
	#download{
		padding-top: 150px;
		padding-bottom: 150px;
		
	}
	
	#video{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	
	.vid-section .drop{
		letter-spacing: 3px;
	}
	
	.vid-section i{
		margin-bottom: 25px;
	}

	.vid-section p{
		margin-top: 30px;
	}
	
	

	
/*========================

	19. Testimonial Slider
	
==========================*/

	
	#testimonials-2{
		padding-top: 150px;
		padding-bottom: 150px;
	}

	
	.uk-slider h3{
		line-height: 1.5;
	}
	
	.fa-quote-left{
		padding-left: 5px;
		margin-bottom: 40px;
	}
	
	.testimonials-nav i{
		margin-top: 40px;
	}
	
	.uk-slider h5,
	.uk-slider h4{
		margin-top: 40px;
	}
	
	.uk-slider h5{
		letter-spacing: 4px;
	}
	
	.uk-slider img{
		max-width: 50px;
		display: block;
		margin-bottom: 40px;
		border-radius: 100%;
	}


	.reviewer-img{
		border: none;
	}
	
	.reviewer-img img{
		max-width: 60px;
		opacity: 1;
	}
	

/*========================

	20. Skills
	
==========================*/	
	
	
	.uk-progress-bar{
		margin-bottom: 35px;
		display: block;
		text-align: left;
		padding: 10px;
		border: 3px solid #191919;
		color: #fff;
		background: #191919;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.uk-progress-bar:hover{
		background: transparent;
		border: 3px solid #c8d4d3;
		color: #191919;
		cursor: pointer;
	}
	
	.skillbar-2{
		margin-bottom: 100px;
		padding: 0;
		height: 10px;
		border: 0px;
		background: #2f2f2f;
		letter-spacing: 4px;
	}
	
	.skillbar-2 span{
		position: relative;
		bottom: 25px;
	}
	
	.skillbar-2:hover{
		background: #2f2f2f;
		border: 0px;
		cursor: auto;
	}
	
	.skillpoint{
		float: right;
		font-size: 1em;
	}
	
	.point-2{
		margin-right: 0px;
	}
	

	.width-100{
		width: 100%;
	}
	
	.width-99{
		width: 99%;
	}

	.width-90{
		width: 90%;
	}
	
	.width-89{
		width: 89%;
	}
	
	.width-88{
		width: 88%;
	}
	
	.width-85{
		width: 85%;
	}
	
	.width-83{
		width: 83%;
	}
	
	.width-78{
		width: 78%;
	}
	
	.width-73{
		width: 73%;
	}
	
	.width-72{
		width: 72%;
	}

	
	
	
	

	
/*========================

	21. Services

==========================*/


	
/*	Services Style 01
----------------------------*/


	#services{
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.service{
		margin-bottom: 75px;
	}
	
	.service p span{
		letter-spacing: 3px;
		width: 50px;
		height: 50px;
		line-height: 50px;
		opacity: 0.8;
	}
	

	.service-01 i{
		margin-bottom: 30px;
	}
	
	.service-01 h3{
		line-height: 1;
	}


/*	Services Style 02
----------------------------*/

	
	.service-02 i{
		margin-bottom: 25px;
		width: 50px;
		height: 50px;
		line-height: 48px;
		border: 3px solid #c8d4d3;
		background: #c8d4d3;
		border-radius: 100%;
		text-align: center;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.service-02:hover i{
		background: transparent;
	}
	
	.service-02 h3{
		line-height: 1.2;
	}


	
/*	Services Style 03
----------------------------*/


	.service-03 h2{
		line-height: 1.5;
		letter-spacing: 4px;
		margin-top: 30px;
		
	}
	
	.service-03 i{
		border: 1px solid #ced4da;
		width: 50px;
		height: 50px;
		line-height: 50px;
		text-align: center;
		color: #505050;
	}
	
	.service-03:hover i{
		border: 1px solid #191919;
		color: #191919;
	}


/*	Services Style 04 (Lawyers)
----------------------------*/


	.law-area .overlay-black{
		position: absolute;
		top: 0px;
		left: 0px;
		height: 100%;
		width: 100%;
		color: #fff;
		background: url(../images/overlay-1.png) repeat !important;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;

	}
	
	.law-area .overlay-black a{
		color: #fff;
	}
	
	.law-area .overlay-black:hover{
		background: url(../images/overlay-2.png) repeat !important;
		color: #191919;
		cursor: pointer;

	}
	
	.law-area .overlay-black:hover a{
		color: #191919;

	}
	
	.law-area .overlay-black h2{
		position: absolute;
		top: 50%;
		left: 50%;
		letter-spacing: 3px;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}
	
	.law-area .overlay-black p{
		position: absolute;
		top: 40%;
		left: 50%;
		letter-spacing: 3px;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}


	
/*========================

	22. Blog

==========================*/	


/*	Posts
----------------------------*/

	
	#blog{
		padding-top: 150px;
		padding-bottom: 150px;
	}

	.post{
		padding: 150px 0px 150px 0px;
	}
	
	.blog-post{
		margin-bottom: 75px;
	}
	
	.blog-post h2,
	.blog-post h5{
		margin-bottom: 25px;
	}
	
	.blog-post h2{
		letter-spacing: 4px;
	}
	

	.blog-post h4{
		margin-top: 25px;
		margin-bottom: 25px;
		letter-spacing: 1px;
	}
	
	.blog-post h4 a{
		margin-right: 15px;
		padding: 5px;
	}
	
	.blog-post h4 a:hover{
		color: #fff;
	}
	
	.blog-post h3{
		line-height: 1.4;
	}
	
	.blog-post p{
		line-height: 2;
		margin-top: 20px;
	}


	.blog-post img{
		width: 100%;
		height: auto;
		margin-bottom: 20px;
		opacity: 0.9;
	}
	
	.blog-date{
		letter-spacing: 3px;
		margin-left: 3px;
	}
	
	.blog-excerpt1{
		padding: 75px;
	}
	
	.blog-content{
		margin: 35px 0px 35px 0px;
	}

	
	.tags li{
		display: inline-block;
		padding: 10px;
		line-height: 1.2;
	}
	
	.posts-lines li{
		margin-bottom: 50px;
	}
	
	.media-post{
		padding: 75px;
	}
	
	.media-post iframe{
		width: 100%;
		min-height: 230px;
		margin-bottom: 30px;
	}

	.media-post img,
	.blog-excerpt1 img{
		margin-top: 15px;
		margin-bottom: 15px;
	}
	
	.media-post p,
	.featured-post p{
		margin-top: 15px;
		margin-bottom: 15px;
	}
	
	.blog-excerpt1 h2{
		margin-top: 15px;
	}
	
	.media-post p a,
	.blog-excerpt1 p a,
	.blog-category p a,
	.blog-year p a,
	.footer-block p a,
	.featured-post p a{
		letter-spacing: 5px;
	}
	
	
/*	Iframe
----------------------------*/	
	
	
	.blog-post iframe{
		width: 100%;
		height: 300px;
		margin-bottom: 20px;
	}
	
	.vimeo iframe{
		max-height: 100%;
	}
	
	.blog-content iframe{
		width: 100%;
		min-height: 500px;
	}
	
	
/*	Sidebars
----------------------------*/	

	
	.sidebar-content{
		margin-bottom: 75px;
	}
	

	.sidebar-content h2,
	.blog-extras h2{
		letter-spacing: 2px;
	}
	
	.sidebar-popular{
		min-width: 100%;
		margin-bottom: 35px;
		display: block;
	}
	
	.sidebar-popular img{
		max-width: 75px;
		float: left;
		margin-right: 30px;
	}
	
	.blog-extras{
		padding-top: 75px;
	}


	
/*	Category
----------------------------*/
	
	.blog-category,
	.blog-year{
		padding-top: 100px;
		padding-bottom: 100px;
	
	}

	.blog-category i{
		margin-bottom: 10px;
	}
	
	.blog-category h2{
		letter-spacing: 1px;
	}
	
	.post-genres{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.post-genres i{
		margin-bottom: 10px;
	}
	
	.post-genres h2{
		letter-spacing: 4px;
	}
	
	
/*	Archive
----------------------------*/
	
	.months,
	.months2,
	.months3,
	.months4,
	.months5,
	.months6{
		opacity: 0;
		display: none;
	}
	
	.months-appear{
		opacity: 1;
		display: inline;
	}
	
	
/*	Featured Posts
----------------------------*/
	
	
	.featured-post-text{
		width: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		padding: 50px;
	}
	

	.featured-post-text h1 a:hover{
		color: #ccc;
	}
	
	.uk-overlay-panel a:not([class]){
		text-decoration: none;
	}
	
	.uk-overlay-background {
		background: rgba(0,0,0,.85);
	}
	
	.featured-post .slideshow-nav-next{
		position: absolute;
		left: 70px;
		bottom: 15%;
		border: none;
		background: transparent;
		width: 0px;
		height: 0px;
		line-height: 0px;
		text-align: left;
	}


	
/*	Comments
----------------------------*/

	#comments{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.comment{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	
	.post-section,
	.sidebar-section{
		padding: 150px 50px 150px 50px;
	}

	.post-section p a{
		letter-spacing: 5px;

	}
	
	.sidebar-section p a{
		letter-spacing: 1px;

	}
	
	.comment img{
		max-width: 50px;
		border-radius: 100%;
		margin-bottom: 12px;
	}
	
	.comment p{
		margin-top: 15px;
	}
	
	.comment p a{
		letter-spacing: 1px;
		margin-left: 5px;
	}
	
	.blog-comments .section-title{
		letter-spacing: 2px;
	}
	
	.blog-comments{
		padding-top: 150px;
	}
	
	.comment-post{
		margin-bottom: 75px;
	}
	
	.comment-text a,
	.comment-text h2{
		letter-spacing: 1px;
	}
	
	.comment-img img{
		border-radius: 100%;
		max-width: 100px;
	}
	
	.commenter-info input{
		border: 1px solid #e5e5e5;
		padding: 10px;
		width: 100%
	}
	
	
	
	.commenter-info{
		margin-right: 10px;
		width: 100%;
		margin-bottom: 35px;
	}
	
	.comment-form{
		width: 100%;
	}
	
	.comment-texts{
		min-height: 200px;
		border: 1px solid #e5e5e5;
	}
	
	
	
/*========================

	23. FAQ

==========================*/	

	
	#faq{
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.uk-accordion-title{
		background: none;
		border-bottom: 1px solid #e5e5e5;
		padding-top: 35px;
		padding-bottom: 50px;
		margin-bottom: 15px;
	}
	
	.uk-accordion-content{
		line-height: 2;
	}
	

/*========================

	24. Clients

==========================*/	
	
	
	#clients{
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.client-image{
		border-left: 1px solid #2f2f2f;
		padding-bottom: 150px;
	}
	
	.client-image img{
		max-width: 60px;
		margin: auto;
		opacity: 0.8;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.client-image img:hover{
		opacity: 1;
		cursor: pointer;
	}



/*========================

	25. Gallery

==========================*/	
	

	
	#gallery{
		position: relative;
		background: #fff;
		padding-bottom: 150px;
		
	}
	
	.gallery li{
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
		overflow: hidden;
	}

	#bts{
		padding-top: 150px;
	}
	
	
	.chocolat-overlay{
		background: #000;
		opacity: 0.98;
	}
	
	.chocolat-wrapper .chocolat-right{
		right: 20px;
		transform: scale(1.4);
	}
	
	.chocolat-wrapper .chocolat-left{
		left: 20px;
		transform: scale(1.4);
	}
	
	.chocolat-wrapper .chocolat-bottom{
		height: 60px;
		line-height: 60px;
	}
	
	.chocolat-wrapper .chocolat-description,
	.chocolat-wrapper .chocolat-pagination{
		font-size: 1.3em;
		font-weight: 400;
	}
	
	.chocolat-wrapper .chocolat-fullscreen{
		height: 60px;
	}
	
	.gallery .white-hover,
	.gallery .dark-hover{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		overflow: hidden;
		opacity: 0;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	
	.work .white-hover,
	.work .dark-hover{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		overflow: hidden !important;
		opacity: 0;
		-moz-transform: translate(-50%, 0%);
		-webkit-transform: translate(-50%, 0%);
		-o-transform: translate(-50%, 0%);
		transform: translate(-50%, 0%);
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	
	.white-hover{
		background: url(../images/overlay-2.png) repeat;
	}
	
	.dark-hover{
		background: url(../images/overlay-1.png) repeat;
	}
	
	.overlay-top{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		overflow: hidden;
		background: url(../images/overlay-1.png) repeat;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.overlay-top a{
		position: absolute;
		top: 50%;
		left: 50%;
		letter-spacing: 10px;
		border-radius: 100%;
		opacity: 0.9;
		line-height: 70px;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}
	
	.overlay-top i:hover{
		opacity: 1;
	}
	
	.gallery .white-hover i,
	.gallery .dark-hover i{
		position: absolute;
		top: 50%;
		left: 50%;
		opacity: 0.5;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}
	

	.gallery:hover .dark-hover,
	.gallery:hover .white-hover{
		opacity: 1;
	}

	

/*========================

	26. Portfolio

==========================*/


/* Spacing & Positioning
----------------------------*/

	#portfolio{
		position: relative;
		background: #fff;
		padding-bottom: 150px;
		
	}
	
	#portfolio-minimal{
		position: relative;
		background: #fff;
		
	}
	
	.split-portfolio-content h2{
		line-height: 1;
	}
	
	.split-portfolio-content h3{
		letter-spacing: 3px;
		line-height: 1.5;
		margin-top: 15px;
	}
	
	

/* Filters
----------------------------*/	


	.uk-subnav>*{
		padding-left: 0px;
		margin-top: 0px;
	}
	.works-filter-portfolio .no-border{
		margin: 5px 40px 0px 3px;
	}
	
	.works-filter-portfolio li{
		border: 1px solid #ccc;
		padding: 7px;
		margin: 5px 0px 0px 10px;
	}
	
	.works-filter-top{
		padding-bottom: 40px;
		
	}
	
	.works-filter-top li a{
		margin-right: 40px;
		font-size: 2em;
		border: 1px solid #ccc;
		width: 50px;
		height: 50px;
		line-height: 50px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	
	
	.works-filter-top li a:hover{
		border: 1px solid #000;
	}
	
	.filter-style-2 li a,
	.filter-style-3 li a{
		margin-right: 30px;
		font-size: 1.3em;
		letter-spacing: 1px;
		color: #191919;
		border: none;
		width: auto;
		height: auto;
		line-height: 0px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.filter-style-4 li{
		margin: auto;
	}
	
	.filter-style-4 li a{
		margin-right: 0px;
		font-size: 10px;
		margin-right: 20px;
		text-align: center;
		font-weight: 700;
		letter-spacing: 1px;
		color: #fff;
		border: none;
		width: 100%;
		height: auto;
		line-height: 0px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.filter-style-5 li a:hover,
	.filter-style-4 li a:hover{
		color: #fff;
		border: none;
	}
	
	.filter-style-5 li a:focus,
	.filter-style-5 li a:focus,
	.filter-style-4 li a:focus,
	.filter-style-4 li a:active{
		text-decoration: line-through;
		color: #fff;
	}
	
	.filter-style-5 li{
		display: auto;
		border: 1px solid #ccc;
		margin-right: 5px;
		margin-bottom: 5px;
		
	}
	
	.filter-style-5 li a{
		margin-right: 0px;
		font-size: 10px;
		margin-right: 0px;
		text-align: center;
		font-weight: 700;
		letter-spacing: 1px;
		color: #fff;
		padding: 20px;
		border: none;
		width: 100%;
		height: auto;
		line-height: 0px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}

	.filter-style-3 li a{
		font-size: 13.5px;
		margin-right: 50px;
		letter-spacing: 1;
	}
	
	.filter-style-2 li a:hover,
	.filter-style-3 li a:hover{
		border: none;
		color: #000;
	}
	
	.filter-style-3 li a:focus{
		font-weight: 900;
	}
	
	
	.uk-subnav > .uk-active > * {
		color: #ccc;
	}
	
	.uk-subnav > * > :focus, .uk-subnav > * > :hover{
		color: black;
		text-decoration: none;
	}

	
	.works-filter-top{
		margin: auto;
		text-align: center;
	}
	
	.works-filter li,
	.works-filter-full li{
		margin-right: 30px;
		
	}
	
	.works-filter-full{
		margin-left: 10%;
	}
	
	
	
/* Hovers & Overlays
----------------------------*/

	.work li{
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
		overflow: hidden;
	}

	
	.gallery,
	.film,
	.work{
		overflow: hidden !important;

	}
	
	.work li:hover{
		opacity: 1;
		
	}
	
	
	.gallery img,
	.work img{
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
		overflow: hidden !important;
	}
	
	
	.gallery .white-hover,
	.gallery .dark-hover{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		overflow: hidden;
		opacity: 0;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	
	.work .white-hover,
	.work .dark-hover{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		overflow: hidden !important;
		opacity: 0;
		-moz-transform: translate(-50%, 0%);
		-webkit-transform: translate(-50%, 0%);
		-o-transform: translate(-50%, 0%);
		transform: translate(-50%, 0%);
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	
	.white-hover{
		background: url(../images/overlay-2.png) repeat;
	}
	
	.dark-hover{
		background: url(../images/overlay-1.png) repeat;
	}
	
	.overlay-top{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		overflow: hidden;
		background: url(../images/overlay-1.png) repeat;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.overlay-top a{
		position: absolute;
		top: 50%;
		left: 50%;
		letter-spacing: 10px;
		border-radius: 100%;
		opacity: 0.9;
		line-height: 70px;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}
	
	.overlay-top i:hover{
		opacity: 1;
	}
	
	.work .white-hover p,
	.work .dark-hover p{
		position: absolute;
		bottom: 50%;
		left: 50%;
		letter-spacing: 1px;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}
	
	
	.work .white-hover span,
	.work .dark-hover span{
		position: absolute;
		top: 50%;
		left: 50%;
		letter-spacing: 1px;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}
	

	
	.work:hover .white-hover,
	.work:hover .dark-hover{
		opacity: 1;
		-moz-transform: translate(0%, 0%);
		-webkit-transform: translate(0%, 0%);
		-o-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
	}
	
	.work:hover img{
		-o-transform: scale(1.3);
		-moz-transform: scale(1.3);
		-webkit-transform: scale(1.3);
		transform: scale(1.3) rotate(9deg);
		overflow: hidden !important;
	}
	
	.uk-modal-caption {
		position: absolute;
		left: 0px;
		right: 0px;
		color: #fff;
		text-align: left;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	
	.hover .button{
		margin: auto;
	}
	
	
	
/* Gutters
----------------------------*/

	.gutter img{
	
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;

	}
	
	.gutter:hover img{
		-o-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0.3;
		overflow: hidden;
		
	}
	
	.gutter .white-hover, .gutter .dark-hover{
		background: transparent;
		overflow: hidden;
		
	}
	
	.last-gutter{
		margin-bottom: 30px;
	}
	
	.gutter-container{
		margin: 20px 20px 0px 0px;
	}
	
	.gutter{
		padding: 0px 0px 20px 20px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
		
	}

	.gutter .white-hover p,
	.gutter .dark-hover p{
		left: 55%;
	}
	
	
	.gutter .white-hover span,
	.gutter .dark-hover span{
		left: 55%
	}

/* Single Projects
----------------------------*/

	
	.project-block img{
		margin-bottom: 25px;
	}
	
	.project-block .uk-accordion-title{
		letter-spacing: 2px;
	}
	
	.projects-slider-img img{
		max-width: 100%;
		display: block;
		margin-bottom: 0px;
		border-radius: 0px;
	}


	
/*========================

	27. Store

==========================*/
	
	#store{
		padding-top: 150px;
		padding-bottom: 150px;
	}

	.store-content{
		margin-top: 75px;
	}
	.store-content img{
		opacity: 0.9;
	}
	
	.store-content img:hover{
		opacity: 1;
	}
	
	.store-content h2{
		margin-top: 25px;
		line-height: 1.2;
		letter-spacing: 1px;
	}
	
	.store-content ul li{
		display: inline-block;
		margin-top: 20px;
		margin-right: 10px;
	}

	.store-content ul li a{
		margin-right: 5px;
		padding: 5px;
		letter-spacing: 1px;
		background: #191919;
	}
		
	.store-content ul li a:hover,
	.store-content ul li a:focus{
		background: #c8d4d3;
	}
	

	
	
/*========================

	28. Contact

==========================*/	
	
	#contact{
		padding: 
	}

	.form-control:focus {
		color: #191919;
		background-color: #fff;
		border-bottom: 1px solid #191919;
		box-shadow: none;
	}
	
	.form-group input,
	.form-group textarea{
		margin-bottom: 30px;
		font-weight: 600;
		display: block;
		width: 100%;
		padding: .375rem .75rem;
		line-height: 1.5;
		color: #191919;
		background-color: #fff;
		background-clip: padding-box;
		border: none;
		border-bottom: 1px solid #ced4da;
		border-radius: 0px;
		transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	}
	
	.contact-form .btn{
		margin-top: 0px !important;
	}

	
	.form-group .full-border{
		border: 1px solid #ced4da;
	}
	
	

/*========================

	30. Shop

==========================*/
	
	
	#shop{
		padding-top: 100px;
		
	}
	
	.shop-post{
		padding: 0px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.shop-post:hover .product-excerpt-top,
	.shop-post:hover .product-excerpt-bottom{
		opacity: 1;
		-moz-transform: translate(0%, 0%);
		-webkit-transform: translate(0%, 0%);
		-o-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
	}
	
		
	.product-sections{
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.product-excerpt-top{		
		position: absolute;
		top: 0px;
		-moz-transform: translate(0%, -50%);
		-webkit-transform: translate(0%, -50%);
		-o-transform: translate(0%, -50%);
		transform: translate(0%, -50%);
	}
	
	.product-excerpt-bottom{
		position: absolute;
		bottom: 0px;
		-moz-transform: translate(0%, 50%);
		-webkit-transform: translate(0%, 50%);
		-o-transform: translate(0%, 50%);
		transform: translate(0%, 50%);
	}

	.product-excerpt-top,
	.product-excerpt-bottom{
		background: url(../images/overlay-1.png) repeat;
		width: 100%;
		padding: 50px;
		opacity: 0;
		letter-spacing: 1px;
		text-align: center;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;

	}
	
	.product-grid{
		padding: 30px 30px 0px 0px;
	}
	
	.featured-houses h3 .dark-bg,
	.history h5 .dark-bg,
	.agent-services h3 .dark-bg{
		padding: 2px 3px 2px 5px;
	}
	
	.caption-portfolio{
		padding: 75px 30px 0px 0px;
	}
	

	.caption-split img,
	.caption-portfolio img{
		margin-bottom: 30px;
	}
	
	
	.shop-slider li{
		padding: 0px 0px 0px 30px;
	}
	
	.shop-slider img{
		max-width: 100%;
		display: block;
		margin-bottom: 0px;
		border-radius: 0px;
		opacity: 0.9;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.shop-page{
		padding: 150px 0px 150px 0px;
	}

	.products-nav{
		padding-bottom: 0px;
	}
	
	.products-nav li a{
		padding: 0px;
		margin-right: 10px;
		margin-left: 10px;
	}
	

	
	
/*========================

	31. Footer

==========================*/	


	
	#footer{
		padding-top: 150px;
		padding-bottom: 150px;
		overflow: hidden;
	}

	.footer-links ul li{
		margin-bottom: 25px;
	}
	
	.footer-links li i{
		margin-right: 5px;
	}
	
	.footer-social a{
		margin-right: 40px;
	}
	
	.footer-block h2,
	.footer-block p{
		margin-top: 30px;
	}

	
	.footer-about img{
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
		border-radius: 10px;
	}
	
	.footer-about img:hover{
		box-shadow: none;
		
	}

	
/*========================

	32. Responsive

==========================*/



	
	@media all and (max-width: 1400px) {
	
		.price{
			transform: scale(1);
			position: static;
			opacity: 1;
			text-align: left;
			font-size: 3.5em;
			letter-spacing: 0px;
			margin-bottom: 25px;
		}
		
		.multi-page{
			padding: 50px;
		}

		
	}
	
	
	@media all and (max-width: 1270px) {
		

		.home-subscribe .section-content-over-img{
			margin: 5px;
		}
	
	}


	
	
	@media all and (max-width: 1020px) {
		
		.loader-img img{
			left: 45%;
		}
	
		.left-side,
		.left-relative,
		.left-side-small{
			position: relative;
			left: 0px;
			top: 0px;
			height: 100vh;
			z-index: 1;
		}
		
		
		.right-side,
		.right-side-large,
		.right-side-small{
			position: relative;
			right: 0px;
			top: 0px;
			height: 100%;
			z-index:1;
		}

		.right-side,
		.right-side-large,
		.right-side-small,
		.left-side,
		.left-side-small{
			width: 100%;
		}
		
		.multi-page{
			padding: 10px;
		}
		
		.info-left,
		.contact-us{
			display: none;
		}
		
		.nav-trigger{
			background: #191919;
			border: 1px solid #191919;
			padding: 10px;
			left: 50px;
			top: 40px;
		}
		
		.to-top,
		.trigger-2{
			background: #191919;
			border: 1px solid #191919;
			width: 50px;
			height: 50px;
			line-height: 50px;
			padding-left: 5px;
			font-size: 30px;
		}
		
		
		.to-top{
			left: 50px;
			bottom: 40px;
		}
		
		.trigger-2,
		.trigger-3{
			left: 50px;
			top: 40px;
		}

		.to-top:hover,
		.trigger-2:hover,
		.nav-trigger:hover{
			background: #fff;
			border: 1px solid #e5e5e5;
		}
		
		.header-content h2{
			line-height: 1.5;
		}
		
		.photographer-content,
		.lawyer-content,
		.filmmaker-content{
			position: relative;
			top: 17%;
			left: 20px;
		}
		
		#download-2 h2,
		#download h2{
			margin-bottom: 50px;
		}
		
		.works-filter li,
		.works-filter-full li{
			margin-right: 30px;
			
		}

		.about-text{
			line-height: 28px;
		}
		
		#services{
			padding-bottom: 75px;
		}
		
		#services .no-margin{
			margin-bottom: 75px !important;
		}
		
		.home-subscribe .section-content-over-img{
			margin: 0px;
			padding: 0px;
		}
		
		.buttons .button{
			margin-left: auto !important;
			margin-right: auto !important;
			margin-top: 0px;
			
		}
		

	}
	

	@media all and (max-width: 768px) {
		
		.about-img{
			margin-bottom: 30px;
		}
		
		.history img{
			margin-top: 0px;
			margin-bottom: 25px;
		}
		
		.uk-slidenav{
			display: none;
		}
		
		#clients .no-padding{
			padding-top: 150px !important;
		}
		
		#clients .no-border{
			padding-top: 0px !important;
		}
		
		.client-image{
			border: none;
		}
		
		.play-links-section li{
			margin-top: 45px;
		}
		
		.footer-block{
			margin-bottom: 75px;
		}
		
		.footer-links{
			margin-top: 25px;
		}
		
		.footer-text{
			margin-top: 75px;
		}
		
		.footer-social a{
			margin-right: 20px;
		}
		
		.equipment img{
			margin-bottom: 30px;
		}
		
		.uk-accordion-title{
			line-height: 1.3;
		}
		
		.eventtime{
			margin-bottom: 30px;
		}
		
		.fullwidth-lawyer-links,
		.fullwidth-musician-songs{
			margin-top: 75px;
		}

		.full-home-with-sub .section-content-over-img{
			margin: 0px;
			
		}
		
		.home-subscribe .section-content-over-img{
			margin: 0px;
			padding: 0px;
		}
		
		.home-subscribe{
			margin-top: 75px;
		}
		
		.post-section,
		.sidebar-section{
			padding: 150px 0px 150px 0px;
		}
		
		.comment-img img{
			margin-bottom: 35px;
		}
	}
	
	
	@media all and (max-width: 600px) {
		

		.section-content-over-img{
			margin: 15px;
			padding: 75px;
		}
		
		.nav-trigger,
		.trigger-3,
		.trigger-2{
			left: 15px;
			top: 15px;
		}
		
		.to-top{
			left: 15px;
			bottom: 15px;
		}
		
		.f-large{
			font-size: 2em;
		}
		
		.photographer-content,
		.lawyer-content,
		.filmmaker-content{
			top: 20%;
			left: 20px;
		}
	}
	

	
	@media all and (max-width: 525px) {
		
		.works-filter-top li a{
			margin-right: 10px;
		}
		
		.blog-post h4 a{
			margin-right: 0px;
		}
		
		.point-2{
			display: none;
		}
		
		.f-medium{
			font-size: 22px;
		}
		
		
		.f-expanded{
			font-size: 25px;
		}

	}
	


	@media all and (max-width: 500px) {

		.loader-img img{
			left: 36%;
			top: 40%;
		}

	}

	

	@media all and (max-width: 550px) {
	

		.f-smaller{
		font-size: 10px;
		
		}
	
		.f-small{
			font-size: 13px;
			
		}
		
		.f-normal{
			font-size: 14px;
			
		}
		
		.f-semi-expanded{
			font-size: 16px;
			
		}
		
		.f-medium{
			font-size: 19px;
			
		}
		
		.f-expanded{
			font-size: 22px;
			
		}
		
		.f-big{
			font-size: 25px;
			
		}
		
		.f-large{
			font-size: 27px;
			
		}
		
		.f-extra-expanded{
			font-size: 30px;
			
		}
		
		.f-huge{
			font-size: 35px;
		
		}
		
		.home-awards img{
			margin-right: -10px;
		}
		
	}
	
	
	@media all and (max-width: 375px) {
	
		
		.f-large{
			font-size: 22px;
			
		}
		
		.social-2 a i{
			margin-bottom: 35px;
		}

		
	}

	
	
	
	
	#header-preview{
		padding-top: 175px;
		padding-bottom: 175px;
	}
	
	#preview{
		padding-top: 150px;
	}
	
	#preview .filter-style-3 li a{
		margin-right: 38px;
		font-size: 11px;
		margin-bottom: 40px;
	}
	
	#preview .work{
		overflow: visible !important;
	}
	
	#preview .work img{
		border-radius: 5px;
	}
	
	#preview .work h2{
		margin-top: 20px;
		margin-bottom: 75px;
		font-size: 11px;
	}
	
	#preview h2,
	#preview-features h2{
		margin-bottom: 150px;
	}
	
	
	
	#preview .filter-style-3 li a:hover,
	#preview .filter-style-3 li a:active,
	#preview .filter-style-3 li a:focus{
		text-decoration: underline;
	}
	
	#preview .gutter{
		padding: 0px 0px 20px 60px;
	}
	
	
	#preview-features{
		padding-top: 175px;
		padding-bottom: 125px;
	}
	
	#preview-portfolio{
		padding-top: 250px;
		padding-bottom: 250px;
	}
	
	#preview-purchase{
		padding-top: 175px;
		padding-bottom: 175px;
	}
	
	#preview-purchase{
		color: #fff;
	}
	
	#preview-purchase h1{
		margin-top: 40px;
	}
	
	.pre-logo{
		width:40px;
		margin-bottom: 20px;
	}
	
	.feature-pack{
		background: #fff;
		padding: 60px 0px 60px 0px;
		color: #191919;
		margin-bottom: 50px;
	}
	
	.demo-section{
		padding: 150px 0px 150px 0px;
	}
	
	.demo-section img{
		opacity: .9;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.demo-section img:hover{
		opacity: 1;
	}
	
	.main-demo{
		padding-left: 50px;
	}
	
	.main-demo img{
		
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.main-demo:hover img{
		transform: translate(-10px);
	}
	
	.main-demo:hover .number-demo{
		transform: scale(15) translate(4.3px);
	}
	
	.other-demos{
		padding-right: 50px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.number-demo{
		position: absolute;
		bottom: 50px;
		right: 55%;
		transform: scale(16);
		opacity: 0.55;
		text-shadow:1px 1px 0px #000000;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;


	}
	
	.other-demos img{
		margin-top: 50px;
		margin-bottom: 15px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	
	}
	
	.other-demos img:hover{
		transform: translate(-10px);
	}
	
	.other-demos span{
		margin-right: 10px;
	}
	
	.demo-slider-container{
		margin-bottom: 75px;
	}
		
	.demo-slider img{
		max-width: 100%;
		display: block;
		margin-bottom: 40px;
		border-radius: 0%;
	}
	
	.demo-slider img{
		max-width: 100%;
		display: block;
		margin-bottom: 40px;
		border-radius: 0%;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.demo-slider li a img:hover{
		box-shadow: none;
	}
	
	
	.preview-img{
		padding: 0px 0px 0px 0px;
	}
	
	.preview-img h2{
		margin-top: 20px;
		text-align: left !important;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 150px !important;
	}
	
	.preview-img img{
		opacity: 0.9;
		max-width: 400px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	
	.preview-img img:hover{
		opacity: 1;
		transform: translateY(-10px);
	}
	
	#header-preview *{
		text-align: center !important;
	}
	
	@media all and (max-width: 768px) {

	
		.other-demos{
			margin-top: 50px;
			padding-right: 0px;
		}
		
		.main-demo{
			padding-left: 0px;
		}
		
		.main-demo img{
			padding-top: 50px;
			padding-bottom: 40px;
		}
		
		.number-demo{
			display: none;
		}
		
		.slider-title{
			margin-bottom: 25px;
		}
		
		.preview-img{
			padding: 0px 0px 0px 0px;
		}
	}
	
	#works{
		padding-top: 150px;
	}
	
	#crew{
		padding-top: 150px;
	}	