/*------------------------------------------------------------------
[Collective Wordpress Stylesheet]
Version: 1.0
-------------------------------------------------------------------*/

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

1. general style
1.1 theme unit
2. typography style
3. header style
4. portfolio feed style
5. text positioning style
6. iconed boxes style
7. royal slider style
8. vertical projects style
9. horizontal mosaic
10. owl carousel
11. portfolio filter
12. portfolio single
12.1 stoned themes lightbox
13. about me
14. contact
15. variable sized gallery
16. blog
17. load more animation
18. accordion services
19. pricing table
20. word variation
21. loading screen
22. 404 page style

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

/*------------------------------------------------------------------
[1. general style]
*/
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 100;
	src: local('Montserrat-Hairline.woff2'), url(../fonts/Montserrat-Hairline.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 200;
	src: local('Montserrat-Light.woff2'), url(../fonts/Montserrat-Light.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: local('Montserrat-Regular.woff2'), url(../fonts/Montserrat-Regular.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	src: local('Montserrat-SemiBold.woff2'), url(../fonts/Montserrat-SemiBold.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	src: local('Montserrat-Bold'), url(../fonts/Montserrat-Bold.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 800;
	src: local('Montserrat-ExtraBold.woff2'), url(../fonts/Montserrat-ExtraBold.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
  	font-family: 'Montserrat';
  	font-style: normal;
  	font-weight: 900;
  	src: local('Montserrat-Black'), url(../fonts/Montserrat-Black.woff2) format('woff2');
  	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

.stoned-container{
	padding: 0 30px;
}

.stoned-container.main{
	overflow: hidden;
}

.stoned-container.main.no-padding{
	padding: 0;
}

.stoned-container:before{
    display: table;
    content: " ";
}

.stoned-container:after{
    clear: both;
}

.stoned-container:after{
    display: table;
    content: " ";
}

.snt {
position: fixed;
right: 5px;
bottom: 0px;
width: 20px;
}

img{
    -ms-interpolation-mode: bicubic;
    border: 0;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

img.lazy{
	max-width: 100%;
	height: auto;
	display: block;
}

.lazy-container{
	display: block;
	overflow: hidden;
	background-color: #dcdcdc;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 30px 30px;
}

.lazy-container:before{
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	top: 50%;
	margin-top: -7.5px;
	left: 50%;
	margin-left: -7.5px;
	border-radius: 50%;
	border: 2px solid #151515;

	-webkit-animation: lazy-load-animation 1s ease-out infinite;
	animation: lazy-load-animation 1s ease-out infinite;
	-ms-animation: lazy-load-animation 1s ease-out infinite;
	-moz-animation: lazy-load-animation 1s ease-out infinite;
	-o-animation: lazy-load-animation 1s ease-out infinite;
}

@-webkit-keyframes lazy-load-animation{
    0% {
    	opacity: 0.5;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
    }
    100% {
		opacity: 1;
    	-webkit-transform: scale(3);
		-ms-transform: scale(3);
		-o-transform: scale(3);
		transform: scale(3);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(5);
		-ms-transform: scale(5);
		-o-transform: scale(5);
		transform: scale(5);
	}
} 

@keyframes lazy-load-animation{
    0% {
    	opacity: 0.5;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
    }
    100% {
		opacity: 1;
    	-webkit-transform: scale(3);
		-ms-transform: scale(3);
		-o-transform: scale(3);
		transform: scale(3);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(5);
		-ms-transform: scale(5);
		-o-transform: scale(5);
		transform: scale(5);
	}
}

.lazy-container img{
	position: relative;
}

.collective-title, h2.wpb_heading{
	font-weight: bold;
	text-transform: uppercase;
    margin: 0;
    font-size: 12px;
}

.collective-title.title-right:after, h2.wpb_heading.title-right:after{
	margin-left: auto;
}

.collective-title:after, h2.wpb_heading:after{
	content: "";
	width: 30px;
	border-bottom: 2px solid;
	display: block;
	padding-top: 20px;
	margin-bottom: 30px;
}

footer{
	overflow: hidden;
	background: #eee;
	padding: 60px 0;
}

footer .widget{
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 0;
}

.page-template-template-blog header {
	margin-bottom: 30px;
}

.page-title {
	margin-bottom: 30px;
	margin-top: 30px;
}

body.framed-body {
	width: calc(100% - 30px);
	margin: 0px auto;
	box-sizing: content-box;
	border: 15px solid #fff;
}

#to-top {
	width: 40px;
	height: 40px;
	display: none;
	position: fixed;
	right: 15px;
	bottom: 30px;
    border: 2px solid;
    color: #999999;
    border-radius: 50%;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    background-color: #ffffff;
    cursor: pointer;
    z-index: 20;
}

#wpadminbar #wp-admin-bar-my-account.with-avatar>a img{
	float: none !important;
}

#wp-admin-bar-user-info .avatar-64 {
    position: absolute;
    left: -72px;
    top: 4px;
    width: 64px;
    height: 64px;
	float: none !important;
	max-width: initial;
	max-height: initial;
}

/*------------------------------------------------------------------
[1.1 theme unit style]
*/
.wp-caption {
	max-width: 100%;
	background-color: #eeeeee;
	margin-top: 15px;
	display: block;
    padding-top: 5px;
}

.wp-caption.alignnone{
	clear: both;
}

.wp-caption-text {
	padding: 10px 5px;
}

p.wp-caption-text{
	margin-bottom: 0 !important;
}

.sticky {
	border: 2px solid;
	box-sizing: border-box;
}

.gallery-item{
	padding: 0 15px;
}

.gallery-caption {
	/*background: #eeeeee;*/
}

.bypostauthor {

}

blockquote.aligncenter, .wp-caption.aligncenter, img.aligncenter {
    margin-top: 15px;
    margin-bottom: 15px;
}

blockquote.alignleft, .wp-caption.alignleft, img.alignleft {
    margin: 15px;
    margin-left: 0;
    margin-top: 5px;
}

blockquote.alignright, .wp-caption.alignright, img.alignright{
	margin: 15px;
    margin-right: 0;
    margin-top: 5px;
}

.wp-caption.alignnone{
	margin-bottom: 15px;
}

blockquote.aligncenter, .wp-caption.aligncenter, img.aligncenter{
	clear: both;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto;
}

.single-blog-content a{
	text-decoration: underline;
}

cite {
	font-weight: 600;
}

#cizgi{
    position:relative;
    width:100%;
    height:30px;
    background:#f3f3f3;
}

table{
	margin-bottom: 30px;
}

thead{
  background-color: #eaeaea;
  padding: 10px;
  font-size: 14px;
  text-transform: uppercase;
  text-align: left;
 }

th{
  border: 1px solid #eaeaea;
  padding: 10px;
  font-weight: 500;
 }

td{
  border: 1px solid #eaeaea;
  padding: 5px;
  font-size: 13px;
  text-align: center;
} 

kbd{
	background-color: #151515;
}

embed, iframe{
	max-width: 100%;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

/*------------------------------------------------------------------
[2. typography style]
*/
body{
	color: #151515;
	font-size: 12px;
	font-weight: 200;
}

a, a:hover, a:focus{
	text-decoration: none;
	color: inherit;
	outline: 0;
}

p, span{
	line-height: 21px;
}

body{
	font-family: 'Montserrat';
    -webkit-font-smoothing: subpixel-antialiased;
}

/*------------------------------------------------------------------
[3. header style]
*/
@media(min-width: 768px){
	.transparent-header, .transparent-footer, .transparent-header-footer{
	    position: relative;
	}

	.transparent-header > header, .transparent-header-footer > header{
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    z-index: 11;
	    background: rgba(0,0,0,0) !important;
	}

	.transparent-footer > footer, .transparent-header-footer > footer{
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    z-index: 11;
	    background-color: rgba(0,0,0,0);
	}

	.transparent-header, .transparent-footer{
	    position: relative;
	}
}

header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	position: relative;
	z-index: 20;
}

header.header-gap {
	margin-bottom: 30px;
}

.shares > ul {
	position: absolute;
	z-index: 1;
}

.shares > ul > li {
    margin: 10px 0;
    color: #ffffff;
    display: none;
}

.circle-shares li i{
    line-height: 36px;
}

header .circle-shares li a{
    color: #999;
    border-color: #eee;
    background-color: #fff;
}

header .circle-shares li a:hover{
    color: #151515;
}

.shares-container ul{
	margin: 0;
	z-index: 2;
}

.transparent-header-footer .circle-shares li a, .transparent-header .circle-shares li a{
	background-color: rgba(0,0,0,0);
}

.shares > a{
	position: relative;
}

.shares > a:after{
	content: "";
	border-left: 6px solid rgba(0,0,0,0);
	border-right: 6px solid rgba(0,0,0,0);
	border-top: 5px solid #eee;
	position: absolute;
	bottom: 0;
	opacity: 0;
	left: 50%;
	margin-left: -6px;
	z-index: -1;
}

.shares > a:hover:after, .shares > a.active:after{
	bottom: -6px;
	opacity: 1;
	-webkit-transition: bottom 0.4s ease-in-out, opacity 0.2s 0.2s ease-out;
	-moz-transition: bottom 0.4s ease-in-out, opacity 0.2s 0.2s ease-out;
	-o-transition: bottom 0.4s ease-in-out, opacity 0.2s 0.2s ease-out;
	transition: bottom 0.4s ease-in-out, opacity 0.2s 0.2s ease-out;
}

.subheader {
	min-height: 150px;
}

/*menu without manage location selected*/
.header-v1 div.menu{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	color: #999;
}

.header-v1 div.menu > ul > li > a:after{
    content: "";
    width: 0px;
    height: 0;
    border: 2px solid;
    position: absolute;
    top: 50%;
    margin-top: 20px;
    left: 50%;
    margin-left: -2px;
    opacity: 0;
}

.header-v1 div.menu > ul > li:hover > a:after, .header-v1 div.menu > ul > li.current_page_item > a:after{
    opacity: 1;
}

.header-v1 .menu li{
	list-style-type: none;
	position: relative;
}

.header-v1 .menu li:hover > a{
	text-decoration: underline;
}

.header-v1 .menu li a{
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.header-v1 div.menu > ul > li{
  	display: inline-block;
}

.header-v1 div.menu > ul > li > a{
  	display: inline-block;
  	line-height: 120px;
  	padding-left: 20px;
  	padding-right: 20px;
  	text-transform: uppercase;
  	font-weight: 700;
  	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.header-v1 .menu ul.sub-menu,
.header-v1 .menu ul.children{
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	position: absolute;
	width: 120px;
	margin: 0;
	padding: 7px 0;
	border: 2px solid #fff;
	background: #eee;
	right: initial;
	left: 115px;
	top: -9px;
	margin-left: 1px;
	color: #a9a9a9;

	-webkit-transform: -webkit-translateY(-15px);
	-moz-transform: -moz-translateY(-15px);
	-o-transform: -o-translateY(-15px);
	transform: translateY(-15px);

	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.header-v1 .sub-menu,
.header-v1 .children{
	background-color: #fff;
}

.header-v1 div.menu > ul > li > ul.sub-menu,
.header-v1 div.menu > ul > li > ul.children{
	top: 85%;
	right: 50%;
	margin-left: 0;
	margin-right: -60px;
	left: auto;
	padding: 7px 0;
	color: #a9a9a9;
}

.header-v1 div.menu > ul > li > ul.sub-menu:before,
.header-v1 div.menu > ul > li > ul.children:before{
	content: " ";
	border-left: 10px solid rgba(255, 0, 0, 0);
	border-bottom: 10px solid #fff;
	border-right: 10px solid rgba(255, 0, 0, 0);
	border-top: 0;
	position: absolute;
	width: 0;
	height: 0;
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -10px;
}

.header-v1 .menu > li > ul.sub-menu:after,
.header-v1 .menu > li > ul.children:after{
	content: " ";
	border-left: 10px solid rgba(255, 0, 0, 0);
	border-bottom: 10px solid #eee;
	border-right: 10px solid rgba(255, 0, 0, 0);
	border-top: 0;
	position: absolute;
	width: 0;
	height: 0;
	position: absolute;
	top: -7px;
	left: 50%;
	margin-left: -10px;
}

.header-v1 .menu ul.sub-menu li a,
.header-v1 .menu ul.children li a{
	display: block;
	padding: 5px 10px;
}

.header-v1 .menu ul.sub-menu li:last-child a,
.header-v1 .menu ul.children li:last-child a{
	border-bottom: 0;
}

.header-v1 .menu li:hover > ul.sub-menu,
.header-v1 .menu li:hover > ul.children{
	visibility: visible;
	opacity: 1;
	z-index: 2;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.header-v1 .menu ul.sub-menu li > ul.sub-menu:before,
.header-v1 .menu ul.sub-menu li > ul.children:before{
	content: "";
	border-top: 10px solid rgba(255, 0, 0, 0);
	border-right: 10px solid #fff;
	border-bottom: 10px solid rgba(255, 0, 0, 0);
	width: 0;
	height: 0;
	position: absolute;
	top: 12px;
	left: -12px;
	z-index: 3;
}

.header-v1 .menu ul.sub-menu li > ul.sub-menu:after,
.header-v1 .menu ul.sub-menu li > ul.children:after{
	content: "";
	border-top: 10px solid rgba(255, 0, 0, 0);
	border-right: 10px solid #eee;
	border-bottom: 10px solid rgba(255, 0, 0, 0);
	width: 0;
	height: 0;
	position: absolute;
	top: 12px;
	left: -9px;
	z-index: 3;
}
/*menu without manage location selected*/

/*------------------------------------------------------------------
[4. portfolio feed style]
*/
.portfolio-items{
	overflow: hidden;
}

.portfolio-items > .row{
	margin-top: 15px;
	margin-bottom: 15px;
}

.portfolio-items img{
	display: block;
	max-width: 100%;
	height: auto;
}

.zoom-effect .overlay-container:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.zoom-effect .overlay-container img {
    -webkit-transition: -webkit-transform 0.8s ease-in-out;
	-moz-transition: -moz-transform 0.8s ease-in-out;
	-o-transition: -o-transform 0.8s ease-in-out;
	transition: transform 0.8s ease-in-out;
}

.portfolio-items .overlay{
	background-color: rgba(0,0,0,0.8); 
}

.portfolio-item{
	margin-top: 15px;
	margin-bottom: 15px;
	overflow: hidden;
}

.portfolio-items .load-more-container a {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.portfolio-items .load-more-container a.margin-top-none{
    margin-top: 0;
}

.row.mosaic{
	margin: 15px 0;
}

.row.owl-carousel{
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.row.owl-carousel .portfolio-item-container{
	padding-left: 0;
	padding-right: 0;
}

.portfolio-loading{
	text-align: center;
	margin-top: 300px;
	display: none;
}

.portfolio-item.scrollable-image img{
	position: relative;
}

.intro-animation {
	opacity: 0;
	-webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);

	 -webkit-transition: -webkit-transform 0.8s ease-in-out, opacity 0.4s ease-in-out;
	-moz-transition: -moz-transform 0.8s ease-in-out, opacity 0.4s ease-in-out;
	-o-transition: -o-transform 0.8s ease-in-out, opacity 0.4s ease-in-out;
	transition: transform 0.8s ease-in-out, opacity 0.4s ease-in-out;
}

.intro-animation.animated {
	opacity: 1;
	-webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/*------------------------------------------------------------------
[5. text positioning style]
*/
.overlay .text {
    color: #fff;
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
}

.portfolio-item .overlay{
	/*optional text container offset*/
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

/*optional text container offset*/
.overlay .overlay-text-container{
	position: absolute;
	left: 30px;
	right: 30px;
	top: 30px;
	bottom: 30px;
}

/*optional border*/
.overlay .bordered{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	border: 1px solid rgba(0,0,0,0);
	-webkit-transition: border 0.4s ease-in-out;
	-moz-transition: border 0.4s ease-in-out;
	-o-transition: border 0.4s ease-in-out;
	transition: border 0.4s ease-in-out;
}

/*optional border*/
.overlay-container:hover .overlay .bordered{
	border: 1px solid rgba(255, 255, 255, 1);
}

/*top positioning*/
.overlay.text-left-top .text, 
.overlay.text-middle-top .text, 
.overlay.text-right-top .text{
	top: 0px;
	left: 0px;
	right: 0px;
}

.overlay.text-left-top .text{
	text-align: left;
}

.overlay.text-middle-top .text{
	text-align: center;
}

.overlay.text-right-top .text{
	text-align: right;
}

/*middle positioning*/
.overlay.text-left-middle .text, 
.overlay.text-middle-middle .text, 
.overlay.text-right-middle .text{
	position: static;
	padding: 0 0px;
}

.overlay.text-left-middle .text{
	text-align: left;
}

.overlay.text-middle-middle .text{
	text-align: center;
}

.overlay.text-right-middle .text{
	text-align: right;
}

/*bottom positioning*/
.overlay.text-left-bottom .text, 
.overlay.text-middle-bottom .text, 
.overlay.text-right-bottom .text{
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.overlay.text-left-bottom .text{
	text-align: left;
}

.overlay.text-middle-bottom .text{
	text-align: center;
}

.overlay.text-right-bottom .text{
	text-align: right;
}

.overlay-text-container.text-decoration:before{
    content: "";
	width: 0px;
    height: 0px;
	-webkit-transition: width 0.4s 0.4s, height 0.4s 0.4s;
	-moz-transition: width 0.4s 0.4s, height 0.4s 0.4s;
	-o-transition: width 0.4s 0.4s, height 0.4s 0.4s;
	transition: width 0.4s 0.4s, height 0.4s 0.4s;
}

.overlay-container:hover .overlay.text-left-bottom .overlay-text-container.text-decoration:before {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

.overlay-container:hover .overlay.text-middle-bottom .overlay-text-container.text-decoration:before {
    content: "";
    width: 40px;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    border-top: 1px solid #fff;
}

.overlay-container:hover .overlay.text-right-bottom .overlay-text-container.text-decoration:before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
/**/
.overlay-container:hover .overlay.text-left-top .overlay-text-container.text-decoration:before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    right: 0px;
    bottom: 0px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}

.overlay-container:hover .overlay.text-middle-top .overlay-text-container.text-decoration:before {
    content: "";
    width: 40px;
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-bottom: 1px solid #fff;
}

.overlay-container:hover .overlay.text-right-top .overlay-text-container.text-decoration:before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
}

/**/
.portfolio-item .overlay-container .text h4{
	opacity: 0;
	color: #fff;
	-webkit-transition: opacity 0.4s 0.3s;
	-moz-transition: opacity 0.4s 0.3s;
	-o-transition: opacity 0.4s 0.3s;
	transition: opacity 0.4s 0.3s;
}

.portfolio-item .overlay-container .text h6{
	opacity: 0;
	color: #fff;
	-webkit-transition: opacity 0.4s 0.4s;
	-moz-transition: opacity 0.4s 0.4s;
	-o-transition: opacity 0.4s 0.4s;
	transition: opacity 0.4s 0.4s;
}

.portfolio-item .overlay-container:hover .text h4{
	opacity: 1;
}

.portfolio-item .overlay-container:hover .text h6{
	opacity: 1;
}

.portfolio-item .overlay-container .overlay-active .text h4{
	opacity: 1;
}

.portfolio-item .overlay-container .overlay-active .text h6{
	opacity: 1;
}

.portfolio-item .text-left-bottom .overlay-text-container .text h6,
.portfolio-item .text-middle-bottom .overlay-text-container .text h6,
.portfolio-item .text-right-bottom .overlay-text-container .text h6{
	margin-bottom: 0;
}

.portfolio-item .text-left-top .overlay-text-container .text h4,
.portfolio-item .text-middle-top .overlay-text-container .text h4,
.portfolio-item .text-right-top .overlay-text-container .text h4{
	margin-top: 0;
}

.portfolio-item .no-featured-image{
	padding-bottom: 56.25% !important;
	background-image: url('img/no-img.png');
    background-size: 100% 100%;
}

.overlay-text-container h4{
	font-weight: 200;
}

/*------------------------------------------------------------------
[6. iconed boxes style]
*/
.iconed-boxes{
	overflow: hidden;
}

.iconed-box{
	padding: 30px;
	background-color: #eee;
	overflow: hidden;
	margin-bottom: 30px;
}

.iconed-box .icon-container{
	width: 20%;
	float: left;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	font-size: 2em;
}

.icon-container.vc_icon_element-size-sm{
	font-size: 2em;
}

.icon-container.vc_icon_element-size-md{
	font-size: 2.5em;
}

.icon-container.vc_icon_element-size-lg{
	font-size: 3em;
}

.iconed-box .icon-container img{
	max-width: 100%;
	height: auto;
}

.iconed-box .iconed-box-content{
	width: 80%;
	float: left;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
}

.iconed-box-content h5{
	margin-bottom: 20px;
}

.iconed-box.right .icon-container{
	float: right;
}

.iconed-box.top .icon-container{
	width: 100%;
    text-align: center;
    padding-top: 0;
}

.iconed-box.top .iconed-box-content{
	width: 100%;
	text-align: center;
}

.service-height{
	overflow-y: auto;
}

.service-height > div{
	height: 0;
	padding-top: 0 !important;
	padding-bottom: 56.25%;
	background-size: auto 100%;
	background-position: center center !important;
}

/*------------------------------------------------------------------
[7. royal slider style]
*/
.royal-slider-container{
	height: 100vh;
	position: relative;
}

.royal-slider{
	height: 100%;
	position: relative;
	overflow: hidden;
}

.royal-slider .animation-block{
	position: absolute; 
	top:0; 
	left: 0; 
	right: 0; 
	bottom: 0;
}

.royal-slider-slide .overlay, .royal-slider .animation-block{
	z-index: 52;
}

.royal-slider-container.bordered .animation-block{
	margin: 30px;
	border: 1px solid;
}

/*text in left top position*/
.royal-slider .animation-block.left-top .rsABlock{
	text-align: left;
	position: absolute;
	top: 50px;
	left: 70px;
	right: 70px;
	bottom: auto;
}

/*text in middle top position*/
.royal-slider .animation-block.middle-top .rsABlock{
	text-align: center;
	position: absolute;
	top: 50px;
	left: 70px;
	right: 70px;
	bottom: auto;
}

/*text in right top position*/
.royal-slider .animation-block.right-top .rsABlock{
	text-align: right;
	position: absolute;
	top: 50px;
	left: 70px;
	right: 70px;
	bottom: auto;
}

/*text in left middle position*/
.royal-slider .animation-block.left-middle .rsABlock{
	position: static;
}

.royal-slider .animation-block.left-middle{
	text-align: left;
	margin-left: 7%;
}

/*text in right middle position*/
.royal-slider .animation-block.right-middle .rsABlock{
	position: static;
}

.royal-slider .animation-block.right-middle{
	text-align: right;
	margin-right: 7%;
}

/*text in middle middle position*/
.royal-slider .animation-block.middle-middle .rsABlock{
	position: static;
}

.royal-slider .animation-block.middle-middle{
	text-align: center;
}

/*text in left bottom position*/
.royal-slider .animation-block.left-bottom .rsABlock{
	text-align: left;
	position: absolute;
	top: auto;
	left: 70px;
	right: 70px;
	bottom: 70px;
}

/*text in middle bottom position*/
.royal-slider .animation-block.middle-bottom .rsABlock{
	text-align: center;
	position: absolute;
	top: auto;
	left: 70px;
	right: 70px;
	bottom: 70px;
}

/*text in right bottom position*/
.royal-slider .animation-block.right-bottom .rsABlock{
	text-align: right;
	position: absolute;
	top: auto;
	left: 70px;
	right: 70px;
	bottom: 70px;
}

/*text color in home 2 slider*/
/*should be used in branding for customization*/
.royal-slider h1, 
.royal-slider h2,
.royal-slider h3,
.royal-slider h4,
.royal-slider h5,
.royal-slider h6,
.royal-slider p,
.royal-slider a,
.royal-slider span{
	color: #000;
}

.transparent-header-footer .royal-slider .animation-block {
    top: 120px;
}

.rsVideoFrameHolder.rsVideoActive {
    height: 100vh !important;
}

.rsThumbsHor {
    width: 100%;
    height: 72px;
}

.rsThumbs {
    top: -102px;
    z-index: 2;
}

.rsThumbsContainer {
    position: relative;
    height: 100%;
}

.rsNavItem {
    height: 72px;
}

.rsNavItem img {
	max-height: 100%;
}

.rsThumb {
	width: 72px;
	height: 72px;
}

.vertical-slider .rsOverflow {
    cursor: s-resize !important;
}

/*------------------------------------------------------------------
[8. vertical projects style]
*/
.vertical-projects .vertical-project{
	overflow: hidden;
    text-align: center;
    float: left;
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    -webkit-transition: width 0.4s;
	-moz-transition: width 0.4s;
	-o-transition: width 0.4s;
	transition: width 0.4s;
}

.vertical-projects .vertical-project img{
	height: 100%;
	max-height: 100%;
	position: relative;
	max-width: none;
	opacity: 0;
}

.vertical-project .overlay-container{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}

.vertical-project .overlay-container .overlay{
	background-color: rgba(0, 0, 0, 0.75);
}

.vertical-project .overlay-container:hover .overlay{
	background-color: rgba(0, 0, 0, 0.5);
}

.vertical-project .text h2{
	font-size: 60px;
	font-weight: 100;
	margin: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.vertical-project .text h1{
	font-size: 24px;
	font-weight: bold;
	margin: 0;
	margin-top: 10px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.vertical-project .overlay .overlay-text-container{
	position: absolute;
}

.vertical-project .overlay-container:hover .overlay-text-container:before{
	display: none !important;
}

/*------------------------------------------------------------------
[9. horizontal mosaic]
*/
.horizontal-mosaic-container{
	overflow: scroll;
}

.horizontal-mosaic .item{
	overflow: hidden;
}

.horizontal-mosaic img{
	max-width: 100%;
}

.vertical-center-flexbox{
    /*min-height: 100vh;*/
    height: auto;
    display: -webkit-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}

.horizontal-mosaic .overlay{
	background-color: rgba(0,0,0,0.8)
}

/*------------------------------------------------------------------
[10. owl carousel]
*/
.owl-container{
	position: relative;
}

.owl-container .owl-carousel .owl-item img{
	width: auto;
	max-width: 100%;
}

/*modal-carousel*/
.modal-carousel .owl-container, 
.modal-carousel .owl-carousel, 
.modal-carousel .owl-carousel .owl-stage-outer, 
.modal-carousel .owl-carousel .owl-stage, 
.modal-carousel .owl-carousel .owl-item{
	height: 100%;
}

.modal-carousel .owl-container .owl-carousel .owl-item img{
	width: auto;
	max-height: 100%;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*slider navigation general style*/
.owl-container nav, .royal-slider-container nav{
	z-index: 10;
}

.owl-container nav div, .royal-slider-container nav div{
	width: 40px;
	height: 40px;
	display: inline-block;
	z-index: 10;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

/*vertical slider navigation orientation*/
.royal-slider-container.vertical-slider nav div{
	-webkit-transform:rotate(90deg);
	-moz-transform:rotate(90deg);
	-o-transform:rotate(90deg);
	transform:rotate(90deg);
}

/*slider navigation positions*/
/*1. side navigation*/
.owl-container nav.side div, .royal-slider-container nav.side div{
	position: absolute;
	top: 50%;
	margin-top: -20px;
}

.owl-container nav.side div.prev{
	left: 0px;
}

.owl-container nav.side div.next{
	right: 0px;
}

.royal-slider-container nav.side div.prev{
	left: 30px;
}

.royal-slider-container nav.side div.next{
	right: 30px;
}

/*vertical slider side navigation*/
.royal-slider-container.vertical-slider nav.side div.prev{
	left: auto;
	top: 30px;
    right: 50%;
    margin-right: -15px;
    margin-top: 0;
}

.royal-slider-container.vertical-slider nav.side div.next{
    bottom: 30px;
    top: auto;
    right: 50%;
    margin-right: -15px;
}

/*2. bottom-left*/
.owl-container nav.bottom-left, .royal-slider-container nav.bottom-left{
    position: absolute;
    bottom: 30px;
    left: 30px;
}

/*3. bottom-middle*/
.owl-container nav.bottom-middle, .royal-slider-container nav.bottom-middle{
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
}

/*outside of slider*/
.owl-container nav.bottom-middle.outside, .royal-slider-container nav.bottom-middle.outside{
	text-align: center;
	margin: 50px 0 15px 0;
	position: relative;
}

.variable-sized-gallery .owl-container nav.bottom-middle.outside{
	margin: 50px 0 50px 0;
	bottom: auto;
}

/*4. bottom-right*/
.owl-container nav.bottom-right, .royal-slider-container nav.bottom-right{
    position: absolute;
    bottom: 30px;
    right: 30px;
}

/*slider navigation style*/
/*1. bordered angle navigation*/
.owl-container nav.style-1 div, .royal-slider-container nav.style-1 div{
	color: #fff;
	border: 2px solid;
	font-size: 18px;
}

.owl-container nav.style-1 div:hover, .royal-slider-container nav.style-1 div:hover{
	background: #fff;
	color: #000;
}

.owl-container nav.style-1 div.prev > i:before, .royal-slider-container nav.style-1 div.prev > i:before{
    content: "\f104";
    padding-right: 2px;
}

.owl-container nav.style-1 div.next > i:before, .royal-slider-container nav.style-1 div.next > i:before{
    content: "\f105";
    padding-left: 2px;
}

/*2. chevron navigation*/
.owl-container nav.style-2 div, .royal-slider-container nav.style-2 div{
	color: #fff;
	opacity: 0.5;
}

.owl-container nav.style-2 div:hover, .royal-slider-container nav.style-2 div:hover{
	opacity: 1;
}

.owl-container nav.style-2 div.prev > i, .royal-slider-container nav.style-2 div.prev > i{
    font-size: 3em;
}

.owl-container nav.style-2 div.next > i, .royal-slider-container nav.style-2 div.next > i{
    font-size: 3em;
}

.owl-container nav.style-2 div.prev > i:before, .royal-slider-container nav.style-2 div.prev > i:before{
    content: "\f053";
}

.owl-container nav.style-2 div.next > i:before, .royal-slider-container nav.style-2 div.next > i:before{
    content: "\f054";
}

/*3. circled arrow navigation*/
.owl-container nav.style-3 div, .royal-slider-container nav.style-3 div{
	color: #fff;
	opacity: 0.5;
}

.owl-container nav.style-3 div:hover, .royal-slider-container nav.style-3 div:hover{
	opacity: 1;
}

.owl-container nav.style-3 div.prev > i, .royal-slider-container nav.style-3 div.prev > i{
    font-size: 3em;
}

.owl-container nav.style-3 div.next > i, .royal-slider-container nav.style-3 div.next > i{
    font-size: 3em;
}

.owl-container nav.style-3 div.prev > i:before, .royal-slider-container nav.style-3 div.prev > i:before{
	content: "\f190";
}

.owl-container nav.style-3 div.next > i:before, .royal-slider-container nav.style-3 div.next > i:before{
	content: "\f18e";
}

/*------------------------------------------------------------------
[11. portfolio filter]
*/
.portfolio-filter-v1{
	background: #151515;
	color: #FFF;
}

.portfolio-filter-v1 ul{
	 margin: 0;
	 padding: 0 30px;
}

.portfolio-filter-v1 ul li{
	padding: 0 25px;
	line-height: 120px;
	position: relative;
	display: inline;
}

.portfolio-filter-v1 ul li:first-child{
	padding-left: 0;
}

.portfolio-filter-v1 ul li:last-child{
	padding-right: 0;
}

.portfolio-filter-v1 ul li a{
	text-transform: uppercase;
	font-size: 12px;
	display: inline-block;
	line-height: normal;
	padding: 8px;
}

.portfolio-filter-v1 ul li a:after{
    content: "";
    width: 2px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
}

.portfolio-filter-v1 ul li:last-child a:after{
	display: none;
}

.portfolio-filter-v2{
	width: 20%;
	float: left;
	min-height: 1px;
	margin-top: 30px;
}

.portfolio-filter-v2 ~ .row{
	width: 80%;
	float: left;
	min-height: 1px;
}

.portfolio-filter-v2 ~ .row.load-more-container{
	float: right;
	margin-right: 15px;
	margin-left: 0;
    margin-top: -15px;
}

.portfolio-filter-v2 li{
	display: block;
	padding: 15px 30px;
	color: #999;
}

.portfolio-filter-v2 li:first-child{
	padding-top: 0;
}

.portfolio-filter-v2 ul li a{
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
	line-height: normal;
	padding: 8px;
}

.portfolio-filter-v2 ul li span{
	font-size: 12px;
	padding-right: 17px;
}

.portfolio-filter-v2 ul li.active{
	color: #151515;
}

.portfolio-filter-v2 ul li.active span{
	font-weight: bold;
}

.portfolio-filter-v2.right{
	float: right;
	text-align: right;
}

.portfolio-filter-v2.right ~ .row{
	float: right;
}

.portfolio-filter-v2.right ~ .row.load-more-container{
	float: left;
	margin-left: 15px;
}

.portfolio-filter-v2.right ul li span{
	float: right;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 0;
    padding-left: 17px;
    line-height: 12px;
}

/*------------------------------------------------------------------
[12. portfolio single]
*/
.single-portfolio-container{
	margin-top: 80px;
	margin-bottom: 100px;
    color: #979797;
}

.single-portfolio-container .portfolio-images{
	margin-top: -15px;
	margin-bottom: -15px;
}

.portfolio-images .portfolio-image{
	margin-top: 15px;
	margin-bottom: 15px;
}

.portfolio-images .portfolio-image img{
	display: block;
	max-width: 100%;
	height: auto;
}

.portfolio-images .portfolio-image.no-crop{
	text-align: center;
}

.portfolio-images .portfolio-image.no-crop img{
	max-height: 100%;
}

.portfolio-images .portfolio-image img.shadowed{
	border: 1px solid rgb(255, 255, 255);
	box-shadow: 0.5px 0.866px 15px 0px rgba(0, 0, 0, 0.4);
}

.single-portfolio-container .collective-title{
    color: #151515;
}

/*projects navigation*/
.projects-nav{
	padding: 0 40px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	overflow: hidden;
}

.projects-nav h4{
	margin: 0;
	font-size: 12px;
}

.projects-nav > div{
	float: left;
}

.projects-nav > div span, .projects-nav > div i{
	color: #979797;
}

.projects-nav > div span{
	font-size: 12px;
}

.projects-nav > div > a{
	padding: 40px 0;
	display: block;
}

.projects-nav .prev-project, .projects-nav .next-project{
	width: 47%;
}

.projects-nav .prev-project{
	border-right: 1px solid #eee;
}

.projects-nav .next-project{
	border-left: 1px solid #eee;
}

.projects-nav .all-projects{
	width: 6%;
	text-align: center;
	font-size: 20px;
}
/*projects navigation*/

.share-text{
	color: #151515;
	text-transform: uppercase;
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
}

.single-shares .share-text{
	color: inherit;
}

.post-shares{
	list-style: none;
	margin-left: -7px;
	padding: 0;
	line-height: 24px;
}

.single-shares .post-shares {
    margin-left: 0;
    margin-right: -7px;
}

.post-shares li{
	display: inline-block;
	padding-right: 7px;
	padding-left: 7px;
}

.post-shares li span{
	font-size: 11px;
    vertical-align: middle;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
}

.post-shares li span:after{
	content: "";
	width: 0;
    height: 1px;
    position: absolute;
    background-color: #dddddd;
    left: 0;
    display: inline-block;
    bottom: 0;
    -webkit-transition: width 0.4s;
	-moz-transition: width 0.4s;
	-o-transition: width 0.4s;
	transition: width 0.4s;
}

.post-shares li a:hover span:after{
    width: 100%;
}

.post-shares li i{
	font-size: 15px;
    vertical-align: middle;
    padding-right: 10px;
}

.single-shares .post-shares li i {
    padding-right: 0;
    padding-left: 5px;
    width: 20px;
    text-align: center;
}

.post-shares li i.fa-facebook{
	color: #3B5998;
}

.post-shares li i.fa-twitter{
	color: #3B88C3;
}

.post-shares li i.fa-google-plus{
	color: #DA2713;
}

.post-shares li i.fa-linkedin{
	color: #0274B3;
}

.post-shares li i.fa-pinterest{
	color: #CC2127;
}

/*------------------------------------------------------------------
[12.1 stoned themes lightbox]
*/
#sth-lightbox{
	padding: 0 !important;
}

#sth-lightbox .modal-dialog{
    width: 100%;
    margin: 0;
    height: 100%;
}

#sth-lightbox .modal-body{
    height: 100%;
    padding: 0;
}

#sth-lightbox .modal-carousel-header{
	display: table;
    width: 100%;
    table-layout: fixed;
    height: 115px;
}

#sth-lightbox .slider-number{
	display: table-cell;
	width: 10%;
	vertical-align: middle;
}
.single-project_post .modal-backdrop{
    display: none;
}

#sth-lightbox .modal-content{
	height: 100%;
	border-radius: 0;
}

#sth-lightbox .slide-positions{
	width: 30px;
	height: 30px;
	display: inline-block;
	position: relative;
}

#sth-lightbox span.current-slide {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 12px;
    font-size: 12px;
    color: #979797;
}

#sth-lightbox span.all-slides {
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 12px;
    font-size: 12px;
}

#sth-lightbox .slide-positions:after {
    content: "";
    width: 42px;
    display: block;
    border-bottom: 1px solid;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
    position: absolute;
    right: 0;
    top: 0;
}

#sth-lightbox .slide-title{
	display: table-cell;
	width: 80%;
	vertical-align: middle;
}

#sth-lightbox .slide-title p{
	color: #979797;
}

#sth-lightbox .close-modal{
	display: table-cell;
	width: 10%;
	vertical-align: middle;
}

#sth-lightbox .close-lightbox{
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

#sth-lightbox .close-lightbox:before {
    content: "";
    width: 42px;
    border-bottom: 1px solid;
    display: block;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
    position: absolute;
    right: 0;
    top: 0;
}

#sth-lightbox .close-lightbox:after {
    content: "";
    width: 42px;
    border-bottom: 1px solid;
    display: block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left;
    position: absolute;
    left: 0;
    top: 0;
}

#sth-lightbox .modal-carousel{
	height: calc(100% - 230px);
}

#sth-lightbox .owl-container .owl-carousel{
	width: 100%;
	height: 100%;
	opacity: 1;
	display: block;
}

#sth-lightbox .owl-carousel img{
	max-width: calc(100% - 100px);
	max-height: 100%;
	margin: 0 auto;
}

#sth-lightbox .modal-carousel .vertical-center2-content:before{
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	top: 50%;
	margin-top: -7.5px;
	left: 50%;
	margin-left: -7.5px;
	border-radius: 50%;
	border: 2px solid #151515;
	-webkit-animation: lazy-load-animation 1s ease-out infinite;
	animation: lazy-load-animation 1s ease-out infinite;
	-ms-animation: lazy-load-animation 1s ease-out infinite; 
	-moz-animation: lazy-load-animation 1s ease-out infinite; 
	-o-animation: lazy-load-animation 1s ease-out infinite; 
}

#sth-lightbox.modal.fade {
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

#sth-lightbox.modal.fade.in{
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
#sth-lightbox.modal.fade.out{
	-webkit-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	opacity: 0;
}

#sth-lightbox.modal.fade .modal-dialog {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

/*------------------------------------------------------------------
[13. about me]
*/
.about-me-slider .royal-slider .animation-block, .about-me-slider .royal-slider .about-me-content{
	height: 100%;
}

.about-me-slider .royal-slider .rsABlock{
	top: 10%;
	bottom: 10%;
	height: 80%;
    overflow-y: auto;
}

.about-me-slider .royal-slider .left .about-me-content .rsABlock{
	left: 150px;
	right: 0;
	bottom: 50px;
}

.about-me-slider .royal-slider .right .about-me-content .rsABlock{
	left: 0;
	right: 150px;
}

.about-me-content h1{
	font-size: 32px;
}

.about-me-content h2{
	font-size: 24px;
	font-weight: 200;
    margin-top: 0;
}

.about-me-content p, .about-me-content ul{
	margin-bottom: 30px;
	line-height: 21px;
}

.about-me-content p{
	margin-bottom: 0;
}

.about-me-content, .about-me-content p, .about-me-content a, .about-me-content span, .about-me-content ul,
.about-me-content h1, .about-me-content h2, .about-me-content h3, .about-me-content h4, .about-me-content h5, .about-me-content h6{
	color: #ffffff;
}

.about-me-content .row {
    margin-bottom: 15px;
    line-height: 21px;
    margin-left: 0;
    margin-right: 0;
}

.author-name-title{
	margin-bottom: 30px;
}

.about-member{
	margin-bottom: 30px;
}

.about-member img{
	max-width: 100%;
}

.about-member .about-member-info{
	height: 100px;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    -webkit-transition: height 0.4s;
	-moz-transition: height 0.4s;
	-o-transition: height 0.4s;
	transition: height 0.4s;
}

 .about-member .overlay-container:hover .about-member-info{
	height: calc(100% - 60px);
}

.about-member-info h1, .about-member-info h2, .about-member-info h3, .about-member .about-member-info h4, .about-member .about-member-info h5, .about-member-info h6{
	color: #fff;
}

.about-member-info p{
	color: #999999;
}

.circle-shares li a{
	width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
	color: #999999;
	border-radius: 50%;
	border: 2px solid #fff;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.square-shares .circle-shares li a{
	border-radius: 0;
}

.circle-shares li a:hover{
	color: #fff;
}

.about-member-small{
	position: relative;
	overflow: hidden;
}

.about-member-small img{
	max-width: 100%;
}

.about-member-small .about-member-info{
	padding: 30px;
	background-color: #eee;
	-webkit-transition: background-color 0.4s;
	-moz-transition: background-color 0.4s;
	-o-transition: background-color 0.4s;
	transition: background-color 0.4s;
}

.about-member-small:hover .about-member-info{
	background-color: #000;
}

.about-member-small .about-member-info h5, .about-member-small .about-member-info p{
	-webkit-transition: color 0.4s;
	-moz-transition: color 0.4s;
	-o-transition: color 0.4s;
	transition: color 0.4s;
}

.about-member-small:hover .about-member-info h5, .about-member-small:hover .about-member-info p{
	color: #fff;
}

/*------------------------------------------------------------------
[14. contact]
*/
.map-contact-container.fit-to-screen{
	min-height: 600px;
}
.map-canvas{
	width: 100%;
	height: 100%;
}

.map-canvas img{
	max-width: initial;
}

.map-contact-info{
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	padding: 100px;
}

.map-contact-info > div{
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}

.map-contact-info p{
	margin: 0;
	line-height: 21px;
}

.map-contact-info.map-overlay-gradient{
	background: -webkit-linear-gradient(left, rgb(221,221,221) 30%, rgba(221,221,221,0) 100%);
	background: -o-linear-gradient(right, rgb(221,221,221) 30%, rgba(221,221,221,0) 100%);
	background: -moz-linear-gradient(right, rgb(221,221,221) 30%, rgba(221,221,221,0) 100%);
	background: linear-gradient(to right, rgb(221,221,221) 30%, rgba(221,221,221,0) 100%);
}

.map-contact-info.map-overlay-solid{
	background-color: #fff;
}

.contact-form-controls{
	overflow: hidden;
}

.contact-form-controls .control{
	position: relative;
	color: #999999;
}

.contact-form-controls .control label{
	position: absolute;
	line-height: 50px;
	font-weight: normal;
	z-index: 1;
	font-weight: 200;
}

.contact-form-controls .control input[type="text"]{
	width: 100%;
	border: 0;
	border-top: 1px solid #ddd;
	height: 50px;
	line-height: 50px;
	text-align: right;
	outline: 0;
	font-weight: 400;
}

.contact-form-controls .control input[type="email"]{
	width: 100%;
	border: 0;
	border-top: 1px solid #ddd;
	height: 50px;
	line-height: 50px;
	text-align: right;
	outline: 0;
	font-weight: 400;
}

.contact-form-controls .control.left label{
    right: 0;
    top: 0;
}

.contact-form-controls .control.left input[type="text"]{
	text-align: left;
}

.contact-form-controls .control textarea{
	width: 100%;
	border: 0;
	border-top: 1px solid #ddd;
	outline: 0;
	padding: 30px 0;
	font-weight: 400;
}

.control:last-of-type input[type="text"], .control:last-of-type textarea{
	border-bottom: 1px solid #ddd;
}

.contact-form-controls input[type="submit"] {
    padding: 10px 20px;
    margin-top: 30px;
    background: rgba(0,0,0,0);
    border: 2px solid;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}

/*------------------------------------------------------------------
[15. variable sized gallery]
*/
.variable-sized-gallery img {
    border: 10px solid #fff;
    box-shadow: 4px 4px 0 2px #e0e0e0;
    max-width: 100%;
}

.variable-sized-gallery .landscape-image{
	width: 200px;
	height: 400px;
}

.variable-sized-gallery .portrait-image{
	width: 400px;
	height: 400px;
}

/*------------------------------------------------------------------
[16. blog]
*/
.blog > header, .archive > header {
    margin-bottom: 30px;
}

.blog-main-slider{
	margin-bottom: 30px;
}

.blog-main-slider .overlay{
    background: rgba(0,0,0,0.75);
}

.blog-main-slider .blog-text{
	position: absolute;
	left: 30px;
	bottom: 30px;
	color: #fff;
}

.blog-main-slider .blog-text h4 a:hover{
	text-decoration: underline;
}

.blog-item{
	margin-bottom: 30px;
}

.blog-item .overlay{
	background: rgba(0,0,0,0.75);
	opacity: 1;
}

.blog-item img{
	max-width: 100%;
}

.blog-item .overlay-container:hover .overlay{
	left: 10px;
	right: 10px;
	top: 10px;
	bottom: 10px;
	background: #fff;
}

.blog-item .overlay-container:hover .overlay .text{
	color: #fff;
}

.blog-item .overlay-container .overlay .text h4{
	font-size: 14px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.blog-item .overlay-container .overlay .text h6{
	font-size: 12px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.blog-item .overlay-container:hover .overlay .text h4{
	color: #151515;
}

.blog-item .overlay-container:hover .overlay .text h6{
	color: #979797;
}

.load-more-container a{
    color: #999999;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase;
    border: 2px solid;
    padding: 9px 11px;
    font-weight: 400;
}

.widget{
	margin-bottom: 60px;
}

.widget-about-me .about-me-container{
	overflow: hidden;
}

.widget-about-me .about-me-img{
	width: 50%;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 auto;
}

.widget-about-me .about-me-meta{
	text-align: center;	
}

.widget-about-me .about-me-meta .about-me-name{
	font-size: 12px;
	margin-top: 10px;
	margin-bottom: 5px;
}

.widget-about-me .about-me-meta .about-me-position{
	font-size: 12px;
	color: #979797;
	margin-top: 5px;
	margin-bottom: 10px;
}

.widget select {
	max-width: 100%;
}

@media(min-width: 992px){
	.widget-about-me .about-me-img{
		width: 25%;
		overflow: hidden;
		border-radius: 50%;
		margin: 0;
		float: left;
	}

	.widget-about-me .about-me-meta{
		width: 75%;
		float: left;
		text-align: left;
		padding-left: 15px;
	}
}

.widget-instagram .instagram-images{
	font-size: 0;
	padding: 0;
	margin: 0;
}

.widget-instagram .instagram-images li{
	display: inline-block;
	padding: 1px;
}

.widget ul {
    padding-left: 15px;
    margin: 0;
}

.widget.widget-twitter ul{
	padding: 0;
}

.widget .search-form{
	position: relative;
}

.widget .search-form:after{
	content: "\f002";
	font-family: "FontAwesome";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	line-height: 40px;
	width: 40px;
	text-align: center;
}

.widget .search-form > label{
	display: block;
	width: 100%;
}

.widget .search-form > label [type="search"]{
	width: 100%;
	border: 2px solid #eeeeee;
	outline: 0;
	height: 40px;
	padding: 0 15px;
}

.widget .search-form > input.search-submit {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: none;
    border: 0;
    outline: 0;
    text-indent: -9999px;
    z-index: 2;
}

.blog-masonry-item{
	margin-bottom: 40px;
}

.post-featured-image{
	text-align: center;
}

.post-details {
    margin: 30px 0 20px 0;
}

.blog-item-content {
    padding-right: 40px;
    border-right: 1px solid #eeeeee;
}

.blog-item-content p{
    color: #979797;
}

.blog-masonry-item .overlay{
	background: rgba(21, 21, 21, 0.75);
}

.blog-masonry-item:hover .overlay{
	opacity: 1;
}

.blog-masonry-item:hover h4 a{
	text-decoration: underline;
}

body.single-post{
	position: relative;
}

.single-blog-post-title{
	margin-top: 60px;
	margin-bottom: 60px;
}

.single-blog-post-title h3{
	line-height: 1;
}

.single-blog-details{
	color: #979797;
	padding-right: 30px;
}

.single-blog-details ~ .col-md-8{
	padding-left: 30px;
}

.single-blog-content{
	color: #999999;
	margin-bottom: 60px;
}

.single-blog-content li{
	padding-bottom: 10px;
}

.single-blog-content p{
	margin-bottom: 15px;
}

#left-side > .container > .col-md-4{
	padding-right: 30px;
}

#left-side > .container > .col-md-8{
	padding-left: 30px;
}

#right-side > .container > .col-md-4{
	padding-left: 30px;
}

#right-side > .container > .col-md-8{
	padding-right: 30px;
}

/*comment-form*/
.comment-form{
	margin-bottom: 60px;
	clear: both;
}

.comment-form-controls{
	overflow: hidden;
}

.comment-form-controls .control{
	position: relative;
	color: #999999;
}

.comment-form-controls .control label{
	position: absolute;
	line-height: 50px;
	font-weight: normal;
}

.comment-form-controls .control input[type="text"]{
	width: 100%;
	border: 0;
	border-top: 1px solid #ddd;
	height: 50px;
	line-height: 50px;
	text-align: right;
	outline: 0;
}

.comment-form-controls .control.left label{
    right: 0;
    top: 0;
}

.comment-form-controls .control.left input[type="text"]{
	text-align: left;
}

.comment-form-controls .control textarea{
	width: 100%;
	border: 0;
	border-top: 1px solid #ddd;
	min-height: 180px;
	outline: 0;
	padding: 30px 0;
}

.comment-form-controls input[type="submit"] {
    padding: 10px 20px;
    margin-top: 30px;
    background: rgba(0,0,0,0);
    border: 2px solid;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}
/*comment-form*/

/*comments style*/
.comments ul.children li{
	padding-left: 75px;
	position: relative;
}

.current-comments{
	overflow: hidden;
}

.current-comments ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.current-comments li{
	padding: 40px 0 0 0;
	overflow: hidden;
	clear: both;
	margin-right: -40px;
	padding-bottom: 40px;
	position: relative;
	border-bottom: 2px solid #eaeaea;
}

.current-comments > ul > li:first-child{
	padding-top: 0;
}

.comments ul.children li:before{
	content: "";
	position: absolute;
	left: 35px;
	top: 0;
	width: 40px;
	height: 80px;
	border-left: 2px solid #eaeaea;
	border-bottom: 2px solid #eaeaea;
}

.current-comments > ul{
	padding-bottom: 40px;
	padding-right: 40px;
}

.comment-text ul { 
   list-style-type: disc; 
   list-style-position: inside; 
}

.comment-text ol { 
   list-style-type: decimal; 
   list-style-position: inside; 
}

.comment-text ul ul, .comment-text ol ul { 
   list-style-type: circle; 
   list-style-position: inside; 
   margin-left: 15px; 
}

.comment-text ol ol, .comment-text ul ol { 
   list-style-type: lower-latin; 
   list-style-position: inside; 
   margin-left: 15px; 
}

.comment-text li{
	padding: 0;
	border: none !important;
}

.current-comments li img{
	width: 75px;
	height: 75px;
	margin-right: 30px;
}

h1.comment-user, h2.comment-user{
	font-size: 12px;
	margin: 0;
}

h2.comment-user{
	font-size: 12px;
	margin-left: 10px;
	margin-top: 5px;
	margin-bottom: 15px;
	font-weight: 200;
	color: #999999;
}

.comment-text{
	color: #999999;
}

.comment-btn-container{
	padding: 30px 0;
}

.comment-reply-link input[type="submit"]{
	border: none;
	background: none;
	text-transform: capitalize;
	color: inherit;
	outline: 0;
	padding: 0;
}

.comment-reply-link span{
	position: absolute;
	right: 0px;
	top: 15px;
	color: rgb(235, 34, 39);
}

.comments .title{
	text-transform: uppercase;
	font-size: 13px;
	font-weight: bold;
	margin-top: 30px;
}
/*comments style*/

.single-format-quote .container-16-9{
	padding-bottom: 45%;
}

.single-format-quote .container-16-9 .vertical-center2-content.padding-lg{
	padding: 0px 20%;
}

/*quote background color*/
.quote-container{
	background-color: #ddd;
	height: 100%;
}

.quote-container i{
	color: #151515;
}

.quote-container p{
	line-height: 24px;
}

.embed-container iframe{
	width: 100%;
	height: 100%;
}

/*------------------------------------------------------------------
[17. load more animation]
*/
.loadMoreBtn.loading span{
	display: none;
}

.loadMoreBtn .load-more-container{
	display: none;
}

.loadMoreBtn.loading .load-more-container{
	display: block;
}

.load-more-container .spinner-1,
.load-more-container .spinner-2,
.load-more-container .spinner-3 {
  width: 12px;
  height: 12px;
  background-color: #999999;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: spinner-bounce-delay 1.4s infinite ease-in-out;
  animation: spinner-bounce-delay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.load-more-container .spinner-1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.load-more-container .spinner-2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes spinner-bounce-delay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes spinner-bounce-delay {
  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/*------------------------------------------------------------------
[18. accordion services]
*/
.vc_tta.vc_general .vc_tta-panel-title ~ h6{
	padding: 0 20px;
	margin-top: 0;
	margin-bottom: 0;
}

.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left.vc_tta-panel-title ~ h6{
	padding-left: 46px;
}

.vc_tta-panel .vc_tta-panel-title > a > i.vc_tta-icon{
	float: right;
    position: relative;
    top: 10px;
    font-size: 1.5em;
}

.vc_tta-panel .vc_tta-panel-title > a > span.vc_tta-title-text{
	margin: 0 !important;
}

.vc_tta.vc_general .vc_tta-panel-heading{
    background-size: cover;
    background-position: center center;
}

.vc_tta.vc_general .vc_tta-panel-heading h6{
    font-weight: 200;
}

.vc_tta.vc_general .vc_tta-panel-body{
	padding: 45px 30px !important;
}

/*------------------------------------------------------------------
[19. pricing table]
*/
.pricing-tables{
	margin-bottom: 20px;
	font-size: 0px;
}

.pricing-col-header{
	border: 1px solid #eaeaea;
	border-bottom: 0;
	padding: 30px;
}

.pricing-col-header h3{
	text-transform: uppercase;
}

.pricing-col-header p{
	line-height: normal;
	color: #000;
}

li.pricing-col{
	vertical-align: top;
	min-width: 25%;
	padding: 0;
	font-size: 13px;
	margin-bottom: 30px;
	margin-left: -1px;
}

.pricing-col > ul > li > i.brand-color{
	color: #151515;
}

.pricing-col ul li{
	padding: 20px;
	border: 1px solid #eaeaea;
	text-align: left;
	border-bottom: 0;
}

.pricing-col ul li:last-child{
	border-bottom:1px solid #eaeaea;
}

.pricing-col ul li:nth-child(even){
	background: rgba(0, 0, 0, 0.05);
}

.pricing-col ul li p{
	margin: 0;
}

.important{
	background: #151515;
	border: 0;
	padding-bottom: 31px;
}

.pricing-col-header.important h3,
.pricing-col-header.important p{
	color: #fff;
}

.slider-shortcode-container{
	margin-bottom: 20px;
	position: relative;
}

.slider-shortcode.owl-theme .owl-dots .owl-dot span{
	background-color: rgba(0,0,0,0);
	border: 2px solid #151515;
	opacity: 1;
}

.slider-shortcode.owl-theme .owl-dots .owl-dot.active span{
	background-color: #151515;
}

/*------------------------------------------------------------------
[20. word variation]
*/
.word-variations:after{
	content: "_";
	
	-webkit-animation-name: cursor;
	animation-name: cursor;

	-webkit-animation-duration: 1s;
	animation-duration: 1s;

	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes cursor {
    0%   {opacity: 0;}
	50%  {opacity: 1;}
	100% {opacity: 0;}
} 

@keyframes cursor {
    0%   {opacity: 0;}
	50%  {opacity: 1;}
	100% {opacity: 0;}
}

/*------------------------------------------------------------------
[21. loading screen]
*/
#loading-container{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	background-color: rgba(255, 255, 255, 0.9);
}
#loading-container.hide-loading{
	opacity: 0;
}

.loading-logo-container{
	position: relative;
	display: inline-block;
}

.current-loading-status{
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	overflow: hidden;
}

.current-loading-status img{
	max-width: none;
}

#loading-container.hide-loading{

	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;

	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;

	/*-webkit-animation-iteration-count: once;
	animation-iteration-count: once;*/
}

@-webkit-keyframes fadeOut {
    0%   {opacity: 1;}
	100% {opacity: 0; display: none;}
} 

@keyframes fadeOut {
    0%   {opacity: 1;}
	100% {opacity: 0; display: none;}
}


/*------------------------------------------------------------------
[22. 404 page style]
*/
.error-text{
	font-size: 200px;
	line-height: 200px;
	color: #000;
	font-weight: bold;
	margin: 0 auto;
	position: relative;
	display: inline-block;
}

.error-text:before {
	content: "";
	width: 100%;
	height: 10px;
	position: absolute;
	top: 60%;
	background-color: #000;
}

.oops{
	font-size: 60px;
	color: #151515;
	padding-left: 20px;
	padding-top: 10px;
	margin-top: -20px;
	font-weight: bold;
}

.error-description{
	line-height: normal;
	color: #000;
}

.black-and-white-effect img{
	-webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
    transition: all 0.4s;
}

.black-and-white-effect .vertical-center2-content > div:hover img{
	-webkit-filter: grayscale(0%); 
    filter: grayscale(0%);
}

.active.center .black-and-white-effect img{
	-webkit-filter: grayscale(0%); 
    filter: grayscale(0%);
}

.like {
    position: absolute;
    bottom: 30px;
    right: 30px;
    text-align: center;
    display: inline-block;
    width: 28px;
    height: 28px;
    -webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	-moz-transition: -moz-transform 0.4s ease-in-out;
	-o-transition: -o-transform 0.4s ease-in-out
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.like.liked {
	-webkit-transform: scale(1.2) translate3d(0, 0, 0);
	-ms-transform: scale(1.2) translate3d(0, 0, 0);
	-o-transform: scale(1.2) translate3d(0, 0, 0);
	transform: scale(1.2) translate3d(0, 0, 0);
}

.like span {
    color: #fff;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 25px;
    font-size: 12px;
}

.like i {
	color: #bf0413;
}

.um_menuTrigger .um_menuAnimatedIcon, 
.navbar-toggle .um_menuAnimatedIcon, 
.um_menuTrigger .um_menuAnimatedIcon::before, 
.um_menuTrigger .um_menuAnimatedIcon::after, 
.navbar-toggle .um_menuAnimatedIcon::before, 
.navbar-toggle .um_menuAnimatedIcon::after, 
.um_menuTrigger .um_menuAnimatedIcon.isClicked::before, 
.um_menuTrigger .um_menuAnimatedIcon.isClicked::after, 
.navbar-toggle .um_menuAnimatedIcon.isClicked::before, 
.navbar-toggle .um_menuAnimatedIcon.isClicked::after, 
.hasOverlay .icon-scroll::before,
.um_menuTrigger .um_menuAnimatedIcon.isClicked {
	background-color: #151515;
}

.um_menuTrigger,
.navbar-toggle {
  cursor: pointer;
  padding-left: 15px;
  transition: right 0.4s ease;
  -webkit-transition: right 0.4s ease;
  -moz-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
}
.um_menuTrigger .um_menuAnimatedIcon,
.navbar-toggle .um_menuAnimatedIcon {
  display: inline-block;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  vertical-align: middle;
}
.um_menuTrigger .um_menuAnimatedIcon::before,
.navbar-toggle .um_menuAnimatedIcon::before,
.um_menuTrigger .um_menuAnimatedIcon::after,
.navbar-toggle .um_menuAnimatedIcon::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s, top 0.3s, background-color 0s;
  -moz-transition: -moz-transform 0.3s, top 0.3s, background-color 0s;
  transition: transform 0.3s, top 0.3s, background-color 0s;
}
.um_menuTrigger .um_menuAnimatedIcon::before,
.navbar-toggle .um_menuAnimatedIcon::before {
  top: -5px;
}
.um_menuTrigger .um_menuAnimatedIcon::after,
.navbar-toggle .um_menuAnimatedIcon::after {
  top: 5px;
}
.um_menuTrigger .um_menuAnimatedIcon.isClicked,
.navbar-toggle .um_menuAnimatedIcon.isClicked {
  background-color: rgba(255, 255, 255, 0);
  /* transparent */
}
.um_menuTrigger .um_menuAnimatedIcon.isClicked::before,
.navbar-toggle .um_menuAnimatedIcon.isClicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.um_menuTrigger .um_menuAnimatedIcon.isClicked::after,
.navbar-toggle .um_menuAnimatedIcon.isClicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}

.blur-container {
	 display: block;
}

.preload {
	-webkit-filter: blur(5px);
	filter: blur(5px);
	width: 100%;
}