/*   
Theme Name: Talk
Theme URI: @my heart
Author: Maxim Aginsky
Author URI: http://www.webtalkto.com/
Description: "Talk" is a theme for my site:) 
Version: 8.1 (May 2015)
*/

/* Reset styles */
	
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	font: inherit;
	}
	
/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
	}
body {
	line-height: 1;
	}
ol, ul {
	list-style: square;
	}
blockquote, q {
    quotes: none;
	}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
	}
table {
	border-collapse: collapse;
	border-spacing: 0;
	}

/* end */

* {
/* This will help us size things easily with percentages even though we'll be using borders */
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
* {
    outline: none;
}
::selection {/* Safari */
    background: rgb(113, 190, 100);
    color: white;
	text-shadow: none;
	}
::-moz-selection {/* Firefox */
    background: rgb(113, 190, 100);
    color: white;
	text-shadow: none;
}

/* Starts main css */

body {
	font-family: "proxima-nova",sans-serif;
	font-size: 17px;
	line-height: 22px;
	font-weight: normal;
	color: black;
	background-color: black;
	-webkit-animation:fadein 0.7s; 
    animation:fadein 0.7s;
}

/* Preloader */

#preloader, 
#preloader-all {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background: black;
	z-index:1000; 
}
/**/
@-webkit-keyframes bounce
{
  50%  {transform: translatey(-20px);}
  100% {transform: translatey( 20px);}
}
@-moz-keyframes bounce
{
  50%  {transform: translatey(-20px);}
  100% {transform: translatey( 20px);}
}
@-o-keyframes bounce
{
  50%  {transform: translatey(-20px);}
  100% {transform: translatey( 20px);}
}
@keyframes bounce
{
  50%  {transform: translatey(-20px);}
  100% {transform: translatey( 20px);}
}
.bounce {
	position: relative;
	margin-top: 30px;
	margin-left: -15px;
	left: 50%;
}
.bounce div {
	border-radius: 100%;
	height: 3px;
	width: 10px;
	background-color: hsl(0, 0%, 32%);
	-webkit-animation: bounce 1s ease-in-out infinite;
	-moz-animation: bounce 1s ease-in-out infinite;    
	-o-animation: bounce 1s ease-in-out infinite;     
	animation: bounce 1s ease-in-out infinite;
	position: absolute;
	top: 0;
	transform: translatey(20px);
}
.bounce div:first-of-type {
	left: -20px;
	-webkit-animation-delay: 0.20s;
	-moz-animation-delay: 0.20s;
	-o-animation-delay: 0.20s; 
	animation-delay: 0.20s;
}
.bounce div:nth-of-type(2) {
	-webkit-animation-delay: 0.10s;
	-moz-animation-delay: 0.10s;
	-o-animation-delay: 0.10s; 
	animation-delay: 0.10s;
}
.bounce div:last-of-type {
    left: 20px;
}
/**/

#status-text {
	color: rgb(179, 179, 179);
	font-weight: 300;
	width: 100%;
	font-size: 20px;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: 420px;
	margin: -150px 0 0 -210px;
}
#status-text img {
	display: block;
	width: 300px;
	margin: 0 auto 50px;
	border-radius: 50%;
	border: 4px solid #333;
	padding: 4px;
}

@-webkit-keyframes fadein { 
    from {opacity:0} to {opacity:1} 
}
@keyframes fadein { 
    from {opacity:0} to {opacity:1} 
}

header {
	position: relative;
	margin: 0 auto;
	width: 90%;
	max-width: 1350px;
	padding: 120px 0 100px;
}
#small-logo {
	display: none;
}
.webtalkto-logo {
	width: 43%;
	position: relative;
	float: left;
}
header .webtalkto-logo img {
    width: 570px;
	height: auto;
	webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
	opacity: 1;
   }
header.smaller .webtalkto-logo img {
	width: 370px;
	height: auto;
	opacity: 0.3;
}
.header-right {
	position: relative;
	width: 57%;
	float: right;
}

/* Navigation Menu */

nav {
	position: absolute;
	right: 0;
}
nav span {
	font-style: normal;
	margin-right: 10px;
	opacity: 0.4;
	font-size: 13px;
}
nav ul {
	list-style: none;
	margin: 0;
}
nav ul li {
	display: inline-block;
}
nav ul li a {
	font-size: 11px;
	font-style: italic;
	font-weight: 900;
	line-height: 18px;
	color: white;
	margin: 0 0 0 10px;
	padding: 5px 2px;
	border-radius: 2px;
	display: block;
	width: 130px;
	text-align: center;
}
nav ul li a:hover {
	background: rgb(255, 255, 255);
	padding: 5px 10px 5px 15px;
	color: #7C7C7C;
}
nav ul li.current_page_item a, 
nav ul li.current_page_item a:hover {
	color: #7C7C7C;
	cursor: default;
	background: rgba(103, 103, 103, 0.2);
	box-shadow: none;
	padding: 5px 2px;
}

/* end */

.search-block {
	display: block;
	width: 100%;
	margin-top: 110px;
	text-align: right;
}
#search {
	background: none;
	border: none;
	border-bottom: 2px dotted rgb(255, 255, 255);
	max-width: 250px;
	color: #fff;
	top: -25px;
	border-radius: 0;
	position: relative;
	box-shadow: none;
	font-size: inherit;	
}
#search:focus{
    border-bottom: 1px solid rgb(148, 148, 148);
}
#search:focus:hover{
    border-bottom: 1px dotted rgb(148, 148, 148);
}

/* scrool top */

#message a {
	display: none;
	z-index: 10000;
	opacity: .8;
	position: fixed;
	top: 20px;
	right: 50px;
	width: 30px;
	height: 77px;
	border-radius: 2px;
	border-bottom: 3px solid white;
	border-left: 14px solid #000;
	border-right: 14px solid #000;
	border-top: 40px solid white;
	background-color: white;
}
#message a:after {
	content: "";
	position: absolute;
	width: 3px;
	height: 3px;
	background: rgb(0, 0, 0);
	border: 6px solid rgb(255, 255, 255);
	top: -50px;
	box-shadow: 0 0 1px #000;
	right: -3px;
	border-radius: 50%;
	border-bottom: 5px solid rgb(255, 242, 0);
	border-left: 5px solid rgb(255, 242, 0);
	border-right: 5px solid #000;
	border-top: 5px solid black;
	background-color: rgba(255, 255, 255, 0);
}
#message a:before {
	content: "to top";
	position: absolute;
	width: 40px;
	color: black;
	height: 16px;
	line-height: 13px;
	bottom: -25px;
	right: -20px;
	font-size: 11px;
	font-weight: 500;
	-webkit-transition: -webkit-transform 0.4s ease-out;
	-moz-transition: -moz-transform 0.4s ease-out;
	transition: transform 0.4s ease-out;
	border-top: 1px solid;
	border-bottom: 1px solid;
}
#message a:hover:before {
	color: rgb(255, 242, 0);
	webkit-transform: rotateZ(340deg);
	-moz-transform: rotateZ(340deg);
	transform: rotateZ(340deg);
}
#message a:hover {
	opacity: 1;
	-ms-transform: rotate(15deg);
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
}

/*------content-menu-----*/

.content-menu {
	position: absolute;
	display: none;
	z-index: 1000;
	top: -400px;
	width: 100%;
	background: white;
	text-align: center;
	font-weight: 900;
	padding: 20px;
	border-bottom: 1px solid #000;
}
.content-menu nav {
    position: relative;
}
.content-menu nav ul li {
	display: inline-block;
	float: left;
	width: 50%;
}
.content-menu nav ul li a {
	text-align: center;
	display: block;
	color: #FFFFFF;
	background: #000;
	width: 100%;
	float: left;
	border: 4px solid white;
	font-size: 11px;
	font-style: italic;
	font-weight: 900;
	line-height: 18px;
	padding: 30px 2px;
	border-radius: 7px;
    margin: 0;
}
.content-menu nav ul li a:hover {
    background: rgb(250, 250, 250);
    color: #7C7C7C;
}
.content-menu nav ul li.current_page_item a, 
.content-menu nav ul li.current_page_item a:hover {
	color: #7C7C7C;
	cursor: default;
	background: rgba(103, 103, 103, 0.2);
	box-shadow: none;
	padding: 30px 2px;
}
.open {
	z-index: 10;
	overflow: hidden;
	cursor: pointer;
	display: none;
	width: 210px;
	height: 43px;
	position: absolute;
	right: 0;
    top: 120px;
}
.hide {
	z-index: 1;
	cursor: pointer;
	display: none;
	width: 50px;
	height: 35px;
	position: absolute;
	right: 50%;
	margin-right: -25px;
	bottom: -25px;
	background: rgb(255, 255, 255);
	border-radius: 2px;
	padding: 10px;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	border-bottom: 2px solid #000;
}
.menu-line1,
.menu-line2,
.menu-line3 {
	height: 7px;
	border-radius: 1px;
	background: #737373;
}
.menu-line1,
.menu-line2 {
	margin-bottom: 2px;
}
.menu-open-icon:hover .menu-line1,
.menu-open-icon:hover .menu-line2,
.menu-open-icon:hover .menu-line3 {
	background: white;
}
.two-menu {
	position: absolute;
	font-size: 53px;
	color: rgb(0, 0, 0);
	font-weight: 900;
	top: -0px;
	font-style: italic;
}
.hide .menu-line1 {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-bottom: -7px;
	background: #737373;
}
.hide .menu-line2 {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background: #A1A1A1;
	margin-bottom: 0;
}
.hide:hover .menu-line1,
.hide:hover .menu-line2 {
	background: black;
}
.content-menu .search-block {
   margin-top: 180px;
}
.content-menu #search {
    max-width: 100%;
	top: 0;
	background: #000;
	border: 4px solid white;
	border-radius: 7px;
	height: 50px;
	padding: 10px;
	border-bottom: none;
	font-family: inherit;
}
.content-menu #search:focus:hover {
    border-bottom: none;
}

/**/

@-webkit-keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
@keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
@-webkit-keyframes spin-back {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(-360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(-360deg);  /* IE 9 */
		transform: rotate(-360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
@keyframes spin-back {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(-360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(-360deg);  /* IE 9 */
		transform: rotate(-360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}

/**/

.wrap {
	margin: 0 auto;
	width: 90%;
	max-width: 1350px;
	clear: left;
	padding-top: 12px;
}
.content {
	position: relative;
	width: 100%;
}
.entry-title {
	font-size: 22px;
	margin: 0;
	margin-bottom: 4px;
	color: white;
	padding-right: 10px;
}
.page-description, 
.meta, 
.web-talk-description {
	margin-bottom: 10px;
	color: rgb(179, 179, 179);
    font-weight: 300;
}
.home .meta, 
.blog .meta {
	position: relative;
	font-size: 11px;
	font-weight: 700;
	display: inline-block;
	margin: 0 0 30px 0;
	color: black;
}
.home .meta {
	padding-left: 20px;
}
.home .meta:after {
  content: "";
  position: absolute;
  width: 90px;
  height: 10px;
  background: rgba(148, 148, 148, 0.1);
  border-radius: 1px;
  left: 0;
  top: 5px;
  webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}
.single .meta {
	font-size: 12px;
	font-weight: 700;
	}
.montreal-studio {
	font-style: normal;
	font-size: 54px;
	font-weight: 900;
	color: #FFFFFF;
	line-height: 50px;
	display: block;
	height: initial;
	margin: 40px 0px 40px;
	border-right: none;
	
	-webkit-transition: all 0.4s linear;
	-moz-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
}
.montreal-studio span {
	display: block;
	color: black;
	border-radius: 2px;
	background: white;
	font-size: 95px;
}
.one {
	height: 2px!important;
	opacity: 0.01;
	margin: 0;
	z-index: -1;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0);
}
.page-description span {
	width: 15px;
	height: 15px;
	display: block;
	background: #fff;
	position: absolute;
	border-radius: 2px;
	margin-top: 20px;
	text-align: left;
}
.page-description span:before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background: black;
	-webkit-animation: spin-back 90s linear infinite;
	animation: spin-back 90s linear infinite;
	border-radius: 2px;
}
.page-description span:after {
	content: "";
	position: absolute;
	width: 3px;
	height: 3px;
	background: rgb(0, 0, 0);
	-webkit-animation: spin-back 45s linear infinite;
	animation: spin-back 45s linear infinite;
	border-radius: 2px;
	border: 6px solid white;
}
.page-description bdi {
    letter-spacing: 5px;
}
.single-post .post,
.page .post {
	padding: 80px;
}
.page-template-portfolio-php .post,
.post {
	position: relative;
	background: white;
	padding: 10px;
	margin-bottom: 30px;
	border-radius: 2px;
}
.page-template-default .post,
.single-post .post {
	max-width: 960px;
}
.single-post .post {
	float: left;
	width: 71%;
}
.right-content {
	float: right;
	width: 29%;
	padding: 0 20px;
}
.right-content h2 {
	margin: 0;
	font-weight: 900;
	font-style: italic;
	font-size: 18px;
	color: rgb(90, 90, 90);
	margin-bottom: 20px;
	border-bottom: 1px dotted rgb(90, 90, 90);
}
.content .right-content img {
	background-color: white;
	width: 100%;
	padding: 20px;
	border-radius: 2px;
	margin: 0;
}
 .submit-website {
	background-color: #488bca;
	color: white;
	text-align: center;
	padding: 20px;
	border-radius: 2px;
	font-weight: 700; 
	display: block;
	cursor: pointer;
}
.single-post .entry,
.page .entry {
	max-width: 800px; 
} 
.page-template-portfolio-php .entry,
.page-template-contact-info-php .entry,
.entry {
	max-width: 100%; 
}
.ad-between-first-and-second-post {
	padding: 20px;
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 0;
}
.ad-between-first-and-second-post:after {
	content: "";
	z-index: -1;
	position: absolute;
	height: 100%;
	bottom: 0;
	left: 0;
	background-color: white;
	opacity: 0.5;
	width: 0px;
	border-radius: 2px;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.display-in-user-view-f:after {
	opacity: 1;
	width: 100%;
}
.display-in-user-view-f {
	opacity: 1!important;
}
.ad-between-first-and-second-post h2 {
	margin: 0;
	font-weight: 900;
	font-style: italic;
	font-size: 18px;
    color: rgb(90, 90, 90);
	margin-bottom: 20px;
    border-bottom: 1px dotted rgb(90, 90, 90);
}
.ad-between-first-and-second-post img {
	position: relative;
    width: 650px;
}
 .ad-image {
	opacity: 0; 
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
//----v1---------------.ad-between-first-and-second-post .arrow {
	position: absolute;
	top: 40px;
	right: -140px;
	border-radius: 4px;
	border-bottom: 40px solid rgba(39, 237, 57, 0);
	border-left: 100px solid #000;
	border-right: 14px solid rgba(0, 0, 0, 0);
	border-top: 40px solid rgba(200, 90, 90, 0);
	background-color: rgba(250, 0, 0, 0);
	-webkit-animation: arrow 3s linear infinite;
	animation: arrow 3s linear infinite;
}
.arrow {
	position: absolute;
	top: 40px;
	right: -140px;
	text-align: left;
	-webkit-animation: arrow 3s linear infinite;
    animation: arrow 3s linear infinite;
}
.arrow:before,
.arrow:after {
	content: '';
	position: absolute;
	background-color: inherit;
}
.arrow,
.arrow:before,
.arrow:after {
	width: 60px;
	height: 60px;
	border-top-right-radius: 10%;
}
.arrow {
	transform: rotate(30deg) skewX(-30deg) scale(1,.866);
}
.arrow:before {
	transform: rotate(-135deg) skewX(-45deg) scale(1.414,.707) translate(0,-50%);
}
.arrow:after {
	transform: rotate(135deg) skewY(-45deg) scale(.707,1.414) translate(50%);
}
/* Chrome, Safari, Opera */
@-webkit-keyframes arrow {
    0%   {background-color: #d32128;}
    50%  {background-color: #f8d617;right: -160px;}
    100% {background-color: #d32128;}
}

/* Standard syntax */
//@keyframes arrow {
    0%   {background-color: rgba(0, 0, 0, 0.1);}
    50%  {background-color: rgba(0, 0, 0, 0.8);}
    100% {background-color: rgba(0, 0, 0, 0.1);}
}
//-----v1-------------.arrow:hover {
	border-left-color: #DD4D14;
	-webkit-animation: 0;
	animation: 0;
}
.arrow:hover {
	background-color: #488bca;
	-webkit-animation: 0;
	animation: 0;
}

/*-------------------------- portfolio page */

.postexpand, 
.postexpand1, 
.postexpand2, 
.postexpand3 {
    width: 600px;
}
#icon, 
#icon1, 
#icon2, 
#icon3 {
	position: absolute;
	right: 0px;
	top: 0;
	cursor: pointer;
	border-top: 20px solid black;
	border-bottom: 20px solid rgba(202, 29, 29, 0);
	border-left: 20px solid rgba(40, 29, 202, 0);
	border-right: 20px solid black;
}
#icon:before, 
#icon1:before, 
#icon2:before, 
#icon3:before {
	content: "";
	position: absolute;
	background: rgba(139, 139, 139, 0);
	-webkit-animation: spin-back 45s linear infinite;
	animation: spin-back 45s linear infinite;
	right: -20px;
	top: -20px;
	cursor: pointer;
	border-top: 20px solid rgb(0, 0, 0);
	border-bottom: 20px solid rgba(255, 255, 255, 1);
	border-left: 20px solid rgba(255, 255, 255, 1);
	border-right: 20px solid rgb(0, 0, 0);
}
#icon .outer, 
#icon1 .outer, 
#icon2 .outer, 
#icon3 .outer {
	font-weight: normal;
	font-size: 12px;
	width: 70px;
	text-align: center;
	margin-left: -55px;
	margin-top: 30px;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.19);
}

.page-template-portfolio-php .entry a {
    border-bottom: 1px dotted #000000;
}
.details-hover-window {
	position: relative;
}
.outer-title {
	font-size: 22px;
	font-style: normal;
	color: white;
	line-height: 22px;
	font-weight: 700;
	display: block;
	margin: 10px 0;
}
.outer:after {
    content: "";
	position: absolute;
	top: -4px;
	left: 47%;
	width: 8px;
	height: 8px;
	background: white;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.content .details-hover-window img {
	margin-top: 15px;
    margin-bottom: 0;
}
a.details-hover-window span {
	display: none;
	padding: 20px 4px 0px;
	border-radius: 2px;
	left: 50%;
	margin-left: -120px;
	margin-top: 10px;
	position: absolute;
	z-index: 1000;
	color: rgb(255, 255, 255);
	font-size: 13px;
	background: black;
	line-height: 18px;
	width: 240px;
	-webkit-animation: fadein 0.7s;
	animation: fadein 0.7s;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.49);
}
a.details-hover-window:hover span {
    display: block;
}
.misbehave {
	font-size: 42px;
	color: #FFFFFF;
	text-align: center;
	line-height: 100px;
	border-bottom: 2px dotted;
	font-weight: 300;
}

/* contact page */

.page-template-contact-info-php .post {
	background: transparent;
    padding: 0!important;
}
.post-title {
	margin-top: 20px;
    margin-bottom: 10px;
}
.contact-success-message {
	background-color: white;
    padding: 10px;
}
.contact-success-message h3 {
	margin-top: 20px;
 }
.contact-success-message, 
.form-error {
	border-top: 100px solid black;
}
.entry .form-error h3 {
	color: red;
}
.blog .post-title,
.search-results .post-title {
	font-size: 70px;
	font-weight: 900;
	line-height: 60px;
	letter-spacing: -1px;
} 
.page-template-portfolio-php .post-title {
	font-size: 154px;
	font-weight: 900;
	line-height: 120px;
	letter-spacing: -1px;
} 
.page-template-portfolio-php .post-title span {
	padding: 2px;
	display: block;
	padding: 10px 0;
	font-weight: 300;
	font-size: 38px;
	line-height: 40px; 
}

/* for all */

.content img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.content-right img {
	max-width: 100%;
	height: auto;
}
.entry a[href$=jpg], 
.entry a[href$=jpeg], 
.entry a[href$=jpe], 
.entry a[href$=png], 
.entry a[href$=gif],
.entry a:hover[href$=jpg], 
.entry a:hover[href$=jpeg], 
.entry a:hover[href$=jpe], 
.entry a:hover[href$=png], 
.entry a:hover[href$=gif] {
	border: none;
}
iframe, 
object {
	max-width: 100%;
	width: 100%;
}
h1,
h2,
h3,
h4 {
	line-height: 1;
	color: #1F1E1E;
	margin: 50px 0 17px 0;
}
.entry h1, .entry h2, .entry h3, .entry h4 {
    font-weight: 900;
    color: black;
}
h1 {
	font-size: 46px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 22px;
}
h1 a {
	color: #BDBDBD;
	-webkit-transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	transition: color 0.2s linear;
}
p {
	margin: 0 0 17px 0;
}
strong {
	font-weight: 700;
}
.entry a {
	color: #4725CF;
	text-decoration: none;
	border-bottom: 1px solid #4725CF;
}
.entry a:hover {
	color: #747474;
	border-bottom: none;
	background: #EFEFEF;
	border-radius: 2px;
}
a {
	color: #4725CF;
	text-decoration: none;
	-webkit-transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	transition: color 0.2s linear;
}
a:hover {
	color: black;
}
blockquote {
	padding: 10px 0px 10px 20px;
	margin: 30px 0;
	border-left: 2px dotted #000000;
}
blockquote:before {
	content: '\201C';
	position: relative;
	font-size: 52px;
	line-height: 0;
	color: black;
	left: -18px;
}
blockquote:after {
	content: '\201E';
	position: relative;
	font-size: 52px;
	line-height: 0;
	color: black;
	left: -18px;
	bottom: -18px;
}
ul, 
ol {
	margin: 0 0 20px 40px;
	list-style: disc;
}
ol {
	list-style-type: decimal-leading-zero;
}
hr {
	border: 0;
	height: 2px;
	background: #000000;
	background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #000000), color-stop(50%, #FFFFFF), color-stop(100%, #000000));
	background: -webkit-linear-gradient(left, #000000,#FFFFFF,#000000);
	background: -moz-linear-gradient(left, #000000,#FFFFFF,#000000);
	background: -o-linear-gradient(left, #000000,#FFFFFF,#000000);
	background: linear-gradient(left, #000000,#FFFFFF,#000000);
	margin: 75px 0 53px 0;
}
.highlight {
	padding: 10px 0px 10px 10px;
	margin: 30px 0;
	text-align: left;
	border-left: 2px solid #000000;
}
sup {
    vertical-align: baseline;
	position: relative;
	top: -10px;
	font-size: 12px;
}
pre {
	font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
	padding: 20px 0px 20px 10px;
	overflow: auto;
	margin: 0 0 60px 0;
	border: 1px solid #ECECEC;
	background: rgba(255, 255, 199, 0.72);
	border-radius: 2px;
	font-size: 13px;
	line-height: 17px;
}
.more-link, 
.comment-reply-link {
	font-weight: normal;
	font-size: 12px;
	display: table;
	margin-top: 40px;
	font-weight: 700;
	width: 180px;
	text-align: left;
	padding: 10px 10px;
	margin-left: -97px;
	margin-left: -27px;
	background: #FFFFFF;
	border-radius: 2px;
	font-style: normal;
}
a.more-link, 
a.comment-reply-link {
	color: #BDBDBD;
	border-bottom: none;
}
a:hover.more-link, 
a:hover.comment-reply-link {
	background: #DCDCE2;
	padding: 10px 17px;
	color: white;
	box-shadow: -4px 4px 0 #FFFFFF;
}
a.demo_button {
	display: block;
	cursor: pointer;
	margin: 50px 0 60px;
	text-align: center;
	padding: 10px 5px;
	border: none;
	border-radius: 2px;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 30px;
	color: #4725CF;
	border-top: 2px dotted #4725CF;
	border-bottom: 2px dotted #4725CF;
}
a:hover.demo_button {
	padding: 10px 5px;
	letter-spacing: normal;
	color: #747474;
	background: #EFEFEF;
	border-top: 2px dotted #EFEFEF;
	border-bottom: 2px dotted #EFEFEF;
}
.eye {
	font-size: 30px;
}
.blog .entry img {
	max-width: 170px;
    border-radius: 2px;
}
.paragraph-sign {
	color: rgb(103, 103, 103);
}

/*-----------------.single-format-standard .entry>p:nth-child(1) {
    font-size: 125%;
	line-height: 1.2;
}*/

.single-format-standard .entry p:first-child:first-letter {  
    font-size: 100px;
	line-height: 0;
	font-weight: 900;
}
.entry h1 .icon-cogs {
	font-size: 32px;
}
.blog h1 a:hover {
	color: black;
}
nav ul li a,
#search,
a.more-link, 
a.comment-reply-link,
a.more-link-right,
a.demo_button,
.pag_nav_left, 
.pag_nav_right,
textarea,
input[type='email'], 
input[type=text],
input[type="submit"],
.more-link-portfolio,
.menu-line1,
.menu-line2, 
.menu-line3,
#message a {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

/* */

.pag_nav {
	font-style: italic;
    font-weight: 700;
	overflow: hidden;
	margin: 40px 0 50px;
	padding: 4px;
}
.pag_nav a {
	color: white;
}
.pag_nav_left, 
.pag_nav_right {
	width: 120px;
}
.pag_nav_right {
	float: right;
	text-align: center;
	padding-right: 0;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border: 12px solid transparent;
	border-top-color: rgba(255, 255, 255, 1);
	border-bottom-color: rgba(255, 255, 255, 1);
}
.pag_nav_right:hover {
	padding-right: 20px;
	color: #CDCDCD;
	border-top-color: #CDCDCD;
	border-bottom-color: #CDCDCD;
	ms-transform: rotate(30deg);
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
}
.pag_nav_left {
	float: left;
	text-align: center;
	padding-left: 0;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border: 12px solid transparent;
	border-top-color: rgba(255, 255, 255, 1);
	border-bottom-color: rgba(255, 255, 255, 1);
}
.pag_nav_left:hover {
    padding-left: 20px;
	color: #CDCDCD;
	border-top-color: #CDCDCD;
	border-bottom-color: #CDCDCD;
	ms-transform: rotate(-30deg);
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
}

/* Picture gallery */

.gallery-img-title {
	padding: 2px;
	font-size: 10px;
	line-height: 11px;
}
#picher-gallery .block {
	padding: 1px;
	padding-bottom: 10px;
	margin-bottom: 25px;
	background: white;
	border-radius: 2px;
	max-width: 100px;
	float: left;
	margin-left: 25px;
}
#picher-gallery .block img {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	margin-bottom: 0;
}

/* Comments */

.clear {
	clear: both;
}
.web-talk{
    color: white;
	font-size: 160px;
    text-transform: uppercase;
    font-weight: 900;
}
#comments {
	margin: 100px 0 5px;
}
ol.commentlist {
	list-style: none;
	margin: 0;
}
ol.commentlist li.comment {
	padding: 10px 10px 20px;
	margin-bottom: 15px;
	border-radius: 2px;
}
.comment-author {
	background: #FFFFFF;
	padding: 3px;
	display: inline-block;
	text-align: center;
	width: 120px;
	border-radius: 2px;
	margin: 0 20px 10px -27px;
	float: left;
	border: 1px solid #F4F4F4;
}
.comment-author img {
	margin-bottom: 5px;
}
.reply {
	clear: both;
}
ol.commentlist li.comment div.vcard cite.fn {
	display: block;
	font-size: 10px;
}
.says {
	display: none;
}
ol.commentlist li.comment div.comment-meta {
	font-size: 10px;
	margin-bottom: 10px;
}
ol.commentlist li.comment ul.children {
	list-style: none;
	margin: 10px 0 0;
}
ol.commentlist li.comment-author-admin,
ol.commentlist li.comment ul.children li.comment-author-admin {
	
}
ol.commentlist li.comment ul.children li.depth-2 {
	margin: 0 -20px 10px 0;
	background: #F7F7F7;
	box-shadow: none;
	overflow: hidden;
}
ol.commentlist li.comment ul.children li.depth-2 .comment-author {
	margin-left: 0px;
}
ol.commentlist li.even {
	background: white;
}
ol.commentlist li.odd {
	background: white;
}
#respond,
#respond h3 {
	color: white;
}
#respond {
  color: rgb(103, 103, 103);
  background: #000;
  padding: 5px;
}
.depth-2 .reply {
	display:none!important;
}
#commentform {
	margin-top: 70px;
}
.leave-your-talk {
    margin-top: 100px;
	font-size: 70px;
	font-weight: 300;
}

/* end */

textarea {
	height: 150px;
	color: white;
	margin-bottom: 13px;
	width: 100%;
	padding: 3px 7px;
	font: inherit;
	border: transparent;
	background: rgba(103, 103, 103, 0);
	border-radius: 2px;
	border: 1px solid #6B6B6B;
}
textarea:focus{
	background: rgba(18, 18, 18, 0.43);
    border: 1px solid rgba(107, 107, 107, 0.19);
}
input[type='email'], 
input[type=text] {
	font-family: Georgia, Times, 'Times New Roman', serif;
	margin-bottom: 23px;
	background: none;
	border: none;
	border-bottom: 1px solid #6B6B6B;
	width: 100%!important;
	color: rgb(255, 255, 255);
	top: -25px;
	border-radius: 0;
	position: relative;
	box-shadow: none;
	max-width: none;
	font-size: 50px;
}
input[name='url'] {
	border: none;
	background-color: rgba(50, 50, 50, 1);
	border-radius: 2px;
	padding: 3px;
	font-size: 20px;
	font-family: inherit;
	border-bottom: 1px solid rgba(50, 50, 50, 1);
}
input[type='email']:focus, 
input[type=text]:focus{
    background: rgba(18, 18, 18, 0.43);
    border-bottom: 1px solid rgba(107, 107, 107, 0.19);
}
input[type="submit"] {
	border: transparent;
	cursor: pointer;
	margin-bottom: 40px;
	margin-top: 20px;
	width: 220px;
	margin-left: 0;
	text-align: center;
	padding: 14px 27px;
	color: #000000;
	border-radius: 2px;
	background: white;
	font-weight: 900;
}
input[type="submit"]:hover {
	border-bottom: none;
	color: #000000;
	padding-left: 60px;
	background: rgba(255, 255, 255, 0.85);
}
.contact-form>div:nth-child(1),
#commentform .commentform-name {
    width: 49%;
    float: left;
}
.contact-form>div:nth-child(2),
#commentform .commentform-mail {
    width: 49%;
    float: right;
}
.contact-form>div:nth-child(3),
#commentform .commentform-url {
    clear: both;
}
.contact-form label {
    margin-bottom: 20px!important;
	color: white;
	text-transform: uppercase;
	font-family: inherit;
	font-weight: 900!important;
}
.contact-form label.textarea {
	margin-bottom: -30px!important;
    margin-top: 30px;
}
.contact-form input[type='text'], 
.contact-form input[type='email'] {
    max-width: 100%!important;
}
.contact-form textarea {
	width: 100%!important;
	height: 100px!important;
	margin-top: 40px!important;
}
.contact-form label span {
	color: #777777!important;
	font-size: 10px;
	font-style: italic;
	font-weight: 700!important;
}

::-webkit-input-placeholder {
    color: white;
    font-size: 11px;
    font-family: "proxima-nova",sans-serif;
    font-weight: 700;
}
:-moz-placeholder { /* Firefox 18- */
    color: white; 
    font-size: 11px; 
    font-family: "proxima-nova",sans-serif;
    font-weight: 700;
}
::-moz-placeholder {  /* Firefox 19+ */
    color: white; 
    font-size: 11px;
    font-family: "proxima-nova",sans-serif;
    font-weight: 700; 
}
:-ms-input-placeholder {  
    color: white;  
    font-size: 11px;
    font-family: "proxima-nova",sans-serif;
    font-weight: 700;
}
.search-block ::-webkit-input-placeholder {
	font-size: 11px;
	font-style: italic;
	font-weight: 900;
}
.search-block :-moz-placeholder {
	font-size: 11px;
	font-style: italic;
	font-weight: 900;
}
.search-block ::-moz-placeholder {
	font-size: 11px;
	font-style: italic;
	font-weight: 900;
}
.search-block :-ms-input-placeholder {
	font-size: 11px;
	font-style: italic;
	font-weight: 900;
}

[placeholder]:focus::-webkit-input-placeholder {
    color: rgb(55, 55, 55);
} 
[placeholder]:focus:-moz-placeholder { /* Firefox 18- */
    color: rgb(55, 55, 55);
}
[placeholder]:focus::-moz-placeholder {  /* Firefox 19+ */
    color: rgb(55, 55, 55);
}
[placeholder]:focus:-ms-input-placeholder {  
    color: rgb(55, 55, 55);
}

/* Footer */

.error404 #footer {
	display: none;
}
#footer {
	clear: left;
	padding-top: 70px;
	color: #666666;
}
#footer h1 {
	text-transform: uppercase;
	font-size: 30px;
	color: white;
	margin-top: 15px;
	font-weight: 900;
}
#footer ul {
	margin: 0 0 20px 17px;
}
#footer a {
    color: rgba(95, 95, 95, 1);
}
#footer a:hover {
	color: #31352f;
}
.footer-section-social {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	padding: 50px 0 100px;
	border-bottom: 2px dotted #272727;
	overflow: hidden;
}
#footer .social {
	margin: 0 auto;
	max-width: 600px;
	text-align: center;
}
#footer .social .social-div {
	display: inline-block;
	webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	opacity: .5;
	width: 40px;
	height: 40px;
	border-radius: 2px;
	border: 12px solid transparent;
	border-top-color: rgba(255, 255, 255, 1);
	border-left-color: rgba(255, 255, 255, 1);
	background: rgba(29, 29, 29, 1);
}
#footer .social img {
	width: 20px;
	height: 20px;
	 webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
#footer .social .social-div:hover {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 1;
	background: rgba(0, 0, 0, 1);
}
#footer .social .social-div:hover img {
	-webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
a.social-div span {
	display: none;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	padding: 3px;
	border-radius: 2px;
	left: 0;
	margin-left: -27px;
	position: absolute;
	text-align: center;
	font-size: 9px;
	font-weight: 700;
	text-decoration: none;
	z-index: 1000;
	color: white;
}
a.social-div:hover span {
	display: block;
	width: 140px;
}
.footer-section-clock {
	width: 100%;
	max-width: 1350px;
	margin: 120px auto 150px;
	padding: 0 20px;
}
#footer .clock {
	margin: 0 auto 50px;
	max-width: 900px;
}
#footer .text-block-clock {
	float: right;
	border-left: 2px dotted #272727;
	padding-left: 20px;
	width: 500px;
	height: 100%;
}
.typer {
	font-style: italic;
	color: white;
}
.typed-cursor {
	display: initial;
	font-size: 30px;
    color: white;
	zoom: 1;
	filter: alpha(opacity=100);
	-webkit-opacity: 1;
	-moz-opacity: 1;
	opacity: 1;
	-webkit-animation: blink .7s infinite;
	-moz-animation: blink .7s infinite;
	-o-animation: blink .7s infinite;
	animation: blink .7s infinite;
}
@-webkit-keyframes blink{0%{opacity:1}50%{opacity:0}100%{opacity:1}}
@-moz-keyframes blink{0%{opacity:1}50%{opacity:0}100%{opacity:1}}
@-o-keyframes blink{0%{opacity:1}50%{opacity:0}100%{opacity:1}}
@keyframes blink{0%{opacity:1}50%{opacity:0}100%{opacity:1}}

/* animated-clock */

.animated-clock {
	position: relative;
	height: 300px;
	overflow: hidden;
	width: 300px;
}
.animated-clock img {
	width: 100%;
	height: 100%;
}
.animated-clock span.clock-face, 
.animated-clock span.second, 
.animated-clock span.minute, 
.animated-clock span.hour, 
.animated-clock span.dot {
	position: absolute;
	width: 300px;
    height: 300px;
}
.animated-clock span.second {
	-webkit-animation: rotate 7s infinite linear;
	-moz-animation: rotate 7s infinite linear;
	-ms-animation: rotate 7s infinite linear;
	-o-animation: rotate 7s infinite linear;
	animation: rotate 7s infinite linear;
	background: #494949;
}
.animated-clock span.minute {
	-webkit-animation: rotate 30s infinite linear;
	-moz-animation: rotate 30s infinite linear;
	-ms-animation: rotate 30s infinite linear;
	-o-animation: rotate 30s infinite linear;
	animation: rotate 30s infinite linear;
	background: #FFFFFF;
}
.animated-clock span.hour {
	-webkit-animation: rotate 100s infinite linear;
	-moz-animation: rotate 100s infinite linear;
	-ms-animation: rotate 100s infinite linear;
	-o-animation: rotate 100s infinite linear;
	animation: rotate 100s infinite linear;
	background: #000;
}
@-webkit-keyframes rotate {
	0% { -webkit-transform: rotate(0deg);}
	100% { -webkit-transform: rotate(360deg);}
}	
@-moz-keyframes rotate {
	0% { -moz-transform: rotate(0deg);}
	100% { -moz-transform: rotate(360deg);}
}	

@-ms-keyframes rotate {
	0% { -ms-transform: rotate(0deg);}
	100% { -ms-transform: rotate(360deg);}
}	

@-o-keyframes rotate {
	0% { -o-transform: rotate(0deg);}
	100% { -o-transform: rotate(360deg);}
}	

@keyframes rotate {
	0% { transform: rotate(0deg);}
	100% { transform: rotate(360deg);}
}

.footer-description {
	text-align: center;
	font-weight: 300;
	//margin-top: 150px;
	background-color: #FFF;
	padding: 100px 10px;
	font-size: 18px;
	color: black;
	overflow: hidden;
}
.footer-description h2 {
	font-size: 30px;
    font-weight: 900;
}
.footer-description img {
    width: 200px;
    height: auto;
    box-shadow: 0 0 1px rgba(51, 51, 51, 0.08);
    box-shadow: 0 0 1px rgba(51, 51, 51, 0.15);
    border-radius: 50%;
}
.before-target {
	margin-left: 400px; 
	opacity: .1;
 }
.display-in-user-view {
    opacity: 1;
    margin-left:0;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    
	-webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;	 
}
.display-in-user-view-b {
	opacity: 1;
	margin-left:0;
	-webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
	
	-webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
 }

/* Icons */

@font-face {
	font-family: 'icomoon';
	src:url('fonts/icomoon.eot');
	src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
		url('fonts/icomoon.woff') format('woff'),
		url('fonts/icomoon.ttf') format('truetype'),
		url('fonts/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'icomoon';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}
/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/        
.icon-pencil, 
.icon-paint-format, 
.icon-cart, .icon-map, 
.icon-users, .icon-cogs, 
.icon-spinner, 
.icon-briefcase, 
.icon-mail, 
.icon-accessibility, 
.icon-book, 
.icon-lab {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	font-size:16px;
}
.icon-pencil:before {
	content: "\e000";
}
.icon-paint-format:before {
	content: "\e001";
}
.icon-cart:before {
	content: "\e002";
}
.icon-map:before {
	content: "\e003";
}
.icon-users:before {
	content: "\e004";
}
.icon-cogs:before {
	content: "\e005";
}
.icon-spinner:before {
	content: "\e006";
}
.icon-briefcase:before {
	content: "\e007";
}
.icon-mail:before {
	content: "\e008";
}
.icon-accessibility:before {
	content: "\e009";
}
.icon-book:before {
	content: "\e00a";
}
.icon-lab:before {
	content: "\e00b";
}
/* end */

/* Icons menu v7.3 <div class="fs1" aria-hidden="true" data-icon="&#xe00b;"></div> 
P - &#xe0cc;
T - &#xe021;
IT - &#xe067;
C - &#xe044;
*/

@font-face {
	font-family: 'icomoon';
	src:url('font-menu/icomoon.eot');
	src:url('font-menu/icomoon.eot?#iefix') format('embedded-opentype'),
		url('font-menu/icomoon.woff') format('woff'),
		url('font-menu/icomoon.ttf') format('truetype'),
		url('font-menu/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'icomoon';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}
.icon-bullhorn:before {
	content: "\e021";
}
.icon-envelop:before {
	content: "\e044";
}
.icon-flip-2:before {
	content: "\e067";
}
.icon-thumbs-up:before {
	content: "\e0cc";
}

/*-------------------------------------- end */

/* Responsiveness*/

@media only screen and (max-width: 1550px), 
only screen and (max-device-width: 1550px) {
	#message a {
        right: 12px;
	}
}
@media only screen and (max-width: 1282px), 
only screen and (max-device-width: 1282px) {
	body {
		font-size: 14px;
		line-height: 19px;
	}
	header {
        margin: 0 auto 50px;
	}
	.webtalkto-logo {
        width: 20%;
	}
	.header-right {
        width: 80%;
	}
	#small-logo {
	    display: block;
    }
	#big-logo {
	    display: none;
    }
	header .webtalkto-logo img {
		width: 100px;
		border-radius: 2px;
	}
	header.smaller .webtalkto-logo img {
        width: 60px;
	}
	a.details-hover-window:hover span {
        display: none;
}
	h1,
	.blog .post-title, 
	.page-template-portfolio-php .post-title, 
	.search-results .post-title {
		font-size: 32px;
		line-height: 30px;
	}
	.page-template-portfolio-php .post-title span {
		font-size: 24px;
		line-height: 30px;
	}
	h2 {
		font-size: 26px;
	}
	.web-talk {
		font-size: 100px;
	}
	h3 {
		font-size: 18px;
	}
	.leave-your-talk {
		font-size: 38px;
	}
	h4 {
		font-size: 16px;
	}
	#footer h1 {
        font-size: 22px;
	}
	p {
	    margin: 0 0 7px 0;
	}
	.single-format-standard .entry p:first-child:first-letter {
	    font-size: 70px;
	}
	hr {
		margin: 35px 0 23px 0;
	}
	.arrow-more {
        margin: 1px auto 150px;
	}
	.misbehave {
		font-size: 26px;
		line-height: 30px;
		padding: 30px 0 30px;
	}
	pre {
        font-size: 12px;
	}
	.leave-your-talk {
	    margin-top: 20px;
	}
	#commentform {
	    margin-top: 40px;
	}
	.montreal-studio {
	    font-size: 32px;
		line-height: 35px;
	}
	.montreal-studio span {
	    font-size: 65px;
	}
	#status-text {
	    font-size: 14px;
        font-weight: 500;
		max-width: 300px;
		margin: -150px 0 0 -150px;
	}
	#status-text img {
		width: 200px;
		border: 2px solid #333;
		margin: 0 auto 27px;
	}
	.page-description, 
	.meta, 
	.web-talk-description {
	    font-weight: 500;
	}
	.footer-description h2 {
        font-size: 24px;
	}
	.footer-description {
        font-size: 16px;
	}
	.home .meta:after {
		display: none;
	}
	.home .meta {
	    padding-left: 0;
		background-color: #000;
		color: white;
		padding: 2px 20px;
	}
	.home .a .meta {
	    background-color: #DCDCE2;	
	}
	.home .b .meta {
	    background-color: #9485FF;	
	}
	.home .c .meta {
	    background-color: #DD4D14;	
	}
	.home .d .meta {
	    background-color: #ea4c89;	
	}

}

@media only screen and (max-width: 1026px), 
only screen and (max-device-width: 1026px) {
	 
	header.smaller .webtalkto-logo img {
	    width: 100px;
	}
	#message {
		display: none;
	}
	.footer-section-clock {
	    display: none;
	}
	.footer-section-social {
	    border-bottom: none;
	}
	#icon, 
	#icon1, 
	#icon2, 
	#icon3 {
	    display: none;
	}
	.right-content {
	    display: none;
	}
	.single-post .post {
	    width: 100%;
	}
	.arrow {
	    display: none;
	}
	
}


@media only screen and (max-width: 900px), 
only screen and (max-device-width: 900px) { 

	.menu-open-icon,
	.content-menu {
	    display: block;
	}
 	.header-right {
	    display: none;
	}

}

@media only screen and (max-width: 750px), 
only screen and (max-device-width: 750px) {
	.single-post .post, 
	.page .post {
	    padding: 40px;
	}
	.page-template-portfolio-php .post {
	    padding: 10px;
	}
	a.demo_button {
	    letter-spacing: 7px;
	}
	.web-talk {
	    font-size: 50px;
	}
}


@media only screen and (max-width: 600px), 
only screen and (max-device-width: 600px) {
	
	header {
        margin: 0 auto;
	}
	header .webtalkto-logo img,
	header.smaller .webtalkto-logo img {
        width: 70px;
	}
	.open {
        width: 70%;
	}
	.two-menu {
		font-style: normal;
		font-size: 10px;
		right: 0;
		color: rgb(115, 115, 115);
		top: 16px;
}
	.menu-line1, 
	.menu-line2, 
	.menu-line3 {
		height: 5px;
		border-radius: 1px;
	}
	.hide .menu-line1 {
	    margin-bottom: -5px;
	}
	.content-menu {
	    padding: 6px;
	}
	.more-link, 
	.comment-reply-link, 
	.comment-author {
	    margin-left: -20px;
	}
	.contact-form>div:nth-child(1),
	.contact-form>div:nth-child(2),
	#commentform .commentform-name,
	#commentform .commentform-mail  {
		width: 100%;
		float: left;
	}

}

@media only screen and (max-width: 500px), 
only screen and (max-device-width: 500px) {
	header {
	    padding: 50px 0 100px;
	}
	.open {
	    top: 50px;
	}
	.single-post .post, 
	.page .post {
	    padding: 20px;
		padding-top: 40px;
	}
	.page-template-portfolio-php .post {
	    padding: 10px;
	}
	
}


