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

version 2.0

[Table of contents]
1. Global CSS        	
2. Menu CSS
3. Home Page (index.html) CSS
4. About Page CSS
5. Blog Page CSS
6. Single Post (single.html) CSS
7. Portfolio Page CSS
8. Portfolio Single Post (single-portfolio.html) CSS       
9. Contact Page CSS
10. Footer CSS
11. Responsive CSS
-------------------------------------------------------------------*/


/* ===================================
    1. Global CSS
====================================== */

body
{
    font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", serif;
    font-size: 15px; 	
    line-height: 25px;
    font-weight: 400;
    letter-spacing: .05em;
    color: #6c6c6c;
    background-color: #fff;
    overflow-x: hidden;
}

body a
{
    text-decoration: none;
    color: #000000;    
    transition: color .2s linear, background-color .2s linear, border-color .2s linear;
}

body a:hover
{
    color: #ed2024; /* red */
}

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

::-moz-selection 
{ 
    background-color: #fef271; 
}

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

.doc-loader 
{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;	
    background-color: #fff;
}

.site-content
{
    width: calc(100% - 100px);
    margin-top: 160px;
    margin-left: 100px;
    padding-bottom: 100px;
    position: relative;
    transition: margin .3s .4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.open .site-content 
{
    margin-left: 650px;
}

.done .site-content 
{
    transition-delay: 0s !important;
}

.content-left
{
    float: left;
    width: 30%;
    position: relative;
}

.content-left.product-page
{
    float: left;
    width: 30%;
    position: relative;
	display: none;
}

.content-left-holder
{
    position: fixed;    
}

.content-right
{
    float: right;
    width: 70%;    
    position: relative;
}

.content-right.product-page
{
    float: none;
    width: 70%;    
    position: relative;
	margin: 0 auto;
}

.content-right-holder
{
    width: 700px;    
    max-width: 95%;
}

.content-right-holder .entry-holder .entry-content
{
	padding-bottom: 0;
}

.welcome-content
{
    width: 200px;   
    padding-left: 85px;
    position: relative;
}

@media screen and (min-width: 641px){
	.welcome-image
	{
		position: absolute;
		top: -120px;
		left: -30px;
		z-index: -1;
		max-width: none;
		max-height: none;
		transition: all 0s ease;
	}
}

@media screen and (min-width: 1025px){
	.welcome-image
	{
		max-width: 115%;
	}
}

@media screen and (min-width: 1168px){
	.welcome-image
	{
		max-width: none;
	}
}

@media screen and (max-width: 640px){

	.content-right-holder
	{
		width: 100%;    
	}
	
	.content-right.product-page
	{
		width: 90%;
	}
}

.site-logo
{
    padding: 0;
}

.site-logo.home-logo-DT img
{
    max-width: 110px;
    margin-bottom: 1em;    
}

.site-logo.home-logo-M img
{
    display: none;    
}

.site-description
{
    font-size: 13px;
    line-height: 20px;
}

.page h1.entry-title
{    
    font-family: 'Montserrat', sans-serif, Arial;
    font-size: 24px;
    line-height: 38px;
    padding: 0;
}

.bc-link a
{     
    color: #ed2024; /* red */
    font-weight: 400;
    padding: 0;
    font-size: 15px;
}

.bc-link a:hover
{
    
}

/*
.bc-link a::after
{
    content: '';
    display: block;
    width: 0;
    height: 6px;
    background-color: #fbb7d5;
    transition: width .3s;
    position: absolute;
    left: 0;
    bottom: 12px;
    z-index: -1;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: normal;
    color: #ed2024;
    line-height: inherit;
    direction: ltr;
}
*/

.bg-a
{
    background: rgba(255,230,0,0.5); /* yellow */
}

.bg-b
{
    background: #c1e4d6; /* green */
}

.hl-a span
{
    box-shadow: 0px 0px 0px 5px rgba(255,230,0,0.5); /* yellow */
    line-height: 2;
    margin: 0;
    padding: 0;
    background-color: rgba(255,230,0,0.5); /* yellow */
    border-radius: 1px 10px 10px 1px;
}

.hl-b span
{
    box-shadow: 0px 0px 0px 5px #d7f2e7;
    line-height: 2;
    margin: 0;
    padding: 0;
    background-color: #d7f2e7;
    border-radius: 1px 10px 10px 1px;
}

a.copy-link 
{
    color: #ed2024;
}

a.copy-link:hover 
{
    text-decoration: line-through;
}

/* tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border: none;
}

/* tooltip text */
.tooltip span.tooltiptext {
  visibility: hidden;
  width: 100%;
  background: rbga(0,0,0,0);
  background-color: #fef271;
  color: #6c6c6c;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  padding: 0;
  border: none;
  position: absolute;
  z-index: 1;
}

/* show tooltip text on mouseover of tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/*.button-enter {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}*/

.sans
{
    font-family: "Montserrat", sans-serif;
    font-size: 12px; 	
    line-height: 1.2;
    font-weight: 400;
    color: #000;
    padding-top: 1em;
}

/* ===================================
    2. Menu CSS
====================================== */

#header-main-menu
{
/*    font-family: 'VT323', monospace;*/
    font-family: 'UnifrakturMaguntia', cursive;
    letter-spacing: .35em;
    padding-left: 50px;
    padding-top: 150px;
}

.main-menu.sm-clean
{
    background-color: transparent;
    display: inline-block;
}

.sm-clean a
{
    position: relative;
}

.sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active      
{    
    color: #ed2024;
    padding: 5px 0;
    font-size: 3em;
    line-height: 1.1;
}

.sm-clean a:after {
    content: '';
    display: block;
    width: 0;
    height: 6px;
    background-color: #fbb7d5;
    transition: width .3s;
    position: absolute;
    left: 0;
    bottom: 12px;
    z-index: -1;
}

.main-menu.sm-clean .sub-menu li a:after
{
    height: 3px;
    bottom: 20px;
}

.sm-clean a.current:after, .sm-clean a:hover:after, .sm-clean a:focus:after, .sm-clean a:active:after, 
.sm-clean a.highlighted:after, .sm-clean ul a:hover:after, .sm-clean ul a:focus:after, 
.sm-clean ul a:active:after, .sm-clean ul a.highlighted:after
{
    width: 100%;
}

.sm-clean a span.sub-arrow
{
    color: #8bd2ff;
}

.main-menu.sm-clean .sub-menu li a
{
    color: #848484;
    text-transform: uppercase;
    font-size: 14px;
}

.menu-left-part
{
    width: 450px;
    position: fixed;
    background-color: #000;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 998;
    top: 0;
    left: -550px;
    transition: .3s .4s left cubic-bezier(0.22, 0.61, 0.36, 1);
    padding-left: 100px;
    background-image: url(images/background_02.png);
    background-repeat: no-repeat;
    background-position: top center;
}

.menu-left-part.open
{
    left: 0;          
}

.menu-left-part.done
{
    transition-delay: 0s !important;
}

.menu-right-part
{
    position: fixed;
    width: 100px;
    left: 0px;
    top: 0;
    z-index: 999;
    transition: 0.2s left cubic-bezier(0.22, 0.61, 0.36, 1), 0s 0.2s background linear;
}

.menu-right-part.open
{             
    left: -100px; 
}

.menu-right-part.open a
{
    color: black;
}

.menu-right-part.open.done
{             
    left: 0; 
}

.menu-right-part.done
{
    left: -100px;
}

.logo-holder
{
    line-height: 0;
    font-size: 0;
}

.logo-holder img
{
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
}

#toggle
{
    height: 60px;
    padding: 20px 0;
    position: relative;
    margin-top: 122px;
    transition: margin-top .3s .4s ease;
}

#toggle:hover
{
    cursor: pointer;
}

#toggle:before, #toggle:after
{
    content: '';
    height: 3px;
    width: 30px;
    background: #e9c2d9;
    left: 36px;
    position: absolute;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    top: 48px;
}

#toggle:before
{
    -webkit-transform: translate3d(0, -8px, 0);
    transform: translate3d(0, -8px, 0px);
    width: 21px;
    margin-left: 9px;
}

#toggle:hover:before
{
    margin-left: 0;
}

#toggle.on:before
{
    -webkit-transform: rotate3d(0, 0, 1, 45deg) translate3d(0, 0, 0);
    transform: rotate3d(0, 0, 1, 45deg) translate3d(0, 0, 0);   
    background-color: #fff;
    margin-left: 0;
    width: 26px;
}

#toggle.on:after
{
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    background-color: #fff;
    width: 26px;
}

#toggle:after
{
    -webkit-transform: translate3d(0, 8px, 0);
    transform: translate3d(0, 8px, 0);
}

#toggle .menu-line
{
    width: 13px;
    height: 3px;
    background: #e9c2d9;
	left: 36px;
    position: absolute;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    top: 48px;
    margin-left: 17px;
}

#toggle:hover .menu-line
{
    margin-left: 0;
}

#toggle.on .menu-line
{
    opacity: 0;
}

@media screen and (max-width: 640px)
{
	.sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active      
	{    
		color: #ed2024;
		padding: 2px 0;
		font-size: 2.5em;
		line-height: 1.1;
	}
}


/* ===================================
    3. Home Page (index.html) CSS
====================================== */

.carousel-cell 
{
    margin-right: 50px;
}

.carousel-cell .post-num 
{
    color: #a6a6a6;
    padding-top: 0;
}

.carousel-cell h3.entry-title 
{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 20px;
    padding: 0;
    font-weight: 700;    
}

.carousel-cell .cat-links 
{
    color: #000000;
}

.carousel-cell .cat-links:before 
{
    content: "";
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: #000;
    vertical-align: 5px;
    margin-right: 5px;
}

.flickity-prev-next-button.next
{
    background-image: url('images/arrow_right@2x-dbl.gif');
    background-size: 90px 136px;
    width: 90px;
    height: 66px;
	background-position: 0 0;
	background-repeat: no-repeat;
    /*transition: transform .3s ease;*/
}

.flickity-prev-next-button.previous
{
    background-image: url('images/arrow_left@2x-dbl.gif');
    background-size: 90px 136px;
    width: 90px;
    height: 66px;
	background-position: 0 0;
	background-repeat: no-repeat;
    /*transition: transform .3s ease;*/
}

.flickity-prev-next-button.next:hover 
{
    /*transform: translateX(10px);
	background-image: url('images/arrow_right@2x.gif');*/
    background-size: 90px 136px;
    width: 90px;
    height: 66px;
	background-position: 0 -73px;
}

.flickity-prev-next-button.previous:hover 
{
    /*transform: translateX(-10px);
	background-image: url('images/arrow_left@2x.gif');*/
    background-size: 90px 136px;
    width: 90px;
    height: 66px;
	background-position: 0 -73px;
}

.carousel-slider img
{    
    max-width: none;
    max-height: none;
}

.flickity-prev-next-button.next
{
    right: 20px;
    left: auto;
    z-index: 2;
    bottom: 45px;
    top: auto;
}

.flickity-prev-next-button.previous
{
    right: auto;
    left: -110px;
    z-index: 2;
    bottom: 45px;
    top: auto;
}

.flickity-prev-next-button
{
    background-color: transparent !important;
}

.flickity-prev-next-button:focus 
{
    outline: none;
    box-shadow: none;
}

.flickity-prev-next-button svg
{
    display: none !important;
}

.l-arrow-gray {
    float: left;
    width: 90px;
    height: 68px;
    opacity: .25;
}

.r-arrow-gray {
    float: right;
    width: 90px;
    height: 68px;
    opacity: .25;
}

a.DT-cat
{
	display: block;
}

a.M-cat
{
	display: none;
}

@media screen and (max-width: 640px)
{
	a.DT-cat
	{
		display: none;
	}
	
	a.M-cat
	{
		display: block;
	}
	
	.carousel-cell .post-num 
	{
		display: none;
	}
}

/* ===================================
    4. Category page CSS
====================================== */

.header-page-content
{
    padding: 2em 0;
}

h3.about-name
{
    font-family: 'Montserrat', sans-serif, Arial;
    font-size: 24px;
    line-height: 38px;
    padding: 0;
}

.about-position
{
    letter-spacing: 4px;
}

.progress_bar 
{
    margin-bottom: 15px;
}

.progress_bar_field_holder 
{
    height: 4px;
    position: relative;
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
    background-color: #d5d5d5;
    max-width: 500px;
}

.progress_bar_title
{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    color: #000;
}

.progress_bar_field_perecent 
{
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
}

.description img.improv-numbered-list-img
{
	float: left;
    width: 16px;
    margin-right: 10px;
}

@media screen and (min-width: 641px)
{ 
	.about-image
	{
		float: left;
		width: 22vh;
		margin: -5px 0 0 -15px;
		padding: 0 5px 5px 0;
	}
}

@media screen and (min-width: 1024px)
{ 
	.about-image
	{
		float: left;
		width: 20vh;
		margin: -15px 0 0 -15px;
		padding: 0 5px 0 0;
	}
}

@media screen and (max-width: 768px)
{ 
	.about-image
	{
		float: left;
		width: 25vh;
		margin: -10px 0 0 -15px;
		padding: 0 5px 5px 0;
	}
	
/*	img.PSP-cover-img
	{
		display: none;
	}

	img.PSP-cover-img-xs
	{
		display: block;
	}*/
}

@media screen and (max-width: 640px)
{ 
	.about-image
	{
		float: left;
		width: 45%;
		max-width: 160px;
		padding: 0 5px 0 0;
	}
}


ul.services-list li:after       
{   
    content: "";
    display: block;
    clear: both;
    margin-bottom: 60px;
}

ul.CV-bullets li {
	list-style: disc;
	margin-left: 1em;
}

ul.CV-sub-bullets li {
	list-style: circle;
	margin-left: 2em;
}

p.CV-p {
	margin-bottom: 1em;
}

.services-wrapper
{
    float: left;
    width: 46%;
    text-align: right;
}

.service-info
{
    display: inline-block;
    vertical-align: top;
    width: 140px;
}

.service-title
{
    display: block;
    font-size: 11px;
    line-height: 17px;    
    color: #000;
    padding-bottom: 10px;
}

.services-content
{
    font-size: 14px;
    line-height: 28px;    
    float: right;
    width: 46%;
}

.services-role
{
    color: #000;
    font-size: 34px;
    line-height: 34px;    
    font-weight: 700;
}

.services-line
{
    width: 40px;
    border-top: 5px solid #000;
    margin-right: 0;
    margin-left: auto;
}

.header-page-content li
{
	float: left;
    width: 30%;
    margin: 1em 3% 3em 0;
}

.header-page-content li.top
{
    min-height: 100px;
	margin: 3em 3% 1em 0;
}

.header-page-content li.row
{
    min-height: 100px;
	margin: 0 3% 1em 0;
}

.header-page-content li.bottom
{
    min-height: 100px;
	margin: 0 3% 3em 0;
}

.header-page-content li.bottom-ii
{
    float: left;
    width: 35%;
    min-height: 100px;
	margin: 0 0 3em 10%;
}

.header-page-content li.bottom-ii-i
{
    width: 63%;
    min-height: 100px;
	margin: 0 2% 3em 2%;
}

.header-page-content li.bottom-illustration
{
    width: 45%;
    min-height: 100px;
	margin: 0 0 3em 2%;
}

.header-page-content li.bottom-illustration.logo
{
    width: 45%;
    min-height: 100px;
	margin: 0 0 0 2%;
}

.header-page-content li.bottom-illustration.cap-i
{
    width: 41.75%;
    min-height: 100px;
	margin: 0 0 3em 2%;
}

.header-page-content li.bottom-illustration.cap-ii
{
    width: 43.75%;
    min-height: 100px;
	margin: 0 0 3em 2%;
}

.header-page-content li.bottom-illustration.poster-i
{
    width: 85%;
    min-height: 100px;
	margin: 0 auto;
	float: none;
}

.header-page-content li.bottom-illustration.poster-ii
{
    width: 85%;
    min-height: 100px;
	margin: 3em auto;
	float: none;
}

.header-page-content.zinda-display-group li.bottom-illustration.poster-ii
{
    width: 85%;
    min-height: 100px;
	margin: 3em auto;
	float: none;
}

.header-page-content.zinda-display-group li.bottom-illustration.poster-ii img
{
    max-width: 600px;
}

.header-page-content.zinda-display-group li.bottom-illustration.poster-ii-xs
{
    display: none;
}

.header-page-content.hpc-gif li.bottom-gif-i
{
    float: left;
    width: 35%;
	height: auto;
	margin: 0 0 3em 8%;
}

.header-page-content.hpc-gif li.bottom-gif-ii
{
    float: left;
    width: 45%;
	height: auto;
	margin: 0 0 3em 5%;
}

.header-page-content.hpc-gif li.bottom-gif-iii
{
    clear: both;
	float: left;
    width: 85%;
    min-height: 100px;
	margin: 0 0 3em 8%;
}

.fluid-width-video-wrapper
{
	padding-top: 100% !important;
}

.embed-video-i
{
	position: relative;
	padding-bottom: 100%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	-webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.35); 
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.35);
}

.embed-video-source-i
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-page-content li.bottom img
{
	-webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.35); 
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.35);
}

.header-page-content li.bottom-ii img
{
	-webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.35); 
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.35);
}

.header-page-content.hpc-gif li img
{
	-webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.35); 
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.35);
}

div.back-to-top 
{
	position: fixed;
    bottom: 1em;
    right: 1em;
}

.icon-nav-ul {
	
}

.home-icon-li {
	float: left;
	display: inline;
}

.home-icon {
	
}

.top-icon-li {
	float: left;
	display: inline;
}

.top-icon {
	
}

.back-to-top a.top-icon
{
	
}

a.read-more-top {
	display: inline-block;
    padding: 10px 0 0 25px;
}

a.read-more-bottom {
	padding: 0 0 0 25px;
}

.back-to-top a.top-icon img
{
	width: 4.5em;
    display: block;
    margin: 0 0 0 10px;
}

.back-to-top a.home-icon 
{
	
}

.back-to-top a.home-icon img
{
	width: 3.1em;
    display: block;
    margin: 0;
}

.phone-skin-container
{
	display: block;
    width: 250px;
    height: 450px;
    margin: 0 auto;
    padding: 0;
    border-top: 60px solid #444;
    border-right: 5px solid #444;
    border-bottom: 60px solid #444;
    border-left: 5px solid #444;
    border-radius: 35px;
	-webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.25); 
	box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.25);	
}

@media screen and (max-width: 640px)
{ 

	.header-page-content li
	{
		float: none;
		width: 90%;
		margin: 1em auto 3em auto;
	}

	.header-page-content li.top
	{
		min-height: 100px;
		margin: 3em auto;
	}

	.header-page-content li.row
	{
		min-height: 100px;
		margin: 0 auto 3em auto;
	}

	.header-page-content li.bottom
	{
		min-height: 100px;
		margin: 0 auto 3em auto;
	}

	.header-page-content li.bottom-ii
	{
		float: none;
		width: 90%;
		min-height: 100px;
		margin: 0 auto 3em auto;
	}

	.header-page-content li.bottom-ii
	{
		float: none;
		width: 90%;
		min-height: 100px;
		margin: 0 auto 3em auto;
	}

	.header-page-content li.bottom-ii-i
	{
		float: none;
		width: 90%;
		min-height: 100px;
		margin: 0 auto 3em auto;
	}

	.header-page-content li.bottom-illustration
	{
		float: none;
		width: 90%;
		min-height: 100px;
		margin: 0 auto 3em auto;
	}
	
	.header-page-content li.bottom-illustration.logo
	{
		float: none;
		width: 90%;
		min-height: 100px;
		margin: 0 auto;
	}

	.header-page-content li.bottom-illustration.cap-i
	{
		float: none;
		width: 90%;
		min-height: 100px;
		margin: 0 auto 3em auto;
	}
	
	.header-page-content li.bottom-illustration.cap-ii
	{
		float: none;
		width: 90%;
		min-height: 100px;
		margin: 0 auto 3em auto;
	}
	
	.header-page-content li.bottom-illustration.poster-i
	{
		width: 100%;
	}

	.header-page-content li.bottom-illustration.poster-ii
	{
		width: 100%;
	}
	
	.header-page-content.zinda-display-group li.bottom-illustration.poster-ii
	{
		display: none;
	}
	
	.header-page-content.zinda-display-group li.bottom-illustration.poster-ii-xs
	{
		display: block;
		width: 95%;
		min-height: 100px;
		margin: 3em auto;
		float: none;
	}
	
	.header-page-content.hpc-gif
	{
		padding: 8em 0 2em 0;
	}
	
	.header-page-content.hpc-gif li.bottom-gif-i
	{
		float: none;
		width: 90%;
		height: auto;
		max-width: 300px;
		max-height: 250px;
		margin: 0 auto 3em auto;
	}

	.header-page-content.hpc-gif li.bottom-gif-ii
	{
		float: none;
		width: 90%;
		height: auto;
		max-width: 320px;
		max-height: 100px;
		margin: 0 auto 3em auto;
	}
	
	.header-page-content.hpc-gif li.bottom-gif-iii
	{
		display: none;
	}
	
	.header-page-content.hpc-gif li img
	{
		-webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.35); 
		box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.35);
	}
	
	.header-page-content.hpc-gif li.bottom-gif-i img
	{
		
	}

	.header-page-content.hpc-gif li.bottom-gif-ii img
	{
		
	}
	
	.header-page-content.hpc-gif li.bottom-gif-iii img
	{
		
	}
	
	.home-icon-li {
		display: inline;
	}

	.home-icon {

	}

	.top-icon-li {
		float: right;
    	display: inline;
	}

	.top-icon {

	}
	
	.back-to-top a.top-icon
	{

	}

	a.read-more-top {
		padding: 5px 0 0 60px;
	}

	a.read-more-bottom {
		padding: 0 0 0 25px;
	}

	.back-to-top a.top-icon img
	{
		width: 3.5em;
		margin: 0;
	}

	.back-to-top a.home-icon 
	{
		display: block;
    	padding: 0 0 0 15px;
	}

	.back-to-top a.home-icon img
	{
		width: 2.45em;
		margin: 0;
	}

}

/* ===================================
    5. Blog Page CSS
====================================== */

.blog-item-holder 
{
    padding-bottom: 100px;
}

.blog-item-holder:last-child
{
    padding-bottom: 0;
}

.blog-item-holder h2.entry-title 
{
    font-family: 'Montserrat', sans-serif, Arial;
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
}

.blog-item-holder .item-text
{        
    position: relative;
    margin-top: 2em;
}

.blog-item-holder .item-info 
{
    background-color: #fff;
    padding: 15px 0 10px 35px;
    width: 285px;
}

.item-info:after 
{
    content: "";
    clear: both;
    display: block;
}

.blog-item-holder .item-info-left 
{
    width: 50%;
    float: left;
}

.item-info-left 
{
	margin: .45em 0 .5em 0;
}

.blog-item-holder .item-info-right 
{
    width: 50%;
    float: right;
}

.blog-item-holder .item-info-left ul:first-of-type, .blog-item-holder .item-info-right ul:first-of-type
{
    padding-bottom: 20px;
}

.item-info-title 
{
    color: #000;
    font-weight: 700;
    margin-bottom: -5px;
}

.read-more
{
    position: relative;
    display: inline-block;
    font-weight: 700;
    padding-top: 20px;
}

a.read-more:after 
{
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background-color: #c1e4d6;
    transition: width .3s;
    position: absolute;
    left: 0;
    bottom: 6px;
    z-index: -1;
}

a.read-more:hover 
{
    color: #000;
}

a.read-more:hover:after 
{
    width: 100%;
}


/* ===================================
    6. Single Post (single.html) CSS
====================================== */

.single .entry-holder 
{
    float: none;
    width: 100%;
}

.single-post h1.entry-title
{
    font-family: 'Montserrat', sans-serif, Arial;
    /*margin-bottom: 30px;*/
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2em;
	margin-top: -.6em;
	padding-bottom: .5em;
}

.post-info
{
    float: left;
    width: 100px;
    padding-right: 100px;
}

.post-info .post-num
{
    font-size: 80px;
    line-height: 100%;
    margin-top: 20px;
    color: #000;
}

.post-info .post-num span 
{
    letter-spacing: -25px;
}

.post-info .post-num .separator
{
    color: #dbdbdb;
    vertical-align: -20px;
    font-size: 50px;
}

.post-info .post-num .total-posts 
{
    color: #dbdbdb;
    vertical-align: -40px;
    margin-left: 0px;
    font-size: 50px;
}

.single-post .item-info-text
{
    padding-bottom: 25px;
	white-space: nowrap;
}

.single-post .item-info-text span
{
	font-size: 1.65em;
	line-height: 1;
	color: #5f9dd5;
}

.single-post .item-info-text span.banners-fa
{
	font-size: 1.25em;
}

.single-post .item-info-text .small-fa-icon
{
	font-size: 1em;
}

.single-LG-UI-UX-img
{
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.single-LG-UI-UX-img.full-width
{
    width: 700px;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.content-right .content-right-holder .description 
{
	font-family: 'Montserrat', sans-serif, Arial;
	width: 100%;
    float: left;
    margin: 0 0 30px 0;
    font-size: 19px;
	font-weight: 400;
    font-style: normal;
    line-height: 24px;
	color: #000;
}

.content-right .content-right-holder .description p.design-tools
{
	font-family: 'Montserrat', sans-serif, Arial;
	font-size: 11px;
    line-height: 15px;
	color: #000;
	margin: 1em 0 0 0;
	padding: 0;
}

.content-right .content-right-holder .description p
{
	font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", serif;
	font-size: 13px;
    line-height: 20px;
	color: #5e5e5e;
	margin: 1em 0 0 0;
	padding: 0;
}

.content-right .content-right-holder .description p.citation
{
	font-family: 'Montserrat', sans-serif, Arial;
	font-size: 11px;
    line-height: 15px;
	margin: 2em 0 0 0;
	padding: 0;
}

.content-right .content-right-holder .description p.citation a
{
	font-family: 'Montserrat', sans-serif, Arial;
	font-size: 11px;
    line-height: 15px;
	text-decoration: underline;
}
	
p.wrap-blockquote
{
	font-size: 13px;
    line-height: 20px;
	color: #5e5e5e;
	margin: 1em 0 0 0;
	padding: 0;
}



#text
{
	display: none;
}

.content-right .content-right-holder .description a
{
	font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", serif;
	font-size: 13px;
    line-height: 20px;
	cursor: pointer;
}

.content-right .content-right-holder .description a.citation-number
{
	line-height: 1;
	vertical-align: .2em;
	font-size: .85em;
	font-weight: 500;
}

.content-right .content-right-holder .description a.citation-number:hover
{
	
}

hr.description-border
{
	
}

.caption
{
    font-size: 9px;
}

@media screen and (max-width: 640px)
{ 
	.single-LG-UI-UX-img.full-width
	{
		width: 100%;
	}
}
/* ===================================
    7. Portfolio Page CSS
====================================== */

.category-filter 
{
    position: absolute;
    right: 15px;
    top: -20px;
    z-index: 5;
    width: 25px;
    height: 15px;
    cursor: pointer;
}

.category-filter-icon 
{
    width: 20px;
    height: 3px;
    background-color: #000;
    float: right;
    transition: width .3s ease;
}

.category-filter:hover .category-filter-icon
{
    width: 24px;
}

.category-filter-icon:after 
{
    content: "";
    display: block;
    width: 10px;
    height: 3px;
    background-color: #000;
    transform: translate(-5px,8px);
    transition: transform .3s ease;
}

.category-filter:hover .category-filter-icon:after
{
    transform: translate(4px,8px);
}

.category-filter-icon:before 
{
    content: "";
    display: block;
    width: 10px;
    height: 3px;
    background-color: #000;
    transform: translate(10px,11px);
    transition: transform .3s ease;
}

.category-filter:hover .category-filter-icon:before
{
    transform: translate(14px,11px);
}

.category-filter-list 
{
    background-color: #000;
    padding: 24px 20px;
    width: 110px;
    display: none;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 13px;
    line-height: 22px;
    color: #fff;
    z-index: 99;
    cursor: pointer;
}

.category-filter-list .button.is-checked
{
    color: #8bd2ff;
}

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition 
{
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

.portfolio-wrapper 
{
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.grid 
{
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;    
    position: relative;
    display: block;
    overflow: hidden;
}

.grid-item 
{
    float: left;
    font-size: 0;
    line-height: 0;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    border: 15px solid white;
    overflow: hidden;
}

.grid-item img 
{
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    max-width: none;
    border-radius: 2px;
    transition: transform .3s ease;
}

.grid-item a:first-of-type:hover img
{
    transform: translateY(20px);
}

.grid-sizer, .grid-item 
{    
    width: 33.333%;
    width: calc(100%/3);
}

.grid-item.p_two_third
{ 
    width: 66.666%;
    width: calc(100%/3*2);
}

.grid-item.p_one
{
    width: 100%;
}

.portfolio-text-holder
{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    font-size: 20px;
    background-color: white;    
    padding: 20px;
    transform: translateY(100%);
    transition: transform .3s ease;
}

.grid-item a:first-of-type:hover .portfolio-text-holder 
{
    transform: translateY(0);
}

.portfolio-text
{
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
}
.grid-item a:hover
{
    color: #000;
}

.portfolio-cat
{
    line-height: 25px;
    font-size: 12px;
    color: #000;
}

.portfolio-cat:before 
{
    content: "";
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: #000;
    vertical-align: 4px;
    margin-right: 5px;
}


/* ===================================
    8. Portfolio Single Post (single-portfolio.html) CSS
====================================== */

.single-portfolio h1.entry-title 
{
    font-size: 24px;
    line-height: 38px;
    padding-top: 0;
}

.single-nav 
{
    padding-bottom: 60px;
    padding-top: 10px;
}

.single .nav-previous 
{
    float: left;
}

.single .nav-previous a img
{
    transition: transform .3s ease;
    width: 35px;
    height: 20px;
}

.single .nav-previous a img:hover
{
    transform: translate(-10px);
}

.single .nav-next 
{
    float: left;
    margin-left: 30px;
}

.single .nav-next a img
{
    transition: transform .3s ease;
    width: 35px;
    height: 20px;
}

.single .nav-next a img:hover
{
    transform: translate(10px);
}

.single-portfolio .item-info-text 
{
    padding-bottom: 25px;
}

.single-portfolio .single-nav.mob
{
    display: none;
    text-align: center;
}



/* ===================================
    9. Contact Page CSS
====================================== */

.contact-form
{
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea
{
    border: 0;
    border-bottom: 2px solid;
    padding-top: 13px;
    padding-bottom: 13px;
    margin: 20px 0;
    height: 28px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    line-height: 25px;
}

.contact-form input[name="your-name"]
{
    margin-top: 0;
    padding-top: 0;
}

.contact-form textarea
{
    height: 150px;
}

.contact-form input[type=submit]
{	
    display: inline-block;
    border: 2px solid;
    text-align: center;
    padding: 20px 0px;
    cursor: pointer;
    margin-bottom: 25px;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    width: 100%;
    font-size: 15px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.contact-form input[type=submit]:hover
{
    color: #0697ae;
}

.contact-form input[type=text]::-webkit-input-placeholder, .contact-form input[type=email]::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder
{
    font-family: 'Roboto', sans-serif;
    color: #404040;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;    
}
.contact-form input[type=text]::-moz-placeholder, .contact-form input[type=email]::-moz-placeholder, .contact-form textarea::-moz-placeholder
{
    font-family: 'Roboto', sans-serif;
    color: #404040;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    opacity: 1;    
}
.contact-form input[type=text]:-ms-input-placeholder, .contact-form input[type=email]:-ms-input-placeholder, .contact-form textarea:-ms-input-placeholder
{
    font-family: 'Roboto', sans-serif;
    color: #404040;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;    
}
.contact-form input[type=text]:-moz-placeholder, .contact-form input[type=email]:-moz-placeholder, .contact-form textarea:-moz-placeholder
{
    font-family: 'Roboto', sans-serif;
    color: #404040;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    opacity: 1;    
}



/* ===================================
    10. Footer CSS
====================================== */

.footer-info
{
    margin-top: 50px;
    padding-left: 5em;
    padding-right: 0;
    color: #494949;
    font-size: 12px;
    line-height: 25px;
}

@media screen and (max-width: 640px)
{ 
	.footer-info
	{
		margin-top: 75px;
	}
}

.footer-info a
{
    color: #494949;
}

.footer-social a 
{
    font-size: 19px;
    color: #fff;
    margin-left: 84px;
}

.footer-social a:first-child 
{
    margin-left: 0;
}

.footer-text 
{
    margin-top: 10px;
}

.footer-image-social {
	display: inline;
	width: 17px;
	height: auto;
	margin: 0;
	padding: 0;
	outline: none !important;
}

/*a .indeed-icon-sprite {
	display: inline-block;
    background-image: url(images/images/indeed-icon-sprite.png);
    background-size: 20px 41px;
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    outline: none !important;
}

a .indeed-icon-sprite:hover {
    background-position: 0 -20px;
    outline: none !important;
}*/


/* ===================================
    11. Responsive CSS
====================================== */

@media screen and (max-width: 1440px) {

    #toggle
    {
        margin-top: 44px;
    }

    .site-content
    {
        margin-top: 80px;
    }

    .home .site-content
    {
        padding-bottom: 0;
    }

    .content-right
    {
        width: 65%;
    }        
}

@media screen and (max-width: 1366px) {

    .carousel-cell img
    {
        max-height: none;
    }
	
	.flickity-prev-next-button.next
    {
        right: 20px;
        left: auto;    
        bottom: -40px;
    }

    .flickity-prev-next-button.previous
    {
        right: auto;
        left: 0;     
        bottom: -40px;
    }
	
	a.M-cat
	{
		text-align: center;
	}
	
	.carousel-cell .cat-links 
	{
		text-align: center;
	}
}

@media screen and (max-width: 1024px)
{    
    .site-content
    {     
        padding-bottom: 50px;
        margin-left: 0;
        width: 100%;
    }

    .site-content
    {
        padding-bottom: 50px !important;
    }

    .menu-right-part
    {
        /*position: absolute;*/
    }

    .menu-right-part.open 
    {    
        position: fixed;
    }

    .content-left
    {
        float: none;
        text-align: center;
        width: 100%;
    }

    .content-left-holder
    {
        position: relative;
    }

    .content-right 
    {        
        width: 95%;
        float: none;
        margin: 0 auto;        
    }

    .content-right-holder
    {            
        margin: 0 auto;
        max-width: 100%;
    }

    .welcome-content
    {
        width: 100%;
        padding: 0;
    }

    .welcome-image
    {
        display: none;
    }

    .site-logo
    {
        display: inline-block;
    }

    .site-description
    {
        display: inline-block;
        vertical-align: top;
        text-align: center;
		padding: 40px 80px 0 80px; 
        max-width: 100%;
    }   

    .flickity-prev-next-button.next
    {
        right: 50px;
		left: auto;
		top: -40px;
    }

    .flickity-prev-next-button.previous
    {
        left: 50px;
		right: auto;
		top: -40px;
    }

    .progress_bar_field_holder
    {
        max-width: 100%;
    }
}

@media screen and (min-width: 1px)
{ 
	.one_fourth-m
		{
			display: none;
		}
}

@media screen and (max-width: 640px)
{    

    body.done
    {
        overflow: hidden;
    }
    body img
    {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #toggle 
    {
        margin-top: 5px;
    }

    .site-content
    {
        margin-top: 45px;
    }

    .open .site-content
    {
        margin-left: 0;
    }

    #header-main-menu
    {
        padding-left: 0;
        padding-top: 85px;
    }
	
	.content-right 
    {        
               
    }

    .carousel-cell
    {
        width: 100%;
		margin: 0 25px;
    }
	
	
	.carousel-cell img
    {
        width: 95%;
    }

    .footer-info
    {
        padding-left: 0;
    }

    .menu-right-part
    {
        margin-left: -15px;
    }

    menu-right-part.open.done 
    {
        left: -25px;
    }

    .menu-left-part
    {
        width: 100%;
        left: -120%;
        left: calc(-100% - 100px);
		margin-left: -2em;
    }

    .site-logo 
    {
        position: fixed;
		top: 35px;
		right: 10px;
    }

    .site-logo.home-logo-DT img
    {
		display: none;
    }
	
	.site-logo.home-logo-M img
    {
		float: right;
		display: block;
		max-width: 30px;
    	margin: -10px 15px 15px 100%;
		clear: right;
 	}

    .site-description
    {
        display: block;
        padding: 45px 10px 0 10px;
        text-align: center;
        margin: 0 auto;
    }

    .home .site-description
    {
        padding-bottom: 30px;
    }
	
	.flickity-prev-next-button.next
    {
		right: 20px;
        left: auto;    
    }

    .flickity-prev-next-button.previous
    {
		right: auto;
    }

    .one_half, .one_third, .one_fourth, .two_third, .three_fourth
    {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-left: 0;
        text-align: center;
    }
	
	.one_fourth
    {
        display: none;
    }
	
	.one_fourth-m
    {
        display: block;
    }

	.one_fourth-m ul
    {
        
    }
	
	.one_fourth-m ul li
    {
       float: left;
		display: inline;
		width: 46%; 
    }
	
	.one_fourth-m ul li.popular-apps-l
    {
        margin: 0 8% 2em 0;
    }
	
	.one_fourth-m ul li.popular-apps-r
    {
        margin: 0 0 2em 0;
    }
	
    .member-wrapper .text-right
    {
        text-align: center;
    }

    .services-wrapper 
    {
        float: none;
        width: 100%;
        text-align: center;
        display: block;
    }

    .services-content
    {
        float: none;
        display: block;
        width: 100%;
        text-align: center;
    }

    .services-line
    {
        margin-right: auto;    
        padding-bottom: 25px;
    }

    .category-filter-list 
    {
        line-height: 30px;
    }

    .grid-sizer, .grid-item, .grid-item.p_two_third
    {
        width: 50%;
    }

    .blog-item-holder 
    {
        padding-bottom: 65px;
    }

    .blog-item-holder .item-text
    {
        margin-top: 0;
    }    

    .blog-item-holder .item-info 
    {    
        padding: 25px 0 20px 0;
        width: 100%;
        font-size: 12px;
        line-height: 18px;
    }

    .blog-item-holder .item-info-left ul:first-of-type, .blog-item-holder .item-info-right ul:first-of-type
    {
        padding-bottom: 10px;
    }

    .blog-item-holder h2.entry-title 
    {    
        font-size: 26px;
        line-height: 32px;    
        padding-top: 0;
    }

    .header-page-content
    {
        padding-bottom: 20px;
    }

    .single-post .post-info 
    {
        text-align: center;
        float: none;
        width: 100%;
        padding-right: 0;
        font-size: 12px;
        line-height: 18px;
    }

    .post-info .post-num
    {        
        font-size: 40px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .post-info .post-num span 
    {
        letter-spacing: -15px;
    }

    .post-info .post-num .separator
    {   
        font-size: 35px;
        vertical-align: -10px;    
    }

    .post-info .post-num .total-posts
    {
        font-size: 35px;
        vertical-align: -30px;
    }

    .single-post .item-info-left 
    {
        display: inline-block;
/*        padding-right: 35px;*/
        padding-right: 0;
    }

    .single-post .item-info-right 
    {
        display: inline-block;
    }

    .single-post .item-info-text
    {
        padding-bottom: 10px;
    }
	
	.single-post .item-info-text span.banners-fa
	{
		font-size: 1.65em;
	}

    .single-nav 
    {
        padding-bottom: 35px;
        padding-top: 40px;
    }

    .single .nav-previous, .single .nav-next 
    {
        display: inline-block;
        float: none;
    }

    .single .entry-holder 
    {
        text-align: center;
        float: none;
        width: 100%;
    }

    .single .entry-content
    {
        text-align: center;
    }

    blockquote.inline-blockquote 
    {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-top: 30px;
        font-size: 19px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .single-portfolio .post-info
    {
        float: none;
        width: 100%;
        padding-right: 0;
    }

    .single-portfolio .single-nav
    {
        display: none;
    }

    .single-portfolio .single-nav.mob
    {
        display: block;
    }

    .single-portfolio .item-info 
    {
        text-align: center;
    }

    .single-portfolio .item-info ul 
    {
        display: inline-block;
        margin-right: 40px;
    }

    .single-portfolio .item-info ul:last-of-type
    {
        margin-right: 0;
    }

    .footer-social a 
    {    
        margin-left: 3em;
    }

}

@media screen and (max-width: 630px)
{    
    .grid-sizer, .grid-item, .grid-item.p_two_third
    {
        width: 100%;
    }
}

/*Blurry text*/

* { margin: 0; padding: 0; }

.hovertown span {
      -webkit-transition: all 0.9s ease;
      -moz-transition:    all 0.9s ease;
      -o-transition:      all 0.9s ease;
      transition:         all 0.9s ease;
    }
    .hovertown span:hover {
      text-shadow: 0 0 72px black; 
      color: transparent;     
      -webkit-transition: all 0.2s ease;
      -moz-transition:    all 0.2s ease;
      -o-transition:      all 0.2s ease;
      transition:         all 0.2s ease; 
    }
    
    @-webkit-keyframes blackblur {
      from { text-shadow: 0 0 72px black; color: transparent; }
      to   { text-shadow: 0;              color: black;       }
    }  
    
	.smokemonster span:nth-of-type(1)  { -webkit-animation: blackblur 2s       1 alternate; }
	.smokemonster span:nth-of-type(2)  { -webkit-animation: blackblur 2s 0.1s  1 alternate; }
	.smokemonster span:nth-of-type(3)  { -webkit-animation: blackblur 2s 0.15s 1 alternate; }
	.smokemonster span:nth-of-type(4)  { -webkit-animation: blackblur 2s 0.2s  1 alternate; }
	.smokemonster span:nth-of-type(5)  { -webkit-animation: blackblur 2s 0.25s 1 alternate; }
	.smokemonster span:nth-of-type(6)  { -webkit-animation: blackblur 2s 0.3s  1 alternate; }
	.smokemonster span:nth-of-type(7)  { -webkit-animation: blackblur 2s 0.35s 1 alternate; }
	.smokemonster span:nth-of-type(8)  { -webkit-animation: blackblur 2s 0.4s  1 alternate; }
	.smokemonster span:nth-of-type(9)  { -webkit-animation: blackblur 2s 0.45s 1 alternate; }
	.smokemonster span:nth-of-type(10) { -webkit-animation: blackblur 2s 0.5s  1 alternate; }
	.smokemonster span:nth-of-type(11) { -webkit-animation: blackblur 2s 0.55s 1 alternate; }
	.smokemonster span:nth-of-type(12) { -webkit-animation: blackblur 2s 0.6s  1 alternate; }
	  	
  	@-webkit-keyframes fun-1 {
      from { text-shadow: 0 0 72px red; color: transparent; }
      to   { text-shadow: 0;            color: black;       }
    }
    @-webkit-keyframes fun-2 {
      from { text-shadow: 0 0 22px blue; color: transparent; }
      to   { text-shadow: 0;            color: black;        }
    }
    @-webkit-keyframes fun-3 {
      from { text-shadow: 0 0 152px green; color: transparent; }
      to   { text-shadow: 0;            color: black;          }
    }
    @-webkit-keyframes fun-4 {
      from { text-shadow: 0 0 102px cyan; color: transparent; }
      to   { text-shadow: 0;            color: black;         }
    }
    @-webkit-keyframes fun-5 {
      from { text-shadow: 0 0 222px magenta; color: transparent; }
      to   { text-shadow: 0;            color: black;            }
    }
    @-webkit-keyframes fun-6 {
      from { text-shadow: 0 0 92px yellow; color: transparent; }
      to   { text-shadow: 0;            color: black;          }
    }
    .sparklemaster { color: white; }
    .sparklemaster span:nth-of-type(1)  { -webkit-animation: fun-1 2s 0.2s  1 alternate; }
    .sparklemaster span:nth-of-type(2)  { -webkit-animation: fun-2 2s 3.9s  1 alternate; }
    .sparklemaster span:nth-of-type(3)  { -webkit-animation: fun-3 2s 2.65s 1 alternate; }
    .sparklemaster span:nth-of-type(4)  { -webkit-animation: fun-4 2s 2.2s  1 alternate; }
    .sparklemaster span:nth-of-type(5)  { -webkit-animation: fun-5 2s 1.25s 1 alternate; }
    .sparklemaster span:nth-of-type(6)  { -webkit-animation: fun-6 2s 2.3s  1 alternate; }
    .sparklemaster span:nth-of-type(7)  { -webkit-animation: fun-1 2s 3.35s 1 alternate; }
    .sparklemaster span:nth-of-type(8)  { -webkit-animation: fun-2 2s 2.4s  1 alternate; }
    .sparklemaster span:nth-of-type(9)  { -webkit-animation: fun-3 2s 1.45s 1 alternate; }
    .sparklemaster span:nth-of-type(10) { -webkit-animation: fun-4 2s 3.5s  1 alternate; }
    .sparklemaster span:nth-of-type(11) { -webkit-animation: fun-5 2s 1.55s 1 alternate; }
    .sparklemaster span:nth-of-type(12) { -webkit-animation: fun-6 2s 2.6s  1 alternate; }
  	
  	.textshadow .foreverblur {
  	   text-shadow: 0 0 32px white;
  	   color: transparent;
  	}
  	
  	#jquerybuddy span {
  	   text-shadow: 0 0 4px rgba(0,100,0,1);
  	   color: transparent;
  	}