@charset "UTF-8";
/*!
Theme Name: Clearnote
Theme URI:
Author: anirov
Author URI:
Description: Clearnote is a lightweight WordPress theme built with a focus on speed and usability.
Version: 1.0.5
Requires at least: 5.0
Tested up to: 6.0
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: clearnote
Tags: blog, custom-colors, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Clearnote is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Elements
# Forms
# Header
# 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;
  background-color: white; }

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;
  text-decoration: none; }

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: 0px; }

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; }

/*--------------------------------------------------------------
# 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 https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  background: #fff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: disc;
}

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;
}

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%;
}

blockquote {
  font-style: italic;
}

blockquote p {
  margin-bottom: 0;
}

.svg-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.search-form {
  
}
.widget_search label{
	display: block;
	margin-bottom: 5px;
}
.widget_search input[type='search'] {
	width: 100%;
}
.widget_search input[type='submit'] {
	float: right;
}

/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/

.site-header {
	position: relative;
	background-color: #111;
	color: rgba(255, 255, 255, 0.7);
	line-height: 80px;
}

.site-header .container-fluid {
	position: relative;
	z-index: 2;
}

.site-header__image {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
}

.site-header a {
  color: rgba(255, 255, 255, 0.7);
}

.site-header a:hover {
  color: #fff;
}

.site-title {
  display: inline-block;
  margin-bottom: 0;
}
.site-title.site-logo--image {
	max-width: 150px;
}
.site-title.site-logo--image img {
	display: inline-block;
	vertical-align: middle;
}
.site-title.site-logo--text {
	font-size: 2rem;
	color: #fff;
}

.site-title a {
	color: #fff;
}
.site-title a:focus {
	color: #fff;
}

.site-title a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.site-description {
	display: inline-block;
	margin-bottom: 0;
	margin-left: 15px;
	line-height: 1.2;
	font-size: 0.85rem;
	font-weight: 600;
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Posts Navigation
--------------------------------------------------------------*/
.pagination,
.posts-navigation {
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid #e8e9eb;
}
.pagination .nav-icon,
.posts-navigation .nav-icon,
.post-navigation .nav-icon {
	transition: .2s;
	color: #ccc;
}
.pagination .nav-next-icon,
.posts-navigation .nav-next-icon,
.post-navigation .nav-next-icon {
	margin-left: 10px;
}
.pagination .nav-prev-icon,
.posts-navigation .nav-prev-icon,
.post-navigation .nav-prev-icon {
	margin-right: 10px;
}
.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.pagination .page-numbers:first-child:not(.prev),
.pagination .page-numbers.next {
	margin-left: auto;
}
.pagination .page-numbers:last-child:not(.next),
.pagination .page-numbers.prev {
	margin-right: auto;
}
.pagination .page-numbers:not(.prev):not(.next) {
	padding: 5px 10px;
	font-weight: inherit;
	font-size: 14px;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	flex-shrink: 0;
	font-size: 16px;
}
.comment-navigation,
.posts-navigation {
	overflow: hidden;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 16px;
}
.comment-navigation .nav-links a:hover,
.posts-navigation .nav-links a:hover {
	color: #181818;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next {
	margin-left: auto;
}
.comment-navigation .nav-previous + .nav-next,
.posts-navigation .nav-previous + .nav-next {
	padding-left: 20px;
}
.comment-navigation + .comment-list,
.comment-list + .comment-navigation {
	margin-top: 1rem;
}
.post-navigation {
	margin-top: 3.5rem;
}
.post-navigation .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.post-navigation .nav-next,
.post-navigation .nav-previous {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

@media (min-width: 1025px) {
	.post-navigation .nav-next,
	.post-navigation .nav-previous {
		width: calc(50% - 15px);
	}
}

.post-navigation .nav-next {
	margin-top: 1rem;
}

@media (min-width: 1025px) {
	.post-navigation .nav-next {
		margin-top: 0;
	}
}

.post-navigation a {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 1px solid #e8e9eb;
	border-radius: 4px;
}
.post-navigation a:hover {
	background-color: #f6f6f7;
}
.post-navigation .nav-next {
	text-align: right;
}
.post-navigation .nav-previous {
	text-align: left;
}
.post-navigation .nav-text,
.post-navigation .nav-post-title {
	display: block;
}
.post-navigation .nav-text {
	font-size: 16px;
}

/*--------------------------------------------------------------
## Page Navigation
--------------------------------------------------------------*/
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.page-links:last-child {
	margin-bottom: 0;
}
.page-links a {
	text-decoration: none;
}
.page-links .current {
	font-weight: 700;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  text-decoration: none;
  color: #1e73be;
}

a:hover, a:focus, a:active {
  color: #222;
  text-decoration: none;
}

a:focus {
  outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  width: 100%;
}

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

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

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation .menu-item:hover > a,
.main-navigation .menu-item:focus > a,
.main-navigation .menu-item.focus > a,
.main-navigation .menu-item.current_page_item > a,
.main-navigation .menu-item.current-menu-item > a,
.main-navigation .menu-item.current_page_ancestor > a,
.main-navigation .menu-item.current-menu-ancestor > a {
	color: #fff;
}

.main-navigation ul ul {
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

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

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: -30px;
}
.main-navigation ul li:last-child:hover > ul,
.main-navigation ul li.focus:last-child > ul {
	left: auto;
	right: -30px;
}
.main-navigation ul li:last-child > ul > li:hover ul,
.main-navigation ul li:last-child > ul > li.focus ul {
	left: auto;
	right: 100%;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }

}

@media screen and (max-width: 1023px) {
	
	/* Mobile Menu */
	.site-header .main-navigation-inner {
		overflow-y: scroll;
		position: fixed;
		z-index: 998;
		top: 0;
		right: -75%;
		width: 75%;
		height: 100vh;
		margin: 0;
		padding: 54px 30px 60px;
		background-color: #f8f8f8;
		transition: all 0.3s cubic-bezier(0.35, 0.19, 0.45, 0.91);
	}
	.admin-bar .site-header .main-navigation-inner {
		padding-top: 100px;
	}
	.site-header .toggled .main-navigation-inner {
		right: 0;
	}
	.site-header .main-navigation-inner .main-navigation-inner {
		display: block;
		width: 100%;
		margin-top: 100px;
		margin-left: 30px;
		margin-right: 30px;
		margin-bottom: 86px;
	}
	.site-header .main-navigation-inner .menu li {
		display: block;
		margin: 0;
		padding: 0;
		text-align: left !important;
	}
	.site-header .main-navigation-inner .menu li a {
		padding: 8px 0 9px;
		font-size: 18px;
		color: #222;
	}
	.site-header .main-navigation-inner .sub-menu {
		position: initial;
		margin-left: 30px;
		margin-top: 0;
		padding: 0;
		background: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.site-header .main-navigation-inner .sub-menu li a {
		width: auto;
	}

}

/* .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%;
}

.comment-navigation a,
.posts-navigation a,
.post-navigation a {
  margin: 1px;
  display: inline-block;
}

.site-main .posts-navigation {
  margin-bottom: 3rem;
} */

/* Toogle button styles */
button.menu-toggle {
	position: relative;
	z-index: 1001;
	float: right;
	width: 20px;
	height: 20px;
	margin-top: 16px;
	padding: 0;
	background: none;
}
.toggled .menu-toggle {
	position: fixed;
	top: 46px;
	right: 30px;
}
button.menu-toggle:hover,
button.menu-toggle:focus {
	background: none;
}
button.menu-toggle:focus {
	outline: thin dotted #fff;
}
.toggled button.menu-toggle:focus {
	outline: thin dotted #222;
}
.menu-toggle:before,
.menu-toggle:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 2px;
	background-color: #fff;
	-webkit-transition: width 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: width 0.2s ease-out, -webkit-transform 0.2s ease-out;
	-o-transition: width 0.2s ease-out, transform 0.2s ease-out;
	transition: width 0.2s ease-out, transform 0.2s ease-out;
	transition: width 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.menu-toggle:before {
	top: 6px;
	width: 20px;
}
.menu-toggle:after {
	top: 14px;
	width: 12px;
}
.toggled .menu-toggle:before,
.toggled .menu-toggle:after {
	top: 9px;
	left: -3px;
	width: 26px;
	background-color: #222;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.toggled .menu-toggle:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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;
  -webkit-clip-path: none;
  clip-path: none;
  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%;
}

.widget ul {
  margin-left: 0;
}

.error-404 .widget {
  margin: 2rem 0 1.5rem;
}

.search-form input {
  border: 0px;
  padding: 10px 15px;
  font-size: 1rem;
  background-color: #f2f2f2;
}
.search-form input[type='submit'] {
	color: #fff;
	background-color: #222;
}


.widget-title.h6-style {
  margin-top: 0;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 13px;
}

.widget + .widget {
  margin-top: 55px; }

.widget:last-child {
  margin-bottom: 55px; }

.sidebar .widget,
.footer-area .widget {
  margin-top: 1.5em; }
  @media (min-width: 940px) {
    .sidebar .widget,
    .footer-area .widget {
      margin-top: 3em; } }

.widget select {
  width: 100%; }

.widget a {
	color: inherit;
}

.widget ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.5; }
  .widget ul li + li,
  .widget ul li > ul,
  .widget ul li > ol {
    margin-top: 10px; }
  .widget ul li > ul,
  .widget ul li > ol {
    margin-left: 25px; }

.widget_archive ul, .widget_categories ul,
.widget_nav_menu div ul,
.widget_nav_menu div ul, .widget_meta ul, .widget_pages ul {
  font-size: 14px;
  line-height: 1.6; }
  .widget_archive ul li > a, .widget_categories ul li > a,
  .widget_nav_menu div ul li > a,
  .widget_nav_menu div ul li > a, .widget_meta ul li > a, .widget_pages ul li > a {
    position: relative;
    display: inline-block; }
  .widget_archive ul li + li, .widget_categories ul li + li,
  .widget_nav_menu div ul li + li,
  .widget_nav_menu div ul li + li, .widget_meta ul li + li, .widget_pages ul li + li {
    margin-top: 9px; }
  @media (min-width: 1200px) {
    .widget_archive ul li > ul, .widget_categories ul li > ul,
    .widget_nav_menu div ul li > ul,
    .widget_nav_menu div ul li > ul, .widget_meta ul li > ul, .widget_pages ul li > ul {
      margin-left: 25px;
      margin-top: 9px; } }
  .widget_archive ul li .post_count, .widget_categories ul li .post_count,
  .widget_nav_menu div ul li .post_count,
  .widget_nav_menu div ul li .post_count, .widget_meta ul li .post_count, .widget_pages ul li .post_count {
    color: #bfbfbf; }

.widget_recent_entries ul li a {
  display: inline-block;
  font-weight: 500;
  line-height: 1.6;
  font-size: 14px; }
  .widget_recent_entries ul li a + .post-date {
    margin-top: 12px; }

.widget_recent_entries .post-date {
  display: block;
  text-transform: uppercase;
  font-size: 10px; }

.widget_recent_comments ul {
  text-transform: uppercase;
  line-height: 1.6;
  font-size: 10px; }

.widget_recent_comments li > a {
  text-transform: none;
  font-size: 14px !important; }

.widget_recent_comments .comment-author-link {
  margin-right: 1px; }
  .widget_recent_comments .comment-author-link a {
    font-size: 10px !important; }
  .widget_recent_comments .comment-author-link ~ a:before {
    content: '';
    display: block; }

.widget_rss .widget-title:before {
  content: '';
  vertical-align: top;
  margin-right: 5px;
  margin-top: -3px;
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg"><path d="M5.14286 15.4286C5.14286 16.1384 4.88839 16.7478 4.37946 17.2567C3.88393 17.7522 3.28125 18 2.57143 18C1.86161 18 1.25223 17.7522 0.743304 17.2567C0.247768 16.7478 0 16.1384 0 15.4286C0 14.7188 0.247768 14.1161 0.743304 13.6205C1.25223 13.1116 1.86161 12.8571 2.57143 12.8571C3.28125 12.8571 3.88393 13.1116 4.37946 13.6205C4.88839 14.1161 5.14286 14.7188 5.14286 15.4286ZM0 0V3.43527C2.00893 3.43527 3.89732 3.81696 5.66518 4.58036C7.43304 5.34375 8.97322 6.38839 10.2857 7.71429C11.6116 9.02679 12.6563 10.567 13.4196 12.3348C14.183 14.1027 14.5647 15.9911 14.5647 18H18C18 15.5223 17.5246 13.192 16.5737 11.0089C15.6362 8.8125 14.3504 6.90402 12.7165 5.28348C11.096 3.64955 9.1875 2.36384 6.99107 1.42634C4.80804 0.475446 2.47768 0 0 0ZM0 6.0067V9.42188C1.17857 9.42188 2.29018 9.64955 3.33482 10.1049C4.37946 10.5603 5.29018 11.1763 6.06696 11.9531C6.84375 12.7165 7.45313 13.6205 7.89509 14.6652C8.35045 15.7098 8.57813 16.8214 8.57813 18H11.9933C11.9933 16.3527 11.6786 14.7991 11.0491 13.3393C10.4196 11.8795 9.5625 10.6071 8.47768 9.52232C7.39286 8.4375 6.12054 7.58036 4.66071 6.95089C3.21429 6.32143 1.66071 6.0067 0 6.0067Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg"><path d="M5.14286 15.4286C5.14286 16.1384 4.88839 16.7478 4.37946 17.2567C3.88393 17.7522 3.28125 18 2.57143 18C1.86161 18 1.25223 17.7522 0.743304 17.2567C0.247768 16.7478 0 16.1384 0 15.4286C0 14.7188 0.247768 14.1161 0.743304 13.6205C1.25223 13.1116 1.86161 12.8571 2.57143 12.8571C3.28125 12.8571 3.88393 13.1116 4.37946 13.6205C4.88839 14.1161 5.14286 14.7188 5.14286 15.4286ZM0 0V3.43527C2.00893 3.43527 3.89732 3.81696 5.66518 4.58036C7.43304 5.34375 8.97322 6.38839 10.2857 7.71429C11.6116 9.02679 12.6563 10.567 13.4196 12.3348C14.183 14.1027 14.5647 15.9911 14.5647 18H18C18 15.5223 17.5246 13.192 16.5737 11.0089C15.6362 8.8125 14.3504 6.90402 12.7165 5.28348C11.096 3.64955 9.1875 2.36384 6.99107 1.42634C4.80804 0.475446 2.47768 0 0 0ZM0 6.0067V9.42188C1.17857 9.42188 2.29018 9.64955 3.33482 10.1049C4.37946 10.5603 5.29018 11.1763 6.06696 11.9531C6.84375 12.7165 7.45313 13.6205 7.89509 14.6652C8.35045 15.7098 8.57813 16.8214 8.57813 18H11.9933C11.9933 16.3527 11.6786 14.7991 11.0491 13.3393C10.4196 11.8795 9.5625 10.6071 8.47768 9.52232C7.39286 8.4375 6.12054 7.58036 4.66071 6.95089C3.21429 6.32143 1.66071 6.0067 0 6.0067Z"/></svg>'); }

.widget_rss .widget-title > a:first-child {
  display: none; }

.widget_rss ul li a.rsswidget {
  text-transform: uppercase;
  font-weight: 500;
  line-height: 23px;
  font-size: 14px; }

.widget_rss ul li .rss-date {
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  line-height: 22px;
  font-size: 10px; }

.widget_rss ul li a.rsswidget {
  line-height: 1.125; }

.widget_rss ul li .rssSummary {
  margin-top: 3px;
  line-height: 23px; }

.widget_rss ul li cite {
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 22px; }

.widget_rss ul li + li {
  margin-top: 30px; }

.widget_calendar .calendar_wrap {
  position: relative;
  margin: 0 -10px; }

.widget_calendar table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 10px;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  font-size: 12px;
  text-align: center; }
  .widget_calendar table th,
  .widget_calendar table td,
  .widget_calendar table thead th,
  .widget_calendar table tbody + tbody {
    border: none; }

.widget_calendar caption,
.widget_calendar tbody {
  font-size: 12px; }

.widget_calendar thead th {
  height: 34px;
  font-weight: 400;
  font-size: 12px; }

.widget_calendar caption {
  margin: 0 10px;
  padding: 20px 0 20px;
  text-transform: uppercase; }

.widget_calendar th {
  padding: 6px 5px; }

.widget_calendar tbody td,
.widget_calendar tbody td a {
  height: 34px;
  line-height: 34px; }
  .col-md-4.widget-area .widget_calendar tbody td, .col-md-4.widget-area
  .widget_calendar tbody td a {
    line-height: 55px;
    height: 55px; }

.widget_calendar tbody td a {
  display: block;
  width: 100%;
  max-width: 100%;
  border-width: 1px;
  border-style: solid; }

.widget .wp-calendar-nav {
  height: 0;
}
.widget .wp-calendar-nav .wp-calendar-nav-prev,
.widget .wp-calendar-nav .wp-calendar-nav-next {
  position: absolute;
  top: 26px; }
  .widget .wp-calendar-nav .wp-calendar-nav-prev a,
  .widget .wp-calendar-nav .wp-calendar-nav-next a {
    font-size: 0; }
    .widget .wp-calendar-nav .wp-calendar-nav-prev a:before,
    .widget .wp-calendar-nav .wp-calendar-nav-next a:before {
      content: '';
      display: inline-block;
      vertical-align: top;
      width: 7px;
      height: 8px;
      background-position: center;
      background-repeat: no-repeat;
      -webkit-transition: background-color 0.2s ease-out;
      -o-transition: background-color 0.2s ease-out;
      transition: background-color 0.2s ease-out; }

.widget .wp-calendar-nav .wp-calendar-nav-prev {
  left: 30px; }
  .widget .wp-calendar-nav .wp-calendar-nav-prev a:before {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 7 8" xmlns="http://www.w3.org/2000/svg"><path d="M6.704 7.38L0.14 4.296V3.72L6.704 0.636V1.374L1.076 4.008L6.704 6.642V7.38Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 7 8" xmlns="http://www.w3.org/2000/svg"><path d="M6.704 7.38L0.14 4.296V3.72L6.704 0.636V1.374L1.076 4.008L6.704 6.642V7.38Z"/></svg>'); }

.widget .wp-calendar-nav .wp-calendar-nav-next {
  right: 30px; }
  .widget .wp-calendar-nav .wp-calendar-nav-next a:before {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 7 8" xmlns="http://www.w3.org/2000/svg"><path d="M0.404 7.38V7.056L6.608 4.008L0.404 0.96V0.636L6.968 3.9V4.116L0.404 7.38Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 7 8" xmlns="http://www.w3.org/2000/svg"><path d="M0.404 7.38V7.056L6.608 4.008L0.404 0.96V0.636L6.968 3.9V4.116L0.404 7.38Z"/></svg>');
  }
.widget_calendar thead th {
  color: #888;
  background-color: #f8f8f8;
}

.widget_calendar caption{
  color: #222;
  background-color: #f8f8f8;
}
.wp-calendar-nav-prev a:before,
.wp-calendar-nav-next a:before {
  background-color: #888;
}
.wp-calendar-nav-prev a:hover:before,
.wp-calendar-nav-next a:hover:before {
  background-color: #222;
}

.widget_calendar tbody td#today a{
  color: #fff;
  background-color: #222;
}
.widget_calendar tbody td a {
  color: #222;
  border-color: #222;
}

.widget_calendar tbody td a:hover {
  color: #fff;
  background-color: #222;
}

.entry-content .wp-block-archives-list, .entry-content .wp-block-categories-list,
.page-content .wp-block-archives-list,
.page-content .wp-block-categories-list {
  margin-left: 0;
  list-style: none; }
  .entry-content .wp-block-archives-list li, .entry-content .wp-block-categories-list li,
  .page-content .wp-block-archives-list li,
  .page-content .wp-block-categories-list li {
    font-weight: 500;
    line-height: 22px;
    font-size: 14px; }
    .entry-content .wp-block-archives-list li a, .entry-content .wp-block-categories-list li a,
    .page-content .wp-block-archives-list li a,
    .page-content .wp-block-categories-list li a {
      display: inline-block; }
    .entry-content .wp-block-archives-list li .post_count, .entry-content .wp-block-categories-list li .post_count,
    .page-content .wp-block-archives-list li .post_count,
    .page-content .wp-block-categories-list li .post_count {
      color: #bfbfbf; }
    .entry-content .wp-block-archives-list li + li, .entry-content .wp-block-categories-list li + li,
    .page-content .wp-block-archives-list li + li,
    .page-content .wp-block-categories-list li + li {
      margin-top: 9px; }
    .entry-content .wp-block-archives-list li ul, .entry-content .wp-block-categories-list li ul,
    .page-content .wp-block-archives-list li ul,
    .page-content .wp-block-categories-list li ul {
      list-style: none;
      margin-top: 9px;
      margin-left: 25px; }

.entry-content .wp-block-latest-comments,
.page-content .wp-block-latest-comments {
  margin-left: 0; }

.entry-content .wp-block-latest-posts__list,
.page-content .wp-block-latest-posts__list {
  margin-left: 0;
  list-style: none; }
  .entry-content .wp-block-latest-posts__list:not(.is-grid) li + li,
  .page-content .wp-block-latest-posts__list:not(.is-grid) li + li {
    margin-top: 22px; }
  .entry-content .wp-block-latest-posts__list:not(.is-grid) li a,
  .page-content .wp-block-latest-posts__list:not(.is-grid) li a {
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    line-height: 1.6;
    font-size: 14px; }
  .entry-content .wp-block-latest-posts__list time,
  .page-content .wp-block-latest-posts__list time {
    margin-top: 4px;
    text-transform: uppercase;
    font-size: 10px; }

/* Tags style */
.single-post .entry-footer .tags-links a, .widget_tag_cloud .tag-cloud-link {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 10px;
  padding: 7px 11px 3px;
  text-transform: uppercase;
  line-height: 22px;
  font-size: 12px !important;
  border-width: 1px;
  border-style: solid; }

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.site-content__wrap {
	margin-top: 80px;
	margin-bottom: 80px;
}

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

.post,
.page {
  margin: 0 0 1.5em;
}

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

.entry-title {
	margin-top: 0;
	margin-bottom: 15px;
}

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

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

.wp-block-pullquote {
  border-top: 3px solid #464646;
  border-bottom: 3px solid #464646;
  padding: 2.5rem 0;
  margin-top: 1rem;
}

.error-404 .widget h2 {
  font-size: 1.25rem;
}

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

.bypostauthor {
  display: block;
}

.comment-form p label {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 1rem;
  display: block;
}

.comment-form p.comment-form-cookies-consent label {
  display: inline-block;
}

.comment-form input {
  border: 0px;
  padding: 10px 15px;
  font-size: 1rem;
  width: 100%;
}

.comment-form textarea {
  border: 0px;
  padding: 10px 15px;
  font-size: 1rem;
  width: 100%;
}

.comment-form .form-submit {
  padding-top: 10px;
}

.comment-form .form-submit input {
	border: 2px solid transparent;
	background-color: #292929;
	color: #fff;
	font-weight: 600;
}

.comment-form .form-submit input:focus {
	color: #111;
	outline: 2px solid #111;
	background-color: #fff;
}

.comments-area {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px;
  border-radius: 4px;
  background-color: #f4f4f4;
}

.comments-area .comments-title {
  font-size: 20px;
}

.comments-area .comment-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.comments-area .comment-list .comment-metadata {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 18px;
}

.comments-area .comment-list .comment-metadata .edit-link {
  margin-left: 10px;
}

.comments-area .comment-list li.comment {
  padding: 30px 0;
}

.comments-area .comment-list li.comment p:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li.comment .children {
  list-style: none;
}

.comments-area .comment-list li.comment .children li.comment {
  border-bottom: 0px;
  padding-bottom: 0;
}

.comments-area .comment-list .reply {
  font-size: 14px;
  margin-top: 10px;
}

.comments-area .comment-list .comment-author.vcard img {
  margin-right: 5px;
  margin-bottom: 5px;
}

.comments-area .comment-reply-title {
  font-size: 20px;
  margin-top: 0px;
}

.comments-area .comment-reply-title small {
  font-size: 14px;
  margin-left: 15px;
}

.comments-area .comment-notes {
  font-size: 16px;
  line-height: 20px;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

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

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Custom
--------------------------------------------------------------*/
body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  line-height: 1.45;
  word-wrap: break-word;
  font-size: 1rem;
  line-height: 1.8;
  color: #464646;
}

p {
  margin-bottom: 1.3rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h1-style,
.h2,
.h2-style,
.h3,
.h3-style,
.h4,
.h4-style,
.h5,
.h5-style,
.h6,
.h6-style {
  font-family: 'Montserrat';
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: #1e73be;
}

a,
button,
input {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
	display: inline-block;
	max-width: 100%;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	text-decoration: none;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	transition: all 0.2s ease-in-out;
}

button:focus,
input[type='button']:focus,
input[type='reset']:focus,
input[type='submit']:focus {
	color: #111;
	outline: 2px solid #111;
	background-color: #fff;
}

.entry-title,
.entry-title a {
  color: #181818;
  font-size: 2.5rem;
  text-align: center;
}

.entry-title a:hover {
  color: #464646;
}

.site-main .post, .site-main .page {
  margin-bottom: 4rem;
  margin-top: 0;
}

body.page {
  margin-bottom: 0;
}

.main-navigation {
  font-weight: 600;
  font-size: 0.9rem;
}

.main-navigation .menu > li {
	margin-left: 30px;
}

.entry-meta-cats {
  text-align: center;
  margin-bottom: 10px;
}

.entry-meta-cats a {
  margin: 0 4px;
  display: inline-block;
  font-family: 'Covered By Your Grace';
  font-weight: 400;
  text-transform: none;
  font-size: 1.15rem;
}

.entry-meta {
  font-size: 0.8rem;
  text-align: center;
  padding: 5px 0 10px;
  letter-spacing: -0.25px;
}

.entry-meta span + span:before {
    display: inline-block;
    margin-right: 7px;
    margin-left: 7px;
    content: '|';
    vertical-align: top;
    font-weight: 400;
}

.entry-meta,
.entry-meta a {
  color: #ccc;
}

.entry-meta a:hover {
  color: #1e73be;
}

.entry-footer {
  font-size: 0.95rem;
  padding: 10px 0px;
  color: #949494;
  letter-spacing: -0.25px;
}

.entry-footer .cat-links, .entry-footer .tags-links {
  margin-right: 15px;
}

a.post-thumbnail {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  text-align: center;
}

a.post-thumbnail .attachment-post-thumbnail {
  border-radius: 4px;
  -webkit-transition: all 0.75s ease-in-out;
  -o-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}

a.post-thumbnail .attachment-post-thumbnail:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.read-more-btn .btn {
  background: #1e73be;
  padding: 0.375rem 1.25rem;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: 600;
}

.read-more-btn .btn:hover {
  background: #292929;
  color: #fff;
}

.site-footer {
  padding: 30px 0;
  text-align: center;
  background: #292929;
  font-size: 0.95rem;
  color: #949494;
}

.page-header-row {
  background: #292929;
}

.page-header-row .entry-header {
  padding: 90px 0 30px;
  color: #949494;
}

.page-header-row .entry-header h1 {
  color: #fff;
  line-height: 1.5;
}

.page-header {
  padding: 90px 0;
  color: #949494;
}

.page-header .h1-style {
  font-size: 2rem;
  color: #fff;
}

.single article.has-post-thumbnail {
  margin-top: 0;
}

#main {
  padding-top: 0;
}

.post-thumb-row {
  background: #292929;
  position: relative;
}

.post-thumb-row:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #fff;
}

div.post-thumbnail {
  margin-left: -100px;
  margin-right: -100px;
  border-radius: 4px;
  text-align: center;
}

div.post-thumbnail .attachment-post-thumbnail {
  border-radius: 4px;
}

.hero-row {
  background-color: #292929;
  color: #949494;
  padding: 180px 0;
}

.hero-row.has-header-image {
  background: rgba(41, 41, 41, 0.5);
  color: #c4c4c4;
}

.hero-row .hero-title {
  color: #fff;
  line-height: 1.5;
}

.hero-row .hero-desc {
  font-size: 1.2rem;
}

.hero-row .hero-btn {
  background-color: #1e73be;
  color: #292929;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.main-navigation ul ul {
  background: #111;
  text-align: left;
  line-height: 1.5;
  padding-bottom: 15px;
}

.main-navigation ul ul li {
	padding: 8px 30px;
}

.nav-links {
  font-family: 'Montserrat';
  font-weight: 700;
  line-height: 1.25;
  font-size: 0.95rem;
}

.container {
  background-color: #fff;
}

figcaption {
  font-size: 85%;
  color: #949494;
  text-align: center;
  font-style: italic;
}

.alignwide {
  margin-left: -130px;
  margin-right: -130px;
  max-width: 100vw;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw;
  width: 100vw;
}

.alignfull:not(.wp-block-media-text) img {
  width: 100vw;
}

.alignwide.wp-block-cover {
  width: 1010px;
}

/* Media Queries */
@media (max-width: 767px) {
  .site-header {
    line-height: 1.5;
  }
  .site-description {
    margin-left: 0;
    margin-bottom: 15px;
  }
  .menu-toggle {
    margin-right: 0;
  }
  .main-navigation {
    text-align: left;
  }
  .main-navigation li {
    display: block;
    margin-top: 15px;
  }
  .main-navigation a {
    margin-left: 0;
  }
  a.post-thumbnail {
    margin-left: 0;
    margin-right: 0;
  }
  html {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .site-header {
    line-height: 1.5;
    padding-bottom: 15px;
  }
  .site-description {
    margin-left: 0;
  }
  .site-title {
    margin-top: 15px;
    display: block;
  }
  html {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .alignwide {
    margin-left: 0px;
    margin-right: 0px;
    max-width: 100vw;
  }
  .alignfull {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: 100vw;
  }
  .alignfull img {
    width: 100vw;
  }
  .alignwide.wp-block-cover {
    width: 100%;
  }
  div.post-thumbnail {
    margin-left: 0px;
    margin-right: 0px;
  }
  .comments-area {
    padding: 20px;
  }
  .entry-title, .entry-title a {
    font-size: 1.75rem;
  }
  .page-header-row .entry-header {
    padding: 30px 0 30px 0;
  }
}
