/*!
Theme Name: web-devsoltan
Author: Viorel Soltan
Author URI: https://dev-websoltan.com/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
	padding: 0;
	min-width: 320px;
	overflow-x: hidden;
}

html, body {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	height: 100%;
}

*,
*::before,
*::after {
	-webkit-box-sizing: inherit;
	        box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

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

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

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

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
	margin-top: 0.83em;
	margin-bottom: 0.83em;
}

h3 {
	font-size: 1.17em;
	margin-top: 1em;
	margin-bottom: 1em;
}

h4 {
	font-size: 1em;
	margin-top: 1.33em;
	margin-bottom: 1.33em;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background-color: #18283a;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	-webkit-box-sizing: inherit;
	        box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

blockquote, q {
	quotes: "" "";
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

.author-wrapper {
	padding: 10px 0;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background-color: #fff;
	border: 2px solid #487EBD;
	color: #444;
	padding: 12px 26px;
	padding-bottom: 9.1px;
	text-align: center;
	text-decoration: none;
	font-size: 13px;
	margin: 3px 1px;
	cursor: pointer;
	border-radius: 3px;
	-webkit-transition-duration: 0.4s;
	        transition-duration: 0.4s;
	text-transform: uppercase;
}

input[type="submit"]:hover, .form-contact .button:hover {
	background-color: #487EBD;
	color: #fff;
	border: 2px solid #487EBD;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	margin: 8px 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 3px;
	padding: 3px;
	border: 2px solid #487EBD;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	border: 2px solid #555;
}

input[type="search"] {
	padding: 8px 20px;
	border-radius: 3px;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

.comment-form label {
	display: block;
}

.form-contact input[type="text"] {
	display: block;
	width: 100%;
}

:focus::-webkit-input-placeholder {
	color: transparent;
}

:focus::-moz-placeholder {
	color: transparent;
}

:focus:-moz-placeholder {
	color: transparent;
}

:focus:-ms-input-placeholder {
	color: transparent;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #1583cc;
}

/* a:visited {
	color: #115b8d;
} */

a:hover, a:focus, a:active {
	color: #115b8d;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 25px;
	width: 65%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.pagination .nav-links .current {
	color: #fff;
	background-color: #487EBD;
}

.pagination .nav-links span, .pagination .nav-links a {
	padding: .4em .8em;
	text-decoration: none;
}

.pagination .nav-links span:hover, .pagination .nav-links span:focus, .pagination .nav-links a:hover, .pagination .nav-links a:focus {
	color: #fff;
	background-color: #487EBD;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	-webkit-transition: height, margin .3s ease;
	transition: height, margin .3s ease;
}

.main-navigation ul {
	display: block;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
	color: #1779ba;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 10px;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
	color: #1583cc;
}

.nav-btn {
	width: 40px;
	height: 25px;
	position: relative;
	margin-left: auto;
	-webkit-transform: rotate(0deg);
	        transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	background: none;
	border: none;
	cursor: pointer;
	outline: none;
	z-index: 2;
}

.nav-btn span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #fff;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	        transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.nav-btn span:nth-child(1) {
	top: 0px;
}

.nav-btn span:nth-child(2),
.nav-btn span:nth-child(3) {
	top: 10px;
}

.nav-btn span:nth-child(4) {
	top: 20px;
}

.nav-btn.open span:nth-child(1) {
	top: 10px;
	width: 0%;
	left: 50%;
}

.nav-btn.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.nav-btn.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.nav-btn.open span:nth-child(4) {
	top: 10px;
	width: 0%;
	left: 50%;
}

@media only screen and (min-width: 768px) {
	.nav-btn {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	.main-navigation ul {
		display: none;
	}
	.nav--open {
		width: 100% !important;
		margin-top: 15px;
		border-top: 3px solid white;
		padding-top: 20px;
	}
	.nav--open .menu-main-menu-container {
		width: 100%;
	}
	.nav--open .menu-main-menu-container .menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-flex: 100%;
		    -ms-flex: 100%;
		        flex: 100%;
	}
	.nav--open .menu-main-menu-container .menu li {
		float: none;
	}
	.nav--open .menu-main-menu-container .menu li a {
		padding: 10px;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

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

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

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

aside .widget_tag_cloud .tagcloud .tag-cloud-link {
	font-size: 11px !important;
	text-decoration: none;
	color: #444;
	padding: 8px 18px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	margin: 8px 4px;
	-webkit-transition-duration: 0.4s;
	        transition-duration: 0.4s;
	cursor: pointer;
	border-radius: 4px;
	text-transform: uppercase;
	border: 2px solid #487EBD;
}

aside .widget_tag_cloud .tagcloud .tag-cloud-link:hover {
	background-color: #487EBD;
	color: #fff;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

code {
	padding: 20px 10px;
	display: block;
	background-color: #18283a;
	border: 1px solid #ccc;
	color: #fff;
}

.wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	position: relative;
}

.wrapper article {
	width: 65%;
	padding-right: .9375rem;
	padding-left: .9375rem;
}

.wrapper aside {
	width: 35%;
	padding-right: .9375rem;
	padding-left: .9375rem;
}

.single-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

.single-wrapper article {
	width: 65%;
	padding-right: .9375rem;
	padding-left: .9375rem;
}

.single-wrapper aside {
	width: 35%;
	padding-right: .9375rem;
	padding-left: .9375rem;
}

aside ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

aside a {
	text-decoration: none;
}

.tag-wrapper, .archive-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

.tag-wrapper article, .archive-wrapper article {
	width: 65%;
	padding-right: .9375rem;
	padding-left: .9375rem;
}

.tag-wrapper aside, .archive-wrapper aside {
	width: 35%;
	padding-right: .9375rem;
	padding-left: .9375rem;
}

.category-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

.category-wrapper article {
	width: 65%;
	padding-right: .9375rem;
	padding-left: .9375rem;
}

.category-wrapper aside {
	width: 35%;
	padding-right: .9375rem;
	padding-left: .9375rem;
}

.wrapper, .category-wrapper, .tag-wrapper, .single-wrapper {
	padding-top: 25px;
}

.wrapper aside, .category-wrapper aside, .tag-wrapper aside, .single-wrapper aside {
	padding-top: 15px;
}

.search-wrapp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

.search-wrapp .site-main {
	width: 65%;
	padding-right: .9375rem;
	padding-left: .9375rem;
}

.search-wrapp aside {
	padding-top: 15px;
	width: 35%;
	padding-right: .9375rem;
	padding-left: .9375rem;
}

.entry-title a {
	text-decoration: none;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

.entry-title a:link, .entry-title a:visited {
	color: #1583cc;
}

.entry-title a:link:hover, .entry-title a:link:focus, .entry-title a:visited:hover, .entry-title a:visited:focus {
	color: #404040;
}

.entry-meta {
	font-size: 14px;
	color: #555;
}

.entry-meta span a {
	text-decoration: none;
	color: #555;
}

.entry-meta span a:hover {
	color: #000;
}

.continue-reading {
	padding: 15px 0;
}

.continue-reading .button {
	background-color: #487EBD;
	padding: 10px 32px;
	text-decoration: none;
	border-radius: 5px;
	-webkit-transition-duration: 0.4s;
	        transition-duration: 0.4s;
	color: #fff;
	border: 2px solid #fff;
}

.continue-reading .button:hover {
	background-color: #fff;
	color: #444444;
	border: 2px solid #487EBD;
}

.post-navigation .nav-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

.post-navigation .nav-links .nav-previous {
	width: 50%;
	padding-right: .4375rem;
	padding-left: .4375rem;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	cursor: pointer;
}

.post-navigation .nav-links .nav-previous:hover {
	background: #ddd;
}

.post-navigation .nav-links .nav-previous:hover a {
	color: #222;
	text-decoration: underline;
}

.post-navigation .nav-links .nav-next {
	width: 50%;
	padding-right: .4375rem;
	padding-left: .4375rem;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	cursor: pointer;
}

.post-navigation .nav-links .nav-next:hover {
	background: #ddd;
}

.post-navigation .nav-links .nav-next:hover a {
	color: #222;
	text-decoration: underline;
}

.post-navigation .nav-links a {
	text-decoration: none;
}

.search-results .tags-links {
	padding: 2px 5px;
}

.search-results .tags-links a {
	padding: 2px 5px;
	margin: 0 2px;
	background: #487EBD;
	text-decoration: none;
	color: #fff;
	border-radius: 3px;
	-webkit-transition-duration: 0.4s;
	        transition-duration: 0.4s;
	border: 1px solid transparent;
	font-size: 15px;
}

.search-results .tags-links a:hover, .search-results .tags-links a:focus {
	background-color: #fff;
	color: #444444;
	border: 1px solid #487EBD;
}

.search-results .comments-link {
	padding: 2px 5px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

.comments-area {
	border-top: 2px solid #ccc;
}

.row {
	max-width: 80rem;
	margin-right: auto;
	margin-left: auto;
}

.row::after, .row::before {
	display: table;
	content: ' ';
}

.row::after {
	clear: both;
}

a {
	outline: 0;
}

a:focus {
	outline: 0;
}

.site-header, .site-footer {
	background-color: #2c3840;
	width: 100%;
}

.container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	padding: 15px 0;
	margin: 0 auto;
	color: #fff;
}

.container .site-branding {
	-ms-flex-preferred-size: 30%;
	    flex-basis: 30%;
}

.container .site-branding .site-title a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	-webkit-transition: color 1s ease-in;
	transition: color 1s ease-in;
}

.container .site-branding .site-title a:hover {
	color: #D5F7FF;
}

.container nav {
	width: 70%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	align-items: stretch;
	-ms-flex-line-pack: center;
	    align-content: center;
	color: #fff;
}

.home_preview {
	/*background: url("./img/home_preview2.jpg");*/
	width: 100%;
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.home_preview .title-wapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 170px;
	/* Standard syntax */
}

.home_preview .title-wapper__text {
	-webkit-animation-name: example;
	        animation-name: example;
	-webkit-animation-duration: 4s;
	        animation-duration: 4s;
}

.home_preview .title-wapper__text h1 {
	font-size: 60px;
	color: #fff;
	text-transform: uppercase;
	border: 8px solid #fff;
	padding: 15px;
	margin-bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
}

.home_preview .title-wapper__text h1 span {
	color: #333;
}

.home_preview .title-wapper__text p {
	font-size: 20px;
	text-transform: uppercase;
	color: #fff;
}


@keyframes example {
	0% {
		opacity: 0;
	}
	25% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.5;
	}
	75% {
		opacity: 0.7;
	}
	100% {
		opacity: 1;
	}
}

.home_preview .bottom_link {
	margin-top: 30px;
}

.home_preview .bottom_link a {
	text-decoration: none;
	color: #fff;
	-webkit-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
}

.home_preview .bottom_link a:hover {
	opacity: 0.6;
}

.home_preview .bottom_link a span {
	font-size: 50px;
}

.skills {
	padding: 60px 0;
}

.skills .section_title {
	margin-bottom: 40px;
}

.skills .icon-wrapp {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 20px;
grid-row-gap: 10px;
align-items: center;
}

.skills .icon-wrapp__item {
	padding: 10px;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
}

.skills .icon-wrapp__item .icon {
	width: 120px;
	
}

.icon {
	cursor: pointer;
	transition: all .25s ease;
}
.html {
	fill: #E34F26;
}
.css {
	fill: #1572B6;
}
.bootstrap {
	fill: #7952B3;
}

.tailwind {
	fill: #06B6D4;
}

.js {
	fill: #F7DF1E;
}

.jq {
	fill: #0769AD;
}

.vue {
	fill: #4FC08D;
}

.nuxt {
	fill: #00DC82;
}

.php {
	fill: #777BB4;
}

.wp {
	fill: #21759B;
}
.icon:hover {
	transform: scale(1.3);
	
  }
.section_title {
	text-align: center;
}

.section_title h2 {
	text-transform: uppercase;
	font-size: 2em;
}

.works {
	background-color: #eceef1;
	padding: 60px 0;
}

.works .portfolio {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	padding: 15px 0;
}

.works .portfolio__item {
	padding-right: .9375rem;
	padding-left: .9375rem;
	-ms-flex-preferred-size: 33.333%;
	flex-basis: 50%;
	/* flex-basis: 33.333%; */
	margin-top: 15px;
	margin-bottom: 15px;
}

.works .portfolio__item img{
   height: 100%;
   width: auto;
   
}

.works .hovereffect {
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	position: relative;
	text-align: center;
	cursor: default;
}

.works .hovereffect img {
	margin: auto;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
}

.works .hovereffect .overlay {
	position: absolute;
	overflow: hidden;
	width: 80%;
	height: 80%;
	left: 10%;
	top: 10%;
	border-bottom: 1px solid #FFF;
	border-top: 1px solid #FFF;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: scale(0, 1);
	        transform: scale(0, 1);
}

.works .hovereffect:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	        transform: scale(1);
}

.works .hovereffect:hover img {
	-webkit-filter: brightness(0.4);
	        filter: brightness(0.4);
}

.works .hovereffect h2 {
	text-transform: uppercase;
	text-align: center;
	position: relative;
	font-size: 20px;
	background-color: transparent;
	color: #FFF;
	padding: 5% 0 10%;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: translate3d(0, -100%, 0);
	        transform: translate3d(0, -100%, 0);
}

.works .hovereffect a {
	position: relative;
	color: #FFF;
	padding: 10px 32px;
	opacity: 0;
	font-weight: 600;
	filter: alpha(opacity=0);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: translate3d(0, 100%, 0);
	        transform: translate3d(0, 100%, 0);
	border: 2px solid #fff;
	text-decoration: none;
	border-radius: 6px;
	text-transform: uppercase;
}

.works .hovereffect a:hover {
	background-color: #fff;
	border: 2px solid transparent;
	color: #444;
}

.works .hovereffect:hover a, .works .hovereffect:hover h2 {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}

.contact-wrapp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	padding: 30px 0 40px 0;
}

.contact-wrapp__item {
	padding-right: .9375rem;
	padding-left: .9375rem;
	width: 50%;
}

.contact-wrapp ul li .icon-address {
	width: 30px;
	margin-right: 5px;

}

.gmail {
	fill: #EA4335;
}
.telegram {
	fill: #26A5E4;
}
.github {
	fill: #181717;
}

.contact-wrapp ul li {
	padding: 15px 0;
}

.contact-wrapp ul li a, .contact-wrapp ul li .phone, .contact-wrapp ul li .tw {
	vertical-align: top;
}

.desc_about {
	padding: 30px;
	border-bottom: 2px solid #dcdcdc;
}



.site-footer {
	padding: 15px 0;
	text-align: center;
	color: #fff;
}

.site-footer span {
	font-size: 15px;
}


.projects-all {
    padding: 20px 0;
}
    .post-type-archive-projects .project {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
}
.grid {
    display: grid;
}
.nav-projects {
text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
.project-footer .button{
  color:#fff;
}
.project-footer .button:hover {
    color: #487EBD;
}
.nav-projects .page-numbers {
    border: 2px solid #487EBD;
    border-radius: 3px;
    color: #404040;
    cursor: pointer;
    display: inline-block;
    padding: 5px 12px;
    text-decoration: none;
    transition: background .2s ease-in-out;
}
.nav-projects .page-numbers.current, .nav-projects .page-numbers:hover {
    background-color: #487EBD;
    border: 2px solid #1583cc;
    color:#fff;
}



/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

.project-list {
    grid-template-columns: repeat(3,1fr);
    grid-gap: 35px;
} 
.project-list__card {
    overflow: hidden;
    border-radius: 8px;
    transition: background-color .25s ease;
}
.project-list__img {
    height: 280px;
    background-size: cover;
    background-position: 50%;
    transition: transform .25s ease;
}
.project-list__card:hover .project-list__img {
  -webkit-transform: scale(1.05) translateY(-6.5px);
  -ms-transform: scale(1.05) translateY(-6.5px);
  transform: scale(1.05) translateY(-6.5px);
}
.project-list-link {
    margin-top: 30px;
    padding: 35px 0 15px;
    text-align: center;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
@media only screen and (max-width: 992px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
	.home_preview {
		height: auto;
		padding-bottom: 35px;
	}
	.home_preview .title-wapper {
		margin-top: 90px;
	}
	.skills .icon-wrapp {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.works .portfolio__item {
		-ms-flex-preferred-size: 50%;
		    flex-basis: 50%;
	}
	.post-type-archive-project .project {
    grid-template-columns: 1fr 1fr;
    
}
.project-list {
    grid-template-columns: repeat(2,1fr);
    grid-gap: 35px;
} 
	.post-type-archive-projects .project {
    grid-template-columns:  1fr 1fr;
   
}
	
}

@media only screen and (max-width: 800px) {
	.wrapper article {
		width: 60%;
		padding-right: .6375rem;
		padding-left: .6375rem;
	}
	.wrapper aside {
		width: 40%;
		padding-right: .6375rem;
		padding-left: .6375rem;
	}
}

@media only screen and (max-width: 768px) {
	.home_preview .title-wapper {
		margin-top: 70px;
	}
	.skills .icon-wrapp {
		grid-template-columns: repeat(3, 1fr);
	}
	.works .portfolio__item {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}
	.wrapper, .archive-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.wrapper article {
		width: 100%;
	}
	.wrapper aside {
		width: 100%;
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	.archive-wrapper article {
		width: 100%;
	}
	.archive-wrapper aside {
		width: 100%;
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	.contact-wrapp {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.contact-wrapp__item {
		width: 100%;
	}
	.contact-wrapp__item .button {
		width: 100%;
	}
	.category-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.category-wrapper article {
		width: 100%;
	}
	.category-wrapper aside {
		width: 100%;
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	.single-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.single-wrapper article {
		width: 100%;
	}
	.single-wrapper aside {
		width: 100%;
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	.search-wrapp {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.search-wrapp .site-main {
		width: 100%;
	}
	.search-wrapp aside {
		padding-top: 15px;
		width: 100%;
	}
	.tag-wrapper article {
		width: 100%;
	}
	.tag-wrapper aside {
		width: 100%;
	}
	    .post-type-archive-projects .project {
        grid-template-columns: repeat(1,1fr);
    }
.project-list {
    grid-template-columns: repeat(1,1fr);
    grid-gap: 35px;
}	
	
}

@media only screen and (max-width: 600px) {
	.container .site-branding {
		-ms-flex-preferred-size: auto;
		    flex-basis: auto;
	}
	.home_preview .title-wapper__text h1 {
		font-size: 45px;
	}
	.skills .icon-wrapp {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.home_preview .title-wapper__text h1 {
		font-size: 35px;
	}
	.skills .icon-wrapp {
		grid-template-columns: repeat(1, 1fr);
	}
}


