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

LAYERZ - LAMARK

[TABLE OF CONTENTS]

01. COMMONS
02. BUTTONS
03. FORMS
04. HEADER
05. HEROS
06. PORTFOLIO
07. FOOTER
08. SLIDERS
09. PAGES
10. BLOG

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

/** 01. COMMONS
-------------------------------------------------- **/
.container {
	width: 80%;
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}

.column {
	float: left;
	position: relative;
	min-height: 1px;
	padding: 0 25px;
}

.column.col-1 {
	width: 8.333%;
}

.column.col-2 {
	width: 16.666%;
}

.column.col-3 {
	width: 24.999%;
}

.column.col-4 {
	width: 33.332%;
}

.column.col-5 {
	width: 41.665%;
}

.column.col-6 {
	width: 49.998%;
}

.column.col-7 {
	width: 58.331%;
}

.column.col-8 {
	width: 66.664%;
}

.column.col-9 {
	width: 74.997%;
}

.column.col-10 {
	width: 83.33%;
}

.column.col-11 {
	width: 91.663%;
}

.column.col-12 {
	width: 100%;
}

.column.offset-1 {
	margin-left: 8.333%;
}

.column.offset-2 {
	margin-left: 16.666%;
}

.column.offset-3 {
	margin-left: 24.999%;
}

.column.offset-4 {
	margin-left: 33.332%;
}

.column.offset-5 {
	margin-left: 41.665%;
}

.column.offset-6 {
	margin-left: 49.998%;
}

.column.offset-7 {
	margin-left: 58.331%;
}

.column.offset-8 {
	margin-left: 66.664%;
}

.column.offset-9 {
	margin-left: 74.997%;
}

.column.offset-10 {
	margin-left: 83.33%;
}

.column.offset-11 {
	margin-left: 91.663%;
}

@media (max-width:800px) {
	.column {
		float: none;
		width: 100% !important;
		padding: 0 !important;
		margin-left: 0 !important;
	}

	.column:not(:last-child) {
		margin-bottom: 50px;
	}

}

.row {
	display: block;
	position: relative;
	margin: 0 -25px;
}

@media (max-width:800px) {
	.row {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

}

.container::after,
.row::after,
.clearfix::after {
	content: '';
	display: table;
	clear: both;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	vertical-align: baseline;
	box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
}

body {
	font-family: 'Roboto';
	font-size: 14px;
	color: #222222;
	line-height: 1.7;
	letter-spacing: 0.5px;
	overflow-y: scroll;
	overflow-x: hidden;
	background: #ffffff;
}

@media (max-width:600px) {
	body {
		font-size: 13px;
	}

}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase;
	font-weight: normal;
	font-style: normal;
	color: #222222;
	letter-spacing: 5px;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

@media (max-width:600px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 18px;
	}

	h4 {
		font-size: 16px;
	}

	h5 {
		font-size: 14px;
	}

	h6 {
		font-size: 13px;
	}

}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

a.link {
	padding-bottom: 2px;
	border-bottom: 1px solid #222222;
}

img,
video {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

img.responsive,
video.responsive {
	display: block;
	width: 100%;
}

figure {
	position: relative;
}

figure .caption {
	position: absolute;
	bottom: 10px;
	left: 10px;
	z-index: 1;
	font-size: 12px;
	padding: 5px 15px;
	background: #ffffff;
}

ul,
ol {
	list-style: none;
}

blockquote {
	padding: 10px 0 10px 50px;
	letter-spacing: 3px;
	border-left: 2px solid #222222;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

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

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

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

div[class*='gap-'] {
	display: block;
}

.gap-25 {
	height: 25px;
}

.gap-50 {
	height: 50px;
}

.gap-100 {
	height: 100px;
}

@media (max-width:600px) {
	.gap-100 {
		height: 50px;
	}

}

h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child),
h6:not(:last-child),
p:not(:last-child),
ul:not(:last-child),
ol:not(:last-child),
blockquote:not(:last-child) {
	margin-bottom: 25px;
}

.loader {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	background: #ffffff;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.loader.hide {
	opacity: 0;
	visibility: hidden;
}

.loader.hide .dots span {
	-webkit-animation: none;
	animation: none;
}

.loader .dots {
	width: 20px;
	height: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2px 0 0 -10px;
}

.loader .dots span {
	width: 4px;
	height: 4px;
	position: absolute;
	top: 0;
	background: #222222;
	border-radius: 50%;
	-webkit-animation: loader 0.5s infinite linear;
	animation: loader 0.5s infinite linear;
}

.loader .dots span:nth-child(1) {
	left: 0;
	-webkit-animation-delay: 0;
	animation-delay: 0;
}

.loader .dots span:nth-child(2) {
	left: 50%;
	margin-left: -2px;
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.loader .dots span:nth-child(3) {
	right: 0;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

@-webkit-keyframes loader {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}

	100% {
		opacity: 1;
	}

}

@keyframes loader {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}

	100% {
		opacity: 1;
	}

}

.to-top {
	width: 40px;
	height: 40px;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 100;
	background: #222222;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.to-top.visible {
	opacity: 1;
	visibility: visible;
}

.to-top span {
	width: 2px;
	height: 12px;
	background: #ffffff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -1px;
}

.to-top span::before {
	content: '';
	width: 6px;
	height: 6px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -3px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.to-top:hover span {
	-webkit-animation: totop 0.3s;
	animation: totop 0.3s;
}

@-webkit-keyframes totop {
	49% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	50% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		opacity: 0;
	}

	51% {
		opacity: 1;
	}

}

@keyframes totop {
	49% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	50% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		opacity: 0;
	}

	51% {
		opacity: 1;
	}

}

/** 02. BUTTONS
-------------------------------------------------- **/
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	position: relative;
	height: 45px;
	line-height: 45px;
	text-transform: uppercase;
	font-family: 'Roboto';
	font-size: 12px;
	color: #ffffff;
	padding: 0 50px;
	background: #222222;
	border: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	background: #3c3c3c;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

/** 03. FORMS
-------------------------------------------------- **/
.form-group:not(:last-child) {
	margin-bottom: 15px;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	width: 100%;
	font-family: inherit;
	padding: 15px;
	border: none;
	background: #f2f2f2;
}

textarea {
	width: 100%;
	max-width: 100%;
	min-height: 120px;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

label {
	display: block;
	margin-bottom: 5px;
	cursor: pointer;
}

/*input[type],
	textarea,
	select {
		&::-webkit-input-placeholder { color: darken(@white_color, 30%); }
		&::-moz-input-placeholder { color: darken(@white_color, 30%); }
		&:-moz-input-placeholder { color: darken(@white_color, 30%); }
		&:-ms-input-placeholder { color: darken(@white_color, 30%); }
	}*/

/** 04. HEADER
-------------------------------------------------- **/
.header {
	width: 100%;
	height: 120px;
	position: relative;

}

.header .logo {
	text-transform: uppercase;
	font-size: 30px;
	color: #222222;
	line-height: 120px;
	letter-spacing: 3px;
}

.header .menu li {
	display: inline-block;
	position: relative;
}

.header .menu li:not(:last-child) {
	margin-right: 25px;
}

.header .menu li a {
	display: block;
	position: relative;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 80px;
	letter-spacing: 2px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .menu li a.parent {
	padding-right: 10px;
}

.header .menu li a.parent::before {
	content: '';
	width: 3px;
	height: 3px;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -3px;
	background: #222222;
	border-radius: 50%;
}

.header .menu li ul {
	width: 180px;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 10;
	background: #222222;
	text-align: right;
	padding: 15px 0;
}

.header .menu li ul li {
	display: block;
	position: relative;
}

.header .menu li ul li:not(:last-child) {
	margin-right: 0;
}

.header .menu li ul li a {
	display: block;
	font-size: 10px;
	padding: 10px 25px;
	color: #ffffff;
	line-height: normal;
}

.header .menu li ul li a.parent {
	padding: 10px 25px;
}

.header .menu li ul li a.parent::before {
	left: 25px;
	margin-top: -2px;
	background: #ffffff;
}

.header .menu li ul li ul {
	top: 0;
	right: 100%;
}

.header .trigger {
	width: 20px;
	height: 16px;
	position: relative;
	cursor: pointer;
	margin-top: 32px;
}

.header .trigger span {
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: #222222;
}

.header .trigger span::before,
.header .trigger span::after {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	background: #222222;
}

.header .trigger span::before {
	top: -7px;
}

.header .trigger span::after {
	bottom: -7px;
}

.header .mobile__nav {
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	background: #222222;
	opacity: 0;
	visibility: hidden;
	padding: 0 5%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .mobile__nav.visible {
	opacity: 1;
	visibility: visible;
}

.header .mobile__nav .menu li {
	display: block;
}

.header .mobile__nav .menu li:not(:last-child) {
	margin-right: 0;
}

.header .mobile__nav .menu li a {
	line-height: normal;
	padding: 10px 0;
	color: #ffffff;
	border-bottom: 1px solid #3c3c3c;
}

.header .mobile__nav .menu li a::before {
	background: #ffffff;
}

.header .mobile__nav .menu li:last-child a {
	border-bottom: 0;
}

.header .mobile__nav .menu li ul {
	width: 100%;
	position: relative;
	text-align: left;
	background: #222222;
}

.header .mobile__nav .menu li ul li a {
	color: #ffffff;
	padding: 10px 15px;
}

.header .mobile__nav .menu li ul li a.parent {
	padding: 10px 15px;
}

.header .mobile__nav .menu li ul li a::before {
	right: 0;
	left: auto;
	margin-top: -2px;
	background: #ffffff;
}

.header .mobile__nav .menu li ul li ul {
	right: 0;
}

.header .mobile__nav .menu li ul li ul li a {
	padding: 10px 25px;
}

/** 05. HEROS
-------------------------------------------------- **/
.hero {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.hero .hero__image,
.hero .hero__content,
.hero .particles {
	width: 80%;
	height: 80%;
	position: absolute;
	top: 0;
	left: 10%;
	z-index: 1;
}

.hero .hero__title {
	display: inline-block;
	min-width: 500px;
	padding: 80px;
	background: rgba(255, 255, 255, 0.95);
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	line-height: 1.77;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.hero .hero__title .title {
	text-transform: uppercase;
	font-size: 22px;
	color: #222222;
	letter-spacing: 5px;
}

.hero .hero__title .subtitle {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 3px;
	margin-top: 5px;
}

@media (max-width:600px) {
	.hero .hero__title {
		width: 90%;
		min-width: auto;
		padding: 50px 25px;
	}

	.hero .hero__title::before,
	.hero .hero__title::after {
		display: none;
	}

	.hero .hero__title .title {
		font-size: 20px;
	}

	.hero .hero__title .subtitle {
		font-size: 11px;
	}

}

/** 06. PORTFOLIO
-------------------------------------------------- **/
.entry .entry__image {
	display: table;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #e1e1e1;
}

.entry .entry__overlay {
	position: absolute;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 2;
	background: rgba(255, 255, 255, 0.95);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.entry .entry__caption {
	position: relative;
	padding: 20px;
}

.entry .entry__caption .title {
	text-transform: uppercase;
	font-size: 17px;
	letter-spacing: 3px;
	position: relative;
	top: -10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.entry .entry__caption .cat {
	font-size: 12px;
	position: relative;
	top: 10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.entry .line {
	width: 16px;
	height: 2px;
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: #222222;
}

.entry:hover .entry__overlay {
	opacity: 1;
	visibility: visible;
}

.entry:hover .entry__caption .title,
.entry:hover .entry__caption .cat {
	top: 0;
}

@media (max-width:800px) {
	.entry .entry__overlay {
		display: none;
	}

}

.filters {
	text-align: center;
	margin-bottom: 0;
}

.filters li {
	display: inline-block;
	position: relative;
	text-transform: uppercase;
	font-size: 11px;
	padding: 5px 15px;
	background: #f2f2f2;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.filters li:hover {
	background: #ebebeb;
}

.filters li.active {
	color: #ffffff;
	background: #222222;
}

.filters li:not(:last-child) {
	margin-right: 5px;
}

@media (max-width:600px) {
	.filters li {
		display: block;
	}

	.filters li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 5px;
	}

}

.project__details li {
	font-size: 14px;
}

.project__details li:not(:last-child) {
	margin-bottom: 10px;
}

.project__details li .details__title {
	display: table-cell;
	min-width: 100px;
	font-weight: 700;
}

.project__details li .details__desc {
	display: table-cell;
}

.project__navigation {
	text-align: center;
}

.project__navigation li {
	display: inline-block;
	position: relative;
	margin: 0 5px;
}

.project__navigation li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 42px;
	border-radius: 50%;
	background: #f2f2f2;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.project__navigation li a:hover {
	color: #ffffff;
	background: #222222;
}

/** 07. FOOTER
-------------------------------------------------- **/
.footer {
	width: 100%;
	padding: 12px 0;
	background: #ffffff;
}

.footer .copy {
	font-size: 12px;
}

.footer .copy a {
	color: #ba964d;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.footer .copy a:hover {
	color: #222222;
}

@media (max-width:800px) {
	.footer .text-right {
		text-align: left;
	}

}

/** 08. SLIDERS
-------------------------------------------------- **/
.slider {
	position: relative;
}

.slider .owl-dots {
	width: 100%;
	height: 7px;
	position: absolute;
	right: 0;
	bottom: 3vw;
	left: 0;
	z-index: 99;
	text-align: center;
}

.slider .owl-dots .owl-dot {
	display: inline-block;
	margin: 0 5px;
	overflow: hidden;
}

.slider .owl-dots .owl-dot span {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(34, 34, 34, 0.3);
	border: none;
	box-shadow: none;
	margin: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.slider .owl-dots .owl-dot:hover span,
.slider .owl-dots .owl-dot.active span {
	background: #222222;
}

.slider .owl-nav {
	z-index: 100;
}

.slider .owl-nav div {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 80px;
	margin-top: -40px;
	background: rgba(34, 34, 34, 0.5);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.slider .owl-nav div:hover {
	background: rgba(34, 34, 34, 0.7);
}

.slider .owl-nav div.owl-prev {
	left: 0;
}

.slider .owl-nav div.owl-next {
	right: 0;
}

.slider .owl-nav div.owl-prev::before,
.slider .owl-nav div.owl-next::before {
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -5px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.slider .owl-nav div.owl-prev::before {
	border-bottom: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
}

.slider .owl-nav div.owl-next::before {
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
}

@media (max-width:600px) {
	.slider .owl-nav div {
		width: 30px;
		height: 60px;
		margin-top: -30px;
	}

}

/** 09. PAGES
-------------------------------------------------- **/
.service .service__icon {
	font-size: 20px;
}

.service .service__title {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 3px;
	margin: 15px 0;
}

.social li {
	display: inline-block;
	position: relative;
}

.social li:not(:last-child) {
	margin-right: 15px;
}

.social li a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.social li a:hover {
	color: #D60036;
}

/** 10. BLOG
-------------------------------------------------- **/
.post:not(:last-child) {
	margin-bottom: 50px;
}

.post .post__image a img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.post .post__image:hover a img {
	opacity: 0.7;
}

.post .post__header {
	margin: 25px 0;
}

.post .post__cat {
	text-transform: uppercase;
	font-size: 12px;
	color: #ba964d;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.post .post__cat:hover {
	color: #222222;
}

.post .post__title {
	margin-bottom: 0;
}

.post .post__title a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.post .post__title a:hover {
	color: #6f6f6f;
}

.post .post__date {
	font-size: 12px;
	color: #b3b3b3;
}

.post .post__link {
	margin-bottom: 25px;
}

.post .post__link a {
	display: block;
	font-size: 30px;
	font-weight: 500;
	padding: 50px;
	color: #222222;
	background: #f2f2f2;
	position: relative;
	text-align: center;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.post .post__link a:hover {
	color: #a2a2a2;
}

.post .post__link a .icon {
	display: block;
	font-size: 16px;
	color: #a2a2a2;
	margin-bottom: 10px;
}

.post .post__quote {
	margin-bottom: 25px;
	font-size: 24px;
	font-weight: 500;
	padding: 50px;
	background: #f2f2f2;
	text-align: center;
}

.post .post__quote::before {
	content: open-quote;
	font-size: 24px;
	color: #b3b3b3;
	padding-right: 15px;
}

.post .post__quote .quote__author {
	display: block;
	font-size: 14px;
	color: #a2a2a2;
}

.widget:not(:last-child) {
	margin-bottom: 50px;
}

.widget .widget__title {
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
	padding: 10px 15px;
	letter-spacing: 3px;
	background: #222222;
	margin-bottom: 25px;
}

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

.widget.about .widget__content img {
	width: 70%;
	border-radius: 50%;
	margin-bottom: 15px;
}

.widget.recents ul li {
	display: block;
	position: relative;
}

.widget.recents ul li:not(:last-child) {
	margin-bottom: 10px;
}

.widget.recents ul li a {
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.widget.recents ul li a:hover {
	color: #6f6f6f;
}

.widget.recents ul li span {
	display: block;
	font-size: 12px;
	color: #b3b3b3;
}

.widget.categories ul li {
	display: block;
	position: relative;
}

.widget.categories ul li a {
	display: block;
	text-transform: uppercase;
	font-size: 12px;
	padding: 10px 0;
	border-bottom: 1px dashed #d9d9d9;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.widget.categories ul li a span {
	float: right;
	color: #b3b3b3;
}

.widget.categories ul li a:hover {
	color: #6f6f6f;
}

.blog__navigation {
	text-align: center;
	margin-top: 50px;
}

.blog__navigation li {
	display: inline-block;
	position: relative;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	line-height: 40px;
}

.blog__navigation li.active {
	color: #ffffff;
	background: #222222;
}

.blog__navigation li a {
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.blog__navigation li a:hover {
	color: #a2a2a2;
}

.tags span {
	text-transform: uppercase;
	font-size: 12px;
	margin-right: 15px;
}

.tags a {
	display: inline-block;
	position: relative;
	font-size: 12px;
	padding: 5px 15px;
	background: #f2f2f2;
	border-radius: 50px;
}

.tags a:not(:last-child) {
	margin-right: 5px;
}

.tags a:hover {
	color: #ffffff;
	background: #222222;
}

.post__comments {
	margin-top: 100px;
}

.post__comments .comments__list .comment:not(:last-child) {
	margin-bottom: 50px;
}

.post__comments .comments__list .comment .comment-img {
	width: 50px;
	float: left;
}

.post__comments .comments__list .comment .comment-img img {
	display: block;
	width: 100%;
}

.post__comments .comments__list .comment .comment-content {
	padding-left: 80px;
}

.post__comments .comments__list .comment .comment-content .name {
	font-weight: 700;
}

.post__comments .comments__list .comment .comment-content .date {
	font-size: 12px;
}

.post__comments .comments__list .comment .comment-content .desc {
	margin: 25px 0;
}

.post__comments .comments__list .comment .comment-content a.reply {
	font-size: 12px;
}

.post__comments .comments__list .comments__list {
	padding: 50px 0 0 50px;
}

@media (max-width:600px) {
	.post__comments .comments__list .comment .comment-img {
		width: 50px;
	}

	.post__comments .comments__list .comment .comment-content {
		padding-left: 70px;
	}

	.post__comments .comments__list .comments__list {
		padding: 50px 0 0 0;
	}

}

@media (max-width:400px) {
	.post__comments .comments__list .comment .comment-img {
		display: none;
	}

	.post__comments .comments__list .comment .comment-content {
		padding-left: 0;
	}

}
