/*
 Theme Name:   Atomic-Blocks Child
 Theme URI:    http://example.com/atomic-blocks-child/
 Description:  Atomic-Blocks Child Theme for Usha Bilotta
 Author:       J. Hogue
 Author URI:   http://highchairdesign.com
 Template:     atomic-blocks
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, responsive-layout, bootstrap
 Text Domain:  atomicblockschild

 bp__sm: 30em; 80px
 bp__md: 40em; 640px
 bp__lg: 60em; 960px
 bp__xl: 80em; 1280px
*/

/* Google Font */
@import url('https://fonts.googleapis.com/css?family=Gelasio:400,400i,600|Lato:300&display=swap');

/* Root variables to use often */
:root {
  /* Typography */
  --ff: 'Gelasio', Georgia, serif;
  --fw__normal: 400;
  --fw__italic: 400i;
  --fw__bold: 600;
  
  --ff__sans: 'Lato', HelveticaNeue, 'Helvetica Neue', sans-serif;
  --fw__sans-normal: 300;
  
  --lh: 1.5;
  --lh__tight: 1.25;
  
  /* Breakpoints in calculations only */
  --bp__sm: 30;
  --bp__md: 40;
  --bp__lg: 60;
  --bp__xl: 80;

  /* Colors */
  --c__warm-black:    hsl(304, 5%, 15%);
  --c__purple-deeper: hsl(304, 5%, 24%);
  --c__purple-deep:   hsl(304, 12%, 30%);
  --c__purple:        hsl(304, 14%, 35%);
  --c__purple-bright: hsl(304, 33%, 42%);
  --c__purple-light:  hsl(304, 3%, 95%); /* f2ebf1 */
  
  --c__gray-200:      hsl(304, 6%, 10%);
  --c__gray-400:      hsl(304, 5%, 15%);
  --c__gray-600:      hsl(304, 4%, 40%);
  --c__gray-700:      hsl(304, 4%, 55%);
  --c__gray-900:      hsl(304, 4%, 68%);
  
  --c__moss:          hsl(84, 36%, 45%);
  --c__moss-light:    hsl(84, 10%, 95%); /* e9f2da */
  --c__highlight: #d9cd35; /* yellow */
  --c__highlight-light: #fcf39c;
  --c__borders: #ddd;
}

body {
  --fs__min: 1.125;
  --fs__max: 1.25;
  
  /* Spacing */
  --s__gutter--min: 1;
  --s__gutter--max: 3;
  --s__vertical--rem: calc(var(--lh) * 1rem);
}

h1,
.h1 {
  --fs__min: 2.0625;
  --fs__max: 3.25;
}

h2,
.h2 {
--fs__min: 1.8125;
--fs__max: 2.6875;
}

h3,
.h3 {
  --fs__min: 1.625;
  --fs__max: 2.25;
}

h4,
.h4 {
  --fs__min: 1.4375;
  --fs__max: 1.875;
}

h5,
.h5,
blockquote p,
table caption,
legend {
  --fs__min: 1.25;
  --fs__max: 1.5625;
}

h6,
.h6 {
  --fs__min: 1.125;
  --fs__max: 1.3125;
}

i, em, cite, figcaption {
  font-weight: var(--fw__italic);
  font-style: italic;
}

var, dfn {
  font-style: normal;
}

b, strong, dt {
  font-weight: var(--fw__bold);
}

/* --------------------------------------------------------------
! 1.0 - Reset
-------------------------------------------------------------- */
*,::before,::after {
	box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, li, blockquote, figure, figcaption, dl, dd, form, table, address {
	margin: 0;
}

html {
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

@-ms-viewport {
  width: device-width;
}

html,
body {
  overflow-x: hidden;
}

body {
	background-color: #fff;
	color: var(--c__purple-deep);
	font-family: var(--ff);
	font-size: 100%;
	font-weight: var(--fw__normal);
	line-height: var(--lh);
	min-height: 100vh;
	text-align: left;
	text-rendering: optimizeSpeed;
}

@media (min-width: 40em) {
	body {
		text-rendering: optimizeLegibility;
	}
}

.list-unstyled {
	list-style: none;
	margin: 0;
	padding: 0;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

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

input, button, textarea, select {
	font: inherit;
}

a {
	color: var(--c__purple);
	text-decoration: none;
	background-color: transparent;
	transition: 250ms all ease;
	-webkit-text-decoration-skip: objects;
}

a:hover,
a:focus {
	color: var(--c__purple-bright);
	text-decoration: none;
}

a:active {
	color: var(--c__purple-bright);
}

a:focus {
	outline: 2px solid var(--c__purple-bright);
	outline-offset: 2px;
}

a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
	outline: 0;
}

[tabindex="-1"]:focus {
	outline: 0!important;
}

@media (prefers-reduced-motion: reduce) {
	* {
		-webkit-animation-duration: .01ms !important;
		animation-duration: .01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		-webkit-transition-duration: .01ms !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}

/* --------------------------------------------------------------
! 2.0 Typography
-------------------------------------------------------------- */
h1, .h1 {
  letter-spacing: .015625em;
  font-weight: var(--fw__normal);
}

h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
table caption,
legend {
  font-weight: var(--fw__bold);
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
table caption,
legend {
  color: var(--c__purple);
  line-height: var(--lh__tight);
}

h2, .h2 {
  color: var(--c__moss);
  font-family: var(--ff__sans);
  font-weight: var(--fw__sans-normal);
}

/* Start fluid typography */
body,
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
table caption,
legend {
  font-size: calc(var(--fs__min) * 1rem);
}

@media (min-width: 30em) {
  body,
  h1, .h1,
  h2, .h2,
  h3, .h3,
  h4, .h4,
  h5, .h5,
  h6, .h6,
  table caption,
  legend {
    font-size: calc(( var(--fs__min) * 1rem ) + ( var(--fs__max) - var(--fs__min) ) * ((100vw - var(--bp__sm) * 1rem) / ( var(--bp__xl) - var(--bp__sm) )));
  }
}

@media (min-width: 80em) {
  body,
  h1, .h1,
  h2, .h2,
  h3, .h3,
  h4, .h4,
  h5, .h5,
  h6, .h6,
  table caption,
  legend {
    font-size: calc(var(--fs__max) * 1rem);
  }
}
/* End fluid typography */

blockquote {
  color: var(--c__gray-600);
  font-weight: var(--fw__bold);
  margin: calc(var(--lh) * 1em) 0;
  position: relative;
  padding: 0 0 0 1.5em;
  border-left: var(--c__purple-bright) solid 0.375em;
}

blockquote cite {
  display: block;
}

pre, code, kbd, samp, tt, var {
  color: var(--c__purple-deep);
  font-family: Consolas, "Andale Mono", monospace;
  font-size: 0.9375em;
}

pre {
  background-color: rgba(216,230,195,0.5);/* #d8e6c3 */
  color: var(--c__moss);
  overflow: auto;
  padding: calc(var(--lh) * 1em);
}

code, samp, kbd {
  display: inline-block;
  padding: 0.125em 0.375em;
}

code {
  background-color: rgba(216,230,195,0.5);
  border-radius: 3px;
  color: var(--c__moss);
}

pre code {
  background-color: transparent;
  display: inline;
}

samp, kbd {
  background-color: #f1f1f1;
}

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

mark, ins {
  text-decoration: none;
}

mark {
  background-color: var(--c__highlight-light);
}

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

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}*/

small {
  font-size: 75%;
}

.highlight {
  background: var(--c__highlight);
}

/* dl */
dt {
  border-bottom: 2px solid var(--c__borders);
  padding-bottom: calc(var(--s__vertical--rem)/4);
  margin-bottom: calc(var(--s__vertical--rem)/4);
}

dd {
  padding-right: var(--s__vertical--rem);
  padding-bottom: var(--s__vertical--rem);
  padding-left: var(--s__vertical--rem);
}

figcaption {
  padding-top: calc(var(--s__vertical--rem)/2);
  padding-bottom: calc(var(--s__vertical--rem)/2);
}

.has-drop-cap:not(:focus)::first-letter {
  color: var(--c__moss);
  font-family: var(--ff__sans);
  font-size: 5.5em;
  font-weight: var(--fw__sans-normal);
  margin: 0.05em 0.33em 0.15em 0;
  /*line-height: .68;
  text-transform: uppercase;
  font-style: normal*/
}

/* --------------------------------------------------------------
! Entry Content styles
-------------------------------------------------------------- */
.entry-content * + *,
.page-template-template-builder .wp-block-group__inner-container * + *,
fieldset + fieldset {
	margin-top: calc(var(--lh) * 1em);
}

.entry-content li + li,
.page-template-template-builder .wp-block-group__inner-container li + li {
  margin-top: 0;
}

.entry-content * + p,
.page-template-template-builder .wp-block-group__inner-container * + p {
  margin-bottom: -1.5px;
}

.entry-content * + h1,
.page-template-template-builder .wp-block-group__inner-container * + h1 {
  margin-top: 1.1875em;
  line-height: 1.0625;
}

.entry-content h1 + p,
.page-template-template-builder .wp-block-group__inner-container h1 + p {
  margin-top: 1.0625em;
}

.entry-content * + h2,
.page-template-template-builder .wp-block-group__inner-container * + h2 {
  margin-top: 0.75em;
  line-height: 1.285;
}

.entry-content h2 + p,
.page-template-template-builder .wp-block-group__inner-container h2 + p {
  margin-top: 1.0625em;
}

.entry-content * + h3,
.page-template-template-builder .wp-block-group__inner-container * + h3 {
  margin-top: 1.0625em;
  line-height: 1.125;
}

.entry-content h3 + p,
.page-template-template-builder .wp-block-group__inner-container h3 + p {
  margin-top: 1.375em;
}

.entry-content h4 + p,
.page-template-template-builder .wp-block-group__inner-container h4 + p {
  margin-top: -0.125em;
}

.entry-content h5 + p,
.entry-content h6 + p,
.page-template-template-builder .wp-block-group__inner-container h5 + p,
.page-template-template-builder .wp-block-group__inner-container h6 + p {
  margin-top: 0;
}

.entry-content * + h5,
.page-template-template-builder .wp-block-group__inner-container * + h5 {
  margin-top: 1em;
  line-height: 1.125;
}

.entry-content * + h6,
.page-template-template-builder .wp-block-group__inner-container * + h6 {
  margin-top: 1.25em;
}

.entry-content a,
.page-template-template-builder .wp-block-group__inner-container a {
  border-bottom: 2px solid var(--c__purple-bright);
}

.entry-content a:hover,
.entry-content a:focus,
.page-template-template-builder .wp-block-group__inner-container a:hover,
.page-template-template-builder .wp-block-group__inner-container a:focus {
  border-bottom: 2px solid var(--c__borders);
}

/* Vertical rhythm testing
.post .entry-content {
	background: linear-gradient(#c0c 0px, #fff 1px) repeat;
  background-size: 100% 27px;
  padding-top: 7px;
} */

/* --------------------------------------------------------------
! 3.0 Elements
-------------------------------------------------------------- */
hr,
.wp-block-separator {
  background-color: transparent;
  border: 0;
  height: 0px;
  margin: 2em 0;
  max-width: 100%;
  border: solid 1px #ddd;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

ul ul, ol ol, ul ol, ol ul {}

.hide-sub {
  display: none !important;
}

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

/* Tables */
table {
  padding: 0;
  width: 100%;
}

table caption {
  text-align: left;
}

table thead {
  background: #f2f2f2;
}
table thead th {
  font-weight: var(--fw__bold);
}

table td, #content table th {
  padding: 0.9375rem;
}

table td {
  border-bottom: solid 1px #f2f2f2;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:nth-child(even) {
  background: #f2f2f2;
}

/* quotes */
blockquote, q {
  quotes: "“" "”";
  text-indent: -0.5em;
}

@supports (hanging-punctuation: first) {
  blockquote {
    text-indent: 0;
    hanging-punctuation: first allow-end;
  }
}

q q {
  quotes: "‘" "’";
}

blockquote q {
  quotes: "‘" "’" "“" "”";
}

blockquote p:first-of-type {
  display: inline;
}

blockquote::before, q::before {
    content: open-quote;
}

q::after {
    content: close-quote;
}

/* --------------------------------------------------------------
! 4.0 Form Elements
-------------------------------------------------------------- */
form {
  display: inline-block;
  width: 100%;
}

label,
legend, 
button,
.button {
  font-family: var(--ff__sans);
  font-weight: var(--fw__sans-normal);
}

button,
input,
textarea,
select {
  font-size: 100%;
  margin: 0;
  padding: 0.375em 0.75em;
  vertical-align: baseline;
  *vertical-align: middle;
  -webkit-appearance: none;
}

select {
  -webkit-appearance: normal;
}

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

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

input[type="checkbox"] {
  -webkit-appearance: checkbox !important;
}

input[type="radio"] {
  -webkit-appearance: radio !important;
}

input[type="radio"] + label,
input[type="checkbox"] + label,
label ~ input[type="checkbox"] {
  width: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
}

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

.searchform {
  position: relative;
}

.searchform .search-input {
  width: 100%;
  font-size: 1rem;
}

.searchform .searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: transparent !important;
  background-color: none !important;
  border: 0;
  color: #627083;
  padding: 0.5rem 0.9375rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.searchform .searchsubmit:hover {
  color: #272c30;
}

.searchform .searchsubmit i {
  -webkit-font-smoothing: antialiased;
  line-height: 1.3;
  font-size: 1rem;
  vertical-align: top;
}

@media (max-width: 60em) {
  .searchform .searchsubmit i {
    line-height: 1;
  }
}

@media (max-width: 60em) {
  .searchform .searchsubmit span {
    display: none;
  }
}

.widget-area .searchform .searchsubmit span {
  display: none;
}

.results-search {
  background: #fff;
  padding: 3% 5% 4% 5%;
  margin-top: 9%;
  box-shadow: 0 5px 35px rgba(50, 50, 93, 0.1), 0 0px 5px rgba(0, 0, 0, 0.07);
}

.search-no-results .results-search {
  margin-top: 5%;
}

.results-search h4 {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}

.results-search .searchform #s,
.results-search .searchsubmit {
  font-size: 24px;
}

@media (max-width: 60em) {
  .results-search .searchform #s,
  .results-search .searchsubmit {
    font-size: 1rem;
  }
}

.results-search .searchsubmit {
  padding-top: 0;
  padding-bottom: 0;
}

.results-search .searchsubmit span {
  display: none;
}

/*.results-search .searchsubmit i {
  font-size: 24px;
  line-height: 1.6;
}

@media (max-width: 60em) {
  .results-search .searchsubmit i {
    line-height: 1.7;
  }
}*/

.field-wrap {
  margin-bottom: 1.4em;
}

@media (max-width: 60em) {
  .field-wrap {
    margin-bottom: 1em;
  }
}

/* Input styles */
input:not([type="radio"]),
input:not([type="checkbox"]),
textarea,
select,
.select2-container .select2-selection--single {
  background: #fff;
  border: 1px solid var(--c__borders);
  color: var(--c__gray-600);
  display: inline-block;
  transition: 250ms ease-in-out;
  border-radius: 3px;
  width: 100%;
}

input[type="radio"],
input[type="checkbox"] {
  padding: 0;
  width: auto;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  margin-left: 0.5rem;
}

input:hover,
textarea:hover {
  border-color: var(--c__primary-bright);
}

input:focus,
textarea:focus {
  border-color: var(--c__primary-bright);
  color: var(--c__purple-deep);
}

/*input[type="number"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="tel"],
input[type="time"],
input[type="month"],
input[type="tel"] {
  width: auto;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: inset 0 0 4px 2px #F4F8FB;
  border-color: #abb4bb;
  color: #272c30;
}

select {
  background: #fff url("images/angle-down.jpg") right no-repeat;
  background-size: 0.75rem;
  background-position: right 0.9375rem top 1.25rem;
}

select:hover {
  border-color: #D5DDE4;
  cursor: pointer;
}

@media (max-width: 60em) {
  select {
    background-position: right 0.9375rem top 17px;
  }
}

select:after {
  content: "x";
}

select[multiple] {
  background: none;
}*/

@media (max-width: 60em) {
  input[name="post_password"] {
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
  }
}

textarea {
  overflow: auto;
  vertical-align: top;
}

fieldset legend {
  display: inline-block;
  margin-bottom: var(--s__vertical--rem);
  font-weight: var(--fw__bold);
}

form label {
  display: inline-block;
}

/* Specific Form: The Contact Form */
.wpcf7-form label {
  /* They place the inputs INSIDE the label, which… gah */
  display: block;
}

.wpcf7-form input[type="submit"] {
  cursor: pointer;
}

::-webkit-input-placeholder {
  color: var(--c__gray-700);
  font-style: italic;
}

:-moz-placeholder {
  color: var(--c__gray-700);
  font-style: italic;
}

::-moz-placeholder {
  color: var(--c__gray-700);
  font-style: italic;
}

:-ms-input-placeholder {
  color: var(--c__gray-700);
  font-style: italic;
}

#main .contact-form {
  display: inline-block;
  width: 100%;
}

#main .contact-form label {
  font-weight: normal;
}

#main .contact-form label span {
  color: var(--c__gray-600);
}

/* Buttons */
.button {
  background-color: var(--c__purple-deep) !important;
  border: 0 !important;
  border-radius: 3px;
  color: #fff !important;
  display: inline-block;
  padding: 0.375em 0.75em;
  width: auto !important;
  -webkit-appearance: none;
}

.button + .button {
  margin-left: 0.5em;
}

.button:hover,
.button:focus {
  background-color: var(--c__gray-700) !important;
  cursor: pointer;
}

.button--primary {
  background-color: var(--c__purple-bright) !important;
  color: #fff !important;
}

.button--primary:hover,
.button--primary:focus {
  background-color: var(--c__purple) !important;
}

#main .contact-form input[type='text'], 
#main .contact-form input[type='email'] {
  margin-bottom: 4%;
  width: 100%;
  max-width: 100%;
}

#main .contact-form textarea {
  margin-bottom: 4%;
  width: 100%;
}

#main .contact-form .contact-submit {
  margin-bottom: 0;
}

.contact-column {
  display: inline-block;
  float: left;
  width: 48%;
  margin-left: 0;
}

.contact-column:last-child {
  margin-left: 4%;
}

@media (max-width: 60em) {
  .contact-column {
    width: 100%;
  }
  .contact-column:last-child {
    margin-left: 0;
  }
}

.index-posts.archive-posts .post {
  width: 100%;
  margin-right: 0;
  padding-bottom: 5%;
  border-bottom: solid 1px #d7dee3;
}

.index-posts.archive-posts .post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.index-posts.archive-posts .featured-image {
  display: inline-block;
  width: 31%;
  vertical-align: top;
  margin-bottom: 0;
}

.index-posts.archive-posts .featured-image + .post-text {
  display: inline-block;
  width: 68%;
  padding-left: 3.5%;
  vertical-align: top;
}

#page .more-link {
  display: inline-block;
  margin-bottom: 0;
  padding: 6px 0.9375rem;
  border-radius: 30px;
  font-size: 1rem;
  box-shadow: none;
  font-weight: var(--fw__bold);
  color: #272c30;
  border: solid 2px;
}

#page .more-link:hover {
  color: var(--c__purple-bright);
}

.index-posts .more-link {
  float: right;
}

/* --------------------------------------------------------------
5.0 Navigation
-------------------------------------------------------------- */
.home-nav {
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.35);
  font-size: 1rem;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: #fff;
  transition: -webkit-transform 400ms linear;
  transition: transform 400ms linear;
  -webkit-transform: translateY(-200%);
      -ms-transform: translateY(-200%);
          transform: translateY(-200%);
}
@media only screen and (max-width: 60em) {
  .home-nav {
    display: none;
  }
}

.home-nav a {
  color: #272c30;
}

.home-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.home-nav li {
  display: inline-block;
}

.home .home-nav a {
  padding: 1.25rem 0;
  margin: 0 0.9375rem;
  display: inline-block;
  border-bottom: solid 3px transparent;
  margin-bottom: -1px;
  transition: .4s ease;
}

.home .home-nav a:hover {
  border-bottom-color: #c4cdd3;
}

.home .home-nav a:active, .home .home-nav a:focus {
  outline: none;
}

.home-nav .active,
.home-nav .active:hover {
  border-bottom-color: var(--c__purple-bright);
}

.admin-bar .home-nav {
  top: 32px;
}

@media only screen and (max-width: 782px) {
  .admin-bar .home-nav {
    top: 46px;
  }
}

.show-nav {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.sticky-title {
  display: inline-block;
  width: 100%;
  text-align: center;
  vertical-align: top;
  font-size: 1.125rem;
  font-weight: var(--fw__bold);
  margin: 4px 0 0 0;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  position: relative;
}

.sticky-title:hover {
  cursor: pointer;
}

.sticky-title:hover:before {
  color: #62707c;
}

.sticky-title:before {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-size: 0.875rem;
  vertical-align: top;
  margin-right: 6px;
}

.single-nav {
  padding: 1.25rem 9.2%;
}

.single-nav .sd-title {
  display: none !important;
}

.single-nav .sharedaddy {
  float: right;
  vertical-align: top;
  clear: none !important;
}

.single-nav .sd-content ul li {
  margin: 0 3px;
}

.single-nav .sd-social-icon .sd-content ul li[class*='share-'] a.sd-button {
  margin: 0;
}

/* --------------------------------------------------------------
! 5.2 Menus
-------------------------------------------------------------- */
.search-drawer {
  display: none;
  background: #fff;
}

.search-drawer .search-input {
  border: none;
  text-align: center;
  font-size: 1.875rem;
}

.search-drawer .search-input:focus,
.search-drawer .search-input:active {
  box-shadow: none;
  background: transparent;
}

.search-drawer .searchsubmit {
  margin-right: -0.9375rem;
}

.search-drawer .searchsubmit:focus, .search-drawer .searchsubmit:active {
  box-shadow: none;
}

.search-drawer .searchsubmit i {
  font-size: 1.125rem;
}

.search-drawer .searchsubmit span {
  display: none;
}

.search-toggle {
  text-align: center;
  width: 1.25rem;
}

@media only screen and (min-width: 60em) {
  .search-toggle {
    display: none;
  }
}

.search-toggle .fa-times {
  display: none;
}

.search-toggle:hover {
  color: #62707c;
  cursor: pointer;
}

@media (max-width: 60em) {
  .search-toggle {
    display: none;
  }
}

.search-toggle i {
  margin-right: 2px;
  text-align: center;
}

.search-toggle i.fa-times {
  margin-right: 0;
}

.menu-toggle {
  display: none;
}

@media (max-width: 60em) {
  .menu-toggle {
    display: block;
  }
}

.button-toggle {
  background: var(--c__gray-200);
  color: #fff;
  padding: 0.5rem 1rem;
}

.button-toggle span:not(:first-child) {
  display: none;
}

.button-toggle:hover, .button-toggle:active, .button-toggle:focus {
  box-shadow: none;
  color: #fff;
}

.social-navigation + .drawer-toggle {
  border-left: solid 2px #eee;
}

@media (max-width: 60em) {
  .social-navigation + .drawer-toggle {
    border-left: none;
  }
}

.drawer-menu-toggle {
  display: none;
}

@media (max-width: 60em) {
  .drawer-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 60em) {
  .search-toggle {
    display: none;
  }
}

.drawer-toggle-switch span:first-child {
  display: none;
}

.drawer-toggle-switch span:last-child {
  display: block;
}

.main-navigation {
  font-weight: var(--fw__bold);
  width: 70%;
}

@media (max-width: 60em) {
  .main-navigation {
    display: none;
  }
}

.top-navigation .main-navigation {
  width: 100%;
  text-align: right;
}

@media (max-width: 60em) {
  .top-navigation .main-navigation {
    display: none;
    border-bottom: none;
  }
}

.site-header .container,
.site-footer .container {
  max-width: 1440px;
  padding: 0 2rem;
}

.header-text {
  position: relative;
  z-index: 5;
  margin: 5% auto;
  text-align: center;
  max-width: 70%;
}

.header-text:empty,
.blog .header-text {
  display: none;
}

@media (max-width: 60em) {
  .header-text {
    max-width: 100%;
    margin-bottom: 6%;
    margin-top: 0;
  }
}

@media (max-width: 40em) {
  .header-text {
    margin-bottom: 8%;
  }
}

.header-text:empty {
  margin-bottom: 0;
}

.header-text h1,
.header-text .browsing {
  color: #fff;
  margin-bottom: 0;
  display: inline-block;
  font-weight: var(--fw__bold);
}

@media only screen and (max-width: 500px) {
  .header-text h1, .header-text .browsing {
    font-size: 20.5rem;
  }
}

.header-text p {
  position: relative;
  margin: 0 0 0 0;
}

@media (max-width: 60em) {
  .header-text p {
    font-size: 1.25rem;
  }
}

@media (max-width: 40em) {
  .header-text p {
    font-size: 1rem;
    margin-top: 3%;
  }
}

.header-text a {
  color: var(--c__purple-bright);
  box-shadow: inset 0 -1px 0 var(--c__purple-bright);
  transition: .3s ease;
}

.header-text a:hover {
  box-shadow: inset 0 -2px 0 var(--c__purple-bright);
  color: var(--c__purple-bright);
}

.header-text .entry-subtitle,
.header-text .entry-byline {
  margin-top: 1%;
  width: 100%;
}

.archive.author .browsing,
.search-results .browsing,
.text-empty,
.header-text h2:empty,
.header-text p:empty {
  display: none;
}

.top-navigation {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 10;
}

.top-navigation-right {
  margin-left: auto;
}

@media (max-width: 60em) {
  .top-navigation-right {
    display: none;
  }
}

#secondary-navigation {
  display: inline-block;
  width: 60%;
}

.drawer #secondary-navigation {
  width: 100%;
  font-size: 0.875rem;
}

.drawer #secondary-navigation li ul li a {
  font-size: 0.875rem;
}

@media (max-width: 60em) {
  .top-navigation #secondary-navigation {
    display: none;
  }
}

.top-navigation .secondary-navigation ul li {
  font-size: 0.875rem;
  margin-right: 0.9375rem;
  padding: 0;
}

.top-navigation .secondary-navigation ul li a {
  padding: 0.75rem 0;
  border-bottom-width: 0;
  margin: 0;
}

.top-navigation .secondary-navigation ul li .sub-menu a {
  padding: 0.75rem 0.9375rem;
}

.secondary-navigation ul.sub-menu {
  background: #272c30;
  top: 52px;
  left: -0.9375rem;
  border: none;
}

.secondary-navigation ul.sub-menu li {
  margin-right: 0;
  padding: 0;
}

.secondary-navigation ul.sub-menu li a {
  font-size: 0.875rem;
}

.secondary-navigation ul.sub-menu li a:hover {
  color: #fff;
  opacity: 1;
}

.main-navigation a {
  color: var(--c__gray-900);
  font-size: 1rem;
  transition: .3s ease;
}

.main-navigation li:hover > a,
.main-navigation a:hover {
  color: var(--c__moss);
}

.main-navigation ul {
  margin: 0;
  padding-left: 0;
}

.main-navigation ul li {
  display: inline-block;
  list-style-type: none;
  padding: 0 0.75rem;
  position: relative;
}

.main-navigation ul li a {
  display: block;
}

.main-navigation ul li a:active, .main-navigation ul li a:focus {
  outline: none;
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current-page-item a {
  color: #fff;
}

.main-navigation ul li.current-menu-item ul a,
.main-navigation ul li.current-page-item ul a {
  color: var(--c__gray-700);
}

.main-navigation ul .sub-menu li.current-menu-item a,
.main-navigation ul .sub-menu li.current-page-item a {
  color: #fff;
}

.main-navigation .menu-cta a {
  border: solid 1px #fff;
  border-color: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  padding: 2px 10px;
}

.main-navigation .menu-cta a:hover {
  color: #272c30;
  background: #fff;
}

.site-identity .main-navigation ul {
  line-height: 3;
}

.site-header .menu-item-has-children,
.site-header .page_item_has_children {
  position: relative;
}

.site-header .menu-item-has-children a,
.site-header .page_item_has_children a {
  position: relative;
}

.site-header .menu-item-has-children > a:after,
.site-header .page_item_has_children > a:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-left: 5px;
  right: 0;
  font-size: 13px;
}

@media (max-width: 60em) {
  .site-header .menu-item-has-children > a:after,
  .site-header .page_item_has_children > a:after {
    display: none;
    pointer-events: none;
  }
}

.sub-menu .menu-item-has-children > a:after,
.sub-menu .page_item_has_children > a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
}

.widget .sub-menu .menu-item-has-children > a:after,
.widget .sub-menu .page_item_has_children > a:after {
  display: none;
}

.secondary-navigation .menu-item-has-children:after,
.secondary-navigation .page_item_has_children:after {
  color: #a6b5c1;
  top: 0.9375rem;
}

.drawer .menu-item-has-children .toggle-sub {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.125rem;
  padding: 0.8125rem 0;
  line-height: 1.4;
  text-align: center;
  z-index: 75;
  display: block;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  background: var(--c__purple-deeper);
  border-radius: 0;
  border: 0;
}

.drawer .menu-item-has-children .toggle-sub:hover {
  box-shadow: none;
  color: #fff;
}

.drawer .drawer-navigation .drop-open ul.drop-active {
  display: block;
}

.site-header .menu-item-has-children:hover {
  cursor: pointer;
}

.site-header .menu-item-has-children:hover ul {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.main-navigation .sub-menu,
.main-navigation .children {
  position: absolute;
  width: 280px;
  top: 100%;
  left: 0;
  text-align: left;
  font-weight: 400;
  font-size: 0.875rem;
  margin: 0;
  background: var(--c__warm-black);
  left: -999em;
  z-index: 100;
  border-radius: 3px;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.main-navigation li ul {
  z-index: 100;
}

.main-navigation li ul li {
  padding: 0;
  margin: 0;
  width: 100%;
  margin-top: 0;
  border-top: none;
  transition: .3s ease;
}

.main-navigation li ul li:hover {
  background: rgba(255, 255, 255, 0.02);
  border-top: none;
}

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

.main-navigation li ul li:last-child a {
  border-bottom: none;
}

.main-navigation li ul a,
.main-navigation li ul li a {
  width: 100%;
  display: inline-block;
  border-bottom: dotted 1px rgba(255, 255, 255, 0.15);
  padding: 0.9375rem 1.25rem;
  margin: 0;
  font-weight: normal;
  text-transform: none;
  line-height: 1.6;
  color: #b8bfcb;
}

.main-navigation li ul a:hover,
.main-navigation li ul li a:hover {
  color: #fff;
}

.main-navigation li ul li ul {
  padding: 0;
}

.main-navigation ul ul {
  top: 0;
}

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

.main-navigation li ul ul.sub-menu,
.main-navigation li ul ul.children {
  top: 0;
  margin: 0;
  z-index: 50;
  position: absolute;
  margin-left: 1px !important;
}

.main-navigation li ul ul.sub-menu:before,
.main-navigation li ul ul.children:before {
  display: none;
}

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

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

.site-header .sub-menu:before {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  margin-left: -0.5rem;
  content: " ";
  display: block;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #181c1f;
  border-left: 0.5rem solid transparent;
}

/* Mobile navigation */
.mobile-navigation {
  display: none;
  text-align: center;
}

.mobile-navigation button {
  border: 0;
  width: 100%;
}

@media (max-width: 60em) {
  .mobile-navigation {
    display: block;
  }
}

.toggle-active {
  background: var(--c__purple-bright);
}

.drawer .drawer-navigation {
  width: 100%;
  max-width: 100%;
  z-index: 40;
  position: relative;
}

@media (max-width: 60em) {
  .drawer .drawer-navigation {
    font-size: 1rem;
    display: inline-block;
  }
}

.drawer .drawer-navigation .menu {
  margin: 0;
}

.drawer .drawer-navigation ul {
  margin: 0;
  padding: 0;
}

.drawer .drawer-navigation ul li {
  width: 100%;
  padding: 0 0;
  list-style-type: none;
  border-bottom: dotted 1px rgba(255, 255, 255, 0.2);
  transition: none;
  position: relative;
  z-index: 50;
  border-top: none;
}

.drawer .drawer-navigation ul li:hover {
  border-top: none;
}

.drawer .drawer-navigation ul li:last-child {
  border-bottom: none;
}

.drawer .drawer-navigation ul li a {
  display: inline-block;
  padding: 0.9375rem 10px 0.9375rem 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  border-bottom: none;
  position: relative;
  transition: none;
}

.drawer .drawer-navigation a {
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 0;
  line-height: 1.4;
}

.drawer .drawer-navigation a:hover {
  color: #fff;
}

.drawer .drawer-navigation .sub-menu, .drawer .drawer-navigation .children {
  display: none;
  position: relative;
  width: 100%;
  left: 0;
  top: auto;
  margin: 0 0 0 0.9375rem;
  padding: 0 0.9375rem 0 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.drawer .drawer-navigation .sub-menu:before, .drawer .drawer-navigation .children:before {
  display: none;
}

.drawer .drawer-navigation li ul a,
.drawer .drawer-navigation li ul li a {
  padding: 0.9375rem 0;
}

.drawer .drawer-navigation .sub-menu li:first-child {
  border-top: dotted 1px rgba(255, 255, 255, 0.2);
}


.drawer nav {
  padding: 2% 0 0 0;
}


.drawer-wrap .searchform {
  margin-top: 25px;
}

.drawer-wrap .searchform .search-input {
  border: none;
}

/* --------------------------------------------------------------
! 5.3 Social Navigations
-------------------------------------------------------------- */
.social-navigation {
  display: inline-block;
}

@media (max-width: 60em) {
  .social-navigation {
    float: none;
    width: 100%;
    margin-top: 0.9375rem;
  }
}

.team-area .social-navigation {
  margin-top: -5px;
  width: 100%;
}

@media (max-width: 60em) {
  .team-area .social-navigation {
    display: block;
  }
}

.social-navigation ul {
  list-style: none;
  margin: 0;
}

.social-navigation li {
  display: inline;
  font-size: 0.875rem;
}

.social-navigation a {
  transition: .1s ease-in-out;
  padding: 0 4px;
}

.team-area .social-navigation a {
  padding: 0 5px 0 0;
}

.social-navigation a:before {
  font-size: 1.625rem;
  font-family: 'Font Awesome 5 Brands';
  padding: 0;
  display: inline-block;
  text-align: center;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  color: #272c30;
}

@media (max-width: 60em) {
  .social-navigation a:before {
    font-size: 22px;
  }
}

.social-navigation a:hover:before {
  color: #62707c;
}

.social-navigation a[href*="twitter.com"] {
  font-size: 0;
}

.social-navigation a[href*="twitter.com"]:before {
  content: "\f081";
}

.social-navigation a[href*="yelp.com"] {
  font-size: 0;
}

.social-navigation a[href*="yelp.com"]:before {
  content: "\f1e9";
}

.social-navigation a[href*="foursquare.com"] {
  font-size: 0;
}

.social-navigation a[href*="foursquare.com"]:before {
  content: "\f180";
}

.social-navigation a[href*="facebook.com"] {
  font-size: 0;
}

.social-navigation a[href*="facebook.com"]:before {
  content: "\f09a";
}

.social-navigation a[href*="google.com"] {
  font-size: 0;
}

.social-navigation a[href*="google.com"]:before {
  content: "\f0d5";
}

.social-navigation a[href*="instagram.com"] {
  font-size: 0;
}

.social-navigation a[href*="instagram.com"]:before {
  content: "\f16d";
}

.social-navigation a[href*="youtube.com"] {
  font-size: 0;
}

.social-navigation a[href*="youtube.com"]:before {
  content: "\f167";
}

.social-navigation a[href*="vimeo.com"] {
  font-size: 0;
}

.social-navigation a[href*="vimeo.com"]:before {
  content: "\f194";
}

.social-navigation a[href*="dribbble.com"] {
  font-size: 0;
}

.social-navigation a[href*="dribbble.com"]:before {
  content: "\f17d";
  line-height: 17px;
}

.social-navigation a[href*="github.com"] {
  font-size: 0;
}

.social-navigation a[href*="github.com"]:before {
  content: "\f092";
}

.social-navigation a[href*="flickr.com"] {
  font-size: 0;
}

.social-navigation a[href*="flickr.com"]:before {
  content: "\f16e";
}

.social-navigation a[href*="codepen.com"],
.social-navigation a[href*="codepen.io"] {
  font-size: 0;
}

.social-navigation a[href*="codepen.com"]:before,
.social-navigation a[href*="codepen.io"]:before {
  content: "\f1cb";
}

.social-navigation a[href*="behance.com"],
.social-navigation a[href*="behance.net"] {
  font-size: 0;
}

.social-navigation a[href*="behance.com"]:before,
.social-navigation a[href*="behance.net"]:before {
  content: "\f1b4";
}

.social-navigation a[href*="dropbox.com"] {
  font-size: 0;
}

.social-navigation a[href*="dropbox.com"]:before {
  content: "\f16b";
}

.social-navigation a[href*="pinterest.com"] {
  font-size: 0;
}

.social-navigation a[href*="pinterest.com"]:before {
  content: "\f0d2";
}

.social-navigation a[href*="reddit.com"] {
  font-size: 0;
}

.social-navigation a[href*="reddit.com"]:before {
  content: "\f1a1";
}

.social-navigation a[href*="soundcloud.com"] {
  font-size: 0;
}

.social-navigation a[href*="soundcloud.com"]:before {
  content: "\f1be";
}

.social-navigation a[href*="spotify.com"] {
  font-size: 0;
}

.social-navigation a[href*="spotify.com"]:before {
  content: "\f1bc";
}

.social-navigation a[href*="wordpress.com"] {
  font-size: 0;
}

.social-navigation a[href*="wordpress.com"]:before {
  content: "\f19a";
}

.social-navigation a[href*="500px.com"] {
  font-size: 0;
}

.social-navigation a[href*="500px.com"]:before {
  content: "\f26e";
}

.social-navigation a[href*="medium.com"] {
  font-size: 0;
}

.social-navigation a[href*="medium.com"]:before {
  content: "\f23a";
}

.social-navigation a[href*="slideshare.net"] {
  font-size: 0;
}

.social-navigation a[href*="slideshare.net"]:before {
  content: "\f1e7";
}

.social-navigation a[href*="apple.com"],
.social-navigation a[href*="apple.news"],
.social-navigation a[href*="itunes.apple.com"] {
  font-size: 0;
}

.social-navigation a[href*="apple.com"]:before,
.social-navigation a[href*="apple.news"]:before,
.social-navigation a[href*="itunes.apple.com"]:before {
  content: "\f179";
}

.social-navigation a[href*="mailto"] {
  font-size: 0;
}

.social-navigation a[href*="mailto"]:before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  text-indent: -1px;
  font-size: 1rem;
}

.social-navigation a[href*="linkedin.com"] {
  font-size: 0;
}

.social-navigation a[href*="linkedin.com"]:before {
  content: "\f0e1";
}

.social-navigation a[href*="stackoverflow.com"] {
  font-size: 0;
}

.social-navigation a[href*="stackoverflow.com"]:before {
  content: "\f16c";
}

.social-navigation a[href*="rss"],
.social-navigation a[href*="feed="],
.social-navigation a[href*="/feed"] {
  font-size: 0;
}

.social-navigation a[href*="rss"]:before,
.social-navigation a[href*="feed="]:before,
.social-navigation a[href*="/feed"]:before {
  content: "\f09e";
  text-indent: 1px;
}

.social-navigation a[href*="weibo.com"] {
  font-size: 0;
}

.social-navigation a[href*="weibo.com"]:before {
  content: "\f18a";
}

.social-navigation a[href*="goodreads.com"] {
  font-size: 0;
}

.social-navigation a[href*="goodreads.com"]:before {
  content: "\f3a8";
}

.footer-tagline + .social-navigation {
  float: right;
}

.share-comment {
  display: inline-block;
  width: 100%;
  margin-top: 7%;
}

@media (max-width: 60em) {
  .share-comment {
    margin-top: 5%;
  }
}

@media (max-width: 40em) {
  .share-comment {
    margin-top: 10%;
  }
}

.page .share-comment {
  margin-top: 4%;
}

.share-icons .sd-content ul li {
  margin-right: 3px;
}

.sharedaddy .sd-content ul {
  margin-bottom: 0 !important;
}

div.sharedaddy h3.sd-title:before {
  display: none !important;
}

.entry-content .meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: var(--fw__bold);
}

.entry-content .meta-list li {
  display: inline-block;
  margin: 0 1.25rem 0 0;
}

.entry-content .meta-list a {
  font-weight: normal;
  color: var(--c__purple-bright);
}

.entry-content .meta-list a:hover {
  color: #272c30;
}

.author-profile {
  position: relative;
  margin-top: 5%;
  padding: 5%;
  width: 100%;
  display: inline-block;
  background: #f2f2f2;
}

@media (max-width: 40em) {
  .author-profile {
    padding: 8% 4%;
  }
}

.archive .author-profile {
  margin-top: 0;
  margin-bottom: 5%;
}

.author-columns .author-profile {
  margin: 0;
  padding: 0;
  border-top: none;
  border: solid 1px #cbcbcb;
  padding: 35px;
  transition: .2s ease;
}

@media (max-width: 60em) {
  .author-columns .author-profile {
    padding: 30px 0;
  }
}

.author-columns .author-profile .author-profile-title {
  font-size: 1.125rem;
}

.author-columns .author-profile .author-profile-info {
  font-size: 0.875rem;
  padding-left: 100px;
}

@media (max-width: 40em) {
  .author-columns .author-profile .author-profile-info {
    font-size: 0.9375rem;
  }
}

.author-columns .author-profile .author-profile-links {
  margin-top: 0.9375rem;
  font-weight: var(--fw__bold);
}

@media (max-width: 40em) {
  .author-columns .author-profile .author-profile-links {
    font-size: 0.9375rem;
  }
}

.author-columns .author-profile .author-profile-avatar img {
  transition: .2s ease;
}

.author-columns .author-profile:hover .author-profile-avatar img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.featured-posts {
  background: #eef0f4;
  padding-top: 4%;
  padding-bottom: 3.5%;
}

.featured-posts .post {
  width: 22.75%;
  margin-right: 3%;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.featured-posts .post:nth-child(2n+2) {
  margin-right: 3%;
}

.featured-posts .post:last-child {
  margin-right: 0;
}

@media (max-width: 60em) {
  .featured-posts .post {
    width: 100%;
    margin-right: 0;
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    border-bottom: none;
    -webkit-animation: none;
    animation: none;
    margin: 0;
  }

  .featured-posts .post.rslides1_on {
    display: block;
    opacity: 1;
  }

  .featured-posts .post:first-child {
    position: relative;
    display: block;
    float: left;
    opacity: 1;
  }
}

.featured-posts .post h2 {
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 0;
}

.featured-posts .post .entry-excerpt,
.featured-posts .post .entry-byline,
.featured-posts .post .more-link {
  display: none;
}

.slide-navs {
  text-align: center;
  margin-bottom: 4%;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media only screen and (min-width: 60em) {
  .slide-navs {
    display: none;
  }
}

.slide-navs:empty {
  display: none;
}

.slide-navs a {
  font-size: 0;
}

.slide-navs a:before {
  font-family: "Font Awesome 5 Free";
  font-size: 1.25rem;
  height: 40px;
  width: 40px;
  text-align: center;
  background: #272c30;
  color: #fff;
  display: inline-block;
  margin: 0 3px;
  border-radius: 50px;
  line-height: 40px;
}

.slide-navs a.prev:before {
  content: "\f104";
  letter-spacing: 2px;
}

.slide-navs a.next:before {
  content: "\f105";
  letter-spacing: -3px;
}

.author-profile-avatar {
  display: block;
  margin: 0 auto;
}

.author-profile-avatar img {
  border-radius: 100px;
}

.author-profile-avatar {
  position: absolute;
}

.author-profile-info {
  padding: 0 0 0 90px;
  font-size: 1rem;
  line-height: 1.6;
}

.author-profile-links {
  font-size: 0.75rem;
  margin-top: 10px;
  display: inline-block;
}

.author-profile-links a {
  background: #272c30;
  color: #fff;
  padding: 5px 10px;
  border-radius: 30px;
}

.author-profile-links a:hover {
  opacity: .8;
}

.author-profile-links a:first-child {
  margin-right: 5px;
}

.author-profile-links i {
  font-size: 0.75rem;
}

.author-profile-info p,
.entry-header .author-profile-info p:last-child {
  margin-bottom: 10px;
}

.author-profile-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (max-width: 40em) {
  .author-profile-title {
    font-size: 1.125rem;
  }
}

.archive .author-profile-title {
  font-size: 24px;
}

/* --------------------------------------------------------------
5.5 Page Navigation
-------------------------------------------------------------- */
.pagination {
  display: inline-block;
  width: 100%;
  margin-top: 8%;
}
.pagination a {
  color: #272c30;
}
.pagination a, .pagination span {
  background: #f2f2f2;
  padding: 10px 1.25rem;
  transition: .2s ease-in-out;
  display: inline-block;
  color: #272c30;
  font-weight: 600;
  text-align: center;
  line-height: 1.9;
  vertical-align: middle;
  height: 50px;
}
@media (max-width: 40em) {
  .pagination a, .pagination span {
    padding: 10px 0.9375rem;
  }
}
.pagination .next,
.pagination .prev {
  font-size: 0;
  line-height: 1.7;
}
.pagination .next:after,
.pagination .prev:after {
  font-family: "Font Awesome 5 Free";
  font-size: 1.125rem;
}
.pagination .next {
  text-indent: 3px;
}
.pagination .next:after {
  content: "\f105";
}
.pagination .prev {
  text-indent: -3px;
}
.pagination .prev:after {
  content: "\f104";
}
@media (max-width: 40em) {
  .pagination .next:after,
  .pagination .prev:after {
    font-size: 1rem;
  }
}

.page-numbers {
  font-size: 1.125rem;
  font-weight: 400;
}
@media (max-width: 40em) {
  .page-numbers {
    font-size: 1rem;
  }
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--c__purple-bright);
  color: #fff;
}

.post-navigation {
  margin-top: 10%;
  line-height: 1.4;
  width: 100%;
  display: block;
  font-weight: var(--fw__bold);
}
.post-navigation:before, .post-navigation:after {
  content: '';
  display: table;
}
.post-navigation:after {
  clear: both;
}
.post-navigation a {
  color: #272c30;
}
.post-navigation a:hover .post-title {
  color: var(--c__purple-bright);
}
.post-navigation span {
  vertical-align: top;
}
.post-navigation .meta-title {
  font-size: 1rem;
  display: inline-block;
  width: 100%;
}
.post-navigation .post-title {
  font-size: 1.25rem;
  transition: .3s ease;
}
@media (max-width: 40em) {
  .post-navigation .post-title {
    font-size: 1rem;
  }
}

.nav-next,
.nav-previous {
  display: inline-block;
  float: left;
  width: 49%;
  vertical-align: top;
}
@media (max-width: 40em) {
  .nav-next,
  .nav-previous {
    width: 100%;
  }
}

.nav-previous + .nav-next {
  text-align: right;
  float: right;
}
@media (max-width: 40em) {
  .nav-previous + .nav-next {
    text-align: left;
    margin-top: 0.9375rem;
  }
}

.nav-previous i {
  margin-right: 6px;
}

/* --------------------------------------------------------------
6.0 Accessibility
-------------------------------------------------------------- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  margin: 0;
}

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

/* --------------------------------------------------------------
7.0 Alignments
-------------------------------------------------------------- */
#page .alignleft {
  display: inline;
  float: left;
  margin: .5em 2em 1.5em 0;
}
@media (max-width: 40em) {
  #page .alignleft {
    max-width: 100%;
    margin-right: 0;
    width: 100%;
  }
  #page .alignleft img {
    width: 100%;
  }
}

#page .alignright {
  display: inline;
  float: right;
  margin: .5em 0 1.5em 2em;
}
@media (max-width: 40em) {
  #page .alignright {
    max-width: 100%;
    margin-right: 0;
    width: 100%;
  }
  #page .alignright img {
    width: 100%;
  }
}

#page .aligncenter {
  clear: both;
  margin: 0 auto 1.5em auto;
}

.wp-caption {
  margin: .5em 0 1.5em 0;
  max-width: 100%;
  text-align: left;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0;
  max-width: 100%;
}

.wp-caption-text, .gallery-caption {
  padding-top: 10px;
  margin-top: 0;
  width: 100%;
  text-transform: none;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 0;
  color: #62707c;
}

.site-footer .wp-caption-text,
.site-footer .gallery-caption {
  color: #a6b5c1;
  border-left-color: #a6b5c1;
}

#main .tiled-gallery {
  margin-bottom: 1.2em;
}
#main .tiled-gallery p {
  margin-bottom: 0;
}

#main .featured-image .tiled-gallery {
  margin-bottom: 0;
}

.post:not(.video-lightbox) .gallery-container {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 5%;
  visibility: hidden;
}

.pull-right,
.pull-excerpt {
  float: right;
  margin: 1.2% 0 2% 5%;
  text-align: left;
}

.pull-left {
  float: left;
  margin: 1.5% 5% 2% 0;
}

.pull-right,
.pull-left,
.pull-excerpt {
  color: #272c30;
  font-size: 1rem;
  line-height: 1.5;
  width: 32%;
  padding: 1.25rem;
  background: #f2f2f2;
  border-radius: 5px;
}

@media (max-width: 60em) {
  .pull-right,
  .pull-left,
  .pull-excerpt {
    width: 100%;
    margin: 0 0 0.9375rem 0;
    padding-top: 0.9375rem;
  }
}

.pull-excerpt {
  font-style: normal;
  text-align: left;
}

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

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

/* --------------------------------------------------------------
9.0 Widgets
-------------------------------------------------------------- */
.widget-area {
  display: inline-block;
  width: 25%;
  margin-bottom: 5%;
  vertical-align: top;
  float: right;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  -webkit-backface-visibility: hidden;
}
@media (max-width: 60em) {
  .widget-area {
    width: 100%;
    float: none;
    margin-top: 8%;
    margin-bottom: 0;
  }
}
@media (max-width: 40em) {
  .widget-area {
    border-top: solid 1px #c4ccd5;
    padding-top: 8%;
  }
}
.widget-area .widget-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.2;
}
.widget-area .wpp-list li {
  line-height: 1.6;
  margin-bottom: 0.9375rem;
  padding-bottom: 0.9375rem;
  position: relative;
}
.widget-area .wpp-list li a + .wpp-post-title,
.widget-area .wpp-list li a + .wpp-post-title + .wpp-excerpt,
.widget-area .wpp-list li a + .wpp-post-title + .wpp-excerpt + .post-stats,
.widget-area .wpp-list li a + .wpp-post-title + .post-stats {
  float: left;
  display: inline-block;
  width: 75%;
}
.widget-area .wpp-post-title {
  display: inline-block;
  width: 100%;
  font-weight: 600;
  line-height: 1.3;
  color: #272c30;
  margin-bottom: 3px;
}
.widget-area .wpp-post-title:hover {
  color: #62707c;
}
.widget-area .wpp-thumbnail {
  float: right;
  width: 16%;
  margin-right: 0;
}
.widget-area .wpp-excerpt {
  font-size: 0.75rem;
  color: #62707c;
  display: inline-block;
  margin-bottom: 5px;
}
.widget-area .post-stats {
  font-weight: normal;
  font-size: 0.875rem;
  color: #62707c;
  line-height: 1.6;
}
.widget-area .post-stats a {
  color: #62707c;
}
.widget-area .post-stats a:hover {
  color: #272c30;
}
.widget-area .wpp-date {
  text-transform: capitalize;
}
.widget-area .wpp-thumbnail.wpp_featured_def {
  display: none;
}
.widget-area section {
  margin-bottom: 40px;
}
.widget-area section:last-child {
  margin-bottom: 0;
}
.widget-area section li:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: dotted 1px #a5afbb;
}
.widget-area button {
  font-size: 1rem;
}

.widget-area a {
  color: #62707c;
}
.widget-area a:hover {
  color: #272c30;
}

.widget-area aside {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  vertical-align: top;
}
.widget-area aside:last-child {
  margin-bottom: 0;
}
@media (max-width: 40em) {
  .widget-area aside {
    margin-bottom: 35px;
  }
}

.widget-area aside:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.widget-area aside .widget-title,
.widget-area aside .widgettitle,
.widget-area .widget-grofile h4 a {
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  padding: 0.9375rem;
  background: #eeeff0;
}
@media (max-width: 60em) {
  .widget-area aside .widget-title,
  .widget-area aside .widgettitle,
  .widget-area .widget-grofile h4 a {
    margin-bottom: 35px;
  }
}
@media (max-width: 40em) {
  .widget-area aside .widget-title,
  .widget-area aside .widgettitle,
  .widget-area .widget-grofile h4 a {
    margin-bottom: 1.25rem;
  }
}

.widget-area .textwidget p {
  margin-bottom: 0.9375rem;
}

.widget-area aside ul {
  margin: 0 0 0 0;
}

.widget-area aside ul.sub-menu,
.widget-area aside .children {
  margin: 4% 0 0 1.25rem;
}

.widget-area aside ul.sub-menu li:last-child,
.widget-area aside .children li:last-child {
  margin-bottom: 0;
  padding-bottom: 2%;
  border-bottom: none;
}

.widget-area aside li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: dotted 1px #b7c6d3;
  list-style: none;
  position: relative;
}
.widget-area aside li:before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: -1.125rem;
  top: 3px;
  color: #A1B0BD;
  font-size: 0.75rem;
  display: none;
}

.widget-area aside li ul li {
  list-style: circle;
}

.widget-area aside li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

#calendar_wrap {
  background: #fff;
  border-right: none;
  border-bottom: none;
  color: #272c30;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 2px -1px;
}

#wp-calendar {
  font-size: 1rem;
  margin: 0;
  max-width: 100%;
}

#wp-calendar caption {
  text-align: center;
  background: #f2f2f2;
  padding: 5px 10px;
  font-weight: var(--fw__bold);
}

#wp-calendar tr th, #wp-calendar tr td {
  text-align: center;
}

#wp-calendar tr th {
  background: #272c30;
  color: #fff;
  margin: -10px -10px 10px -10px;
  font-size: 11px;
  font-weight: var(--fw__bold);
  padding: 10px 0;
}

#wp-calendar tbody tr td {
  padding: 2px 0;
  border-right: solid 1px #f2f2f2;
  border-top: solid 1px #f2f2f2;
}

#wp-calendar tfoot td {
  border-top: solid 1px #f2f2f2;
  border-right: solid 1px #d9dee3;
  padding: 7px 0 5px 0;
  font-weight: var(--fw__bold);
  font-size: 10px;
  text-transform: uppercase;
}

#wp-calendar a {
  color: #272c30;
}
#wp-calendar a:hover {
  color: #62707c;
}

.widget_rss li {
  margin-bottom: 0.9375rem;
  padding-bottom: 0.9375rem;
}
.widget_rss li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.widget_rss li .rsswidget {
  display: inline-block;
  width: 100%;
}
.widget_rss .rss-date, .widget_rss cite {
  font-size: 0.875rem;
  text-transform: uppercase;
  display: inline-block;
  margin: 10px 0;
}

.site-footer li .rsswidget {
  color: #fff;
}

.site-footer li .rsswidget:hover {
  opacity: .9;
}

.widget-grofile {
  position: relative;
}

.widget .grofile-thumbnail {
  max-width: 90px;
  width: 90px;
  display: block;
  vertical-align: top;
  border-radius: 100px;
  margin: 0 auto 10px auto;
}

.grofile-meta {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.widget-area .widget-grofile h4 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: .9;
  text-align: center;
}
.widget-area .widget-grofile h4 a {
  color: #272c30;
}
.widget-area .widget-grofile h4 a:hover {
  color: #62707c;
}

.widget-area .grofile-meta + h4 {
  display: none;
}

.widget-area .grofile-links {
  margin-bottom: 1.25rem;
}

.widget-area .grofile-links + p,
.widget-area .grofile-meta + p {
  margin-bottom: 0;
}

aside.widget_blog_subscription {
  background: #f2f2f2;
  padding: 1.25rem;
}
@media (max-width: 60em) {
  aside.widget_blog_subscription {
    padding: 0;
  }
}
aside.widget_blog_subscription p {
  margin-bottom: 0.9375rem;
  font-size: 0.9375rem;
}
aside.widget_blog_subscription h2.widget-title {
  margin-bottom: 10px;
  font-size: 1.125rem;
}
aside.widget_blog_subscription p:last-child,
aside.widget_blog_subscription #subscribe-blog input[type="submit"],
aside.widget_blog_subscription .success p:last-child {
  margin-bottom: 0;
}
aside.widget_blog_subscription #subscribe-blog input {
  font-size: 1rem;
  padding: 10px 0.75rem;
  width: 100%;
}

.site-footer aside.widget_blog_subscription {
  background: none;
  padding: 0;
}

/* --------------------------------------------------------------
10.0 Comments
-------------------------------------------------------------- */
.comment-navigation {
  font-size: 1rem;
  margin: 0 0 6% 0;
}
.comment-navigation .button {
  display: inline-block;
}
.comment-navigation .button:empty {
  display: none;
}
.comment-navigation .nav-previous a:before {
  content: "\f0a8";
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
}
.comment-navigation .nav-next a:after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  margin-left: 10px;
}

.comments-toggle {
  display: inline-block;
  text-align: center;
}
@media (max-width: 40em) {
  .comments-toggle {
    width: 100%;
  }
}
.comments-toggle:hover {
  cursor: pointer;
}
.comments-toggle i {
  margin-right: 5px;
}
.comments-toggle:before {
  content: "\f27a";
  font-family: "Font Awesome 5 Free";
  margin-right: 3px;
  -webkit-font-smoothing: antialiased;
}

.comments-area {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-top: 10%;
  padding-top: 10%;
  border-top: solid 3px #eee;
}
@media (max-width: 60em) {
  .comments-area {
    margin-top: 7%;
  }
}

.comment-list + .no-comments {
  margin-top: 1.2em;
  text-align: center;
  position: relative;
}

.comment-list + .no-comments span {
  background: #fff;
  position: relative;
  z-index: 10;
  padding: 0 30px;
}

@media (max-width: 60em) {
  .comment-list + .no-comments span {
    padding: 0 1.25rem;
  }
}

.comment-list + .no-comments:after {
  content: " ";
  display: inline-block;
  height: 2px;
  background: #eee;
  width: 100%;
  position: absolute;
  left: 0;
  top: 1rem;
  z-index: 5;
}

@media (max-width: 60em) {
  .comment-list + .no-comments:after {
    top: 14px;
  }
}

h3.comment-reply-title {
  font-size: 32px;
  margin-bottom: 5%;
  position: relative;
  font-weight: var(--fw__bold);
}

@media (max-width: 40em) {
  h3.comment-reply-title {
    font-size: 22px;
  }
}

h3.comments-title {
  margin-bottom: 10%;
}

#commentform,
#respond form {
  display: inline-block;
  width: 100% !important;
  min-width: 100%;
}

.comment-list #commentform {
  margin-top: 2%;
}

.comment-info {
  display: inline-block;
  margin: 0;
}
@media (max-width: 60em) {
  .comment-info {
    line-height: 2;
  }
}

img + .comment-info {
  margin-left: 55px;
}

.comment-content {
  font-size: 1.125rem;
  line-height: 1.6;
  background: #f2f2f2;
  padding: 30px;
  position: relative;
  border-radius: 5px;
}
.comment-content:after {
  position: absolute;
  top: -10px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f2f2f2;
}
@media (max-width: 60em) {
  .comment-content {
    font-size: 1rem;
  }
}
@media (max-width: 60em) {
  .comment-content {
    padding: 1.25rem;
  }
}
.comment-content p:last-child {
  margin-bottom: 0;
}

.bypostauthor .comment-list .avatar:after {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  margin-left: 1rem;
  position: relative;
  top: 0;
}

.entry-content .comment-list,
.entry-content .comment-list li {
  margin-left: 0;
  padding-left: 0;
  counter-reset: li;
}

.comment-list > li {
  list-style-type: none;
  margin-bottom: 6%;
}

.comment-list .children {
  margin: 5% 0 0 0;
  padding-left: 25px;
}
@media (max-width: 40em) {
  .comment-list .children {
    padding-left: 0.9375rem;
  }
}
.comment-list .children li {
  margin-bottom: 6%;
}
.comment-list .children li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.comment-list .reply {
  margin-bottom: 0;
  font-size: 0.875rem;
}

.comment-list .avatar {
  display: inline-block;
  margin-right: 10px;
  margin-top: 2px;
  border-radius: 100px;
  vertical-align: top;
  width: 40px;
  position: relative;
}
@media (max-width: 40em) {
  .comment-list .avatar {
    margin-top: 3px;
  }
}

.comment-wrap {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.comment-cite {
  font-style: normal;
  display: inline-block;
  width: 100%;
  font-weight: var(--fw__bold);
  font-size: 1.125rem;
  line-height: 1;
}
@media (max-width: 40em) {
  .comment-cite {
    font-size: 1.125rem;
  }
}
.comment-cite a {
  color: #272c30;
}

.comment-time, .comment-edit-link {
  color: #62707c;
  font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 11px;
  vertical-align: top;
  line-height: 1;
}

.comment-list .comment-reply-title {
  margin-bottom: 1%;
}
.comment-list .comment-reply-title small {
  float: right;
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

.comments-closed p.reply {
  display: none;
}

.comments-closed p:nth-last-child(2) {
  margin-bottom: 0;
}

.logged-in-as, .comment-notes {
  margin-bottom: 2%;
  display: none;
  color: #62707c;
  font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.comment-notes {
  display: none;
}

.required {
  color: #F35959;
}

.logged-in-as a {
  color: #272c30;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
  display: inline-block;
  width: 100%;
}
.comment-form-author input,
.comment-form-author textarea,
.comment-form-email input,
.comment-form-email textarea,
.comment-form-url input,
.comment-form-url textarea,
.comment-form-comment input,
.comment-form-comment textarea {
  width: 100%;
}
@media (max-width: 60em) {
  .comment-form-author,
  .comment-form-email,
  .comment-form-url,
  .comment-form-comment {
    width: 100%;
    margin-right: 0;
  }
}

.comment-list #respond {
  display: inline-block;
  margin-top: 4%;
  width: 100%;
}

@media (max-width: 60em) {
  .comment-form-url {
    margin-bottom: 1em;
  }
}

.form-submit {
  display: inline-block;
  margin: 0;
  width: 100%;
}

.comment-form #submit {
  margin-top: 10px;
  width: auto;
}
@media (max-width: 40em) {
  .comment-form #submit {
    margin: 0;
    width: 100%;
  }
}

.comment-list .comment-respond #submit {
  margin-top: 0;
}

.form-allowed-tags {
  display: none;
}

.comment-subscription-form {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  margin-top: 0.9375rem;
}
.comment-subscription-form label {
  font-weight: normal;
  font-size: 0.875rem;
}

.comment-subscription-form + .comment-subscription-form {
  margin-top: 0;
}

#respond .comment-form-fields div.comment-form-field {
  width: 100% !important;
}

.comment-awaiting-moderation {
  margin-top: 1.25rem;
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  font-style: normal;
}

.comment-awaiting-moderation:before {
  content: "\f06a";
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
}

/* --------------------------------------------------------------
11.0 Infinite scroll
-------------------------------------------------------------- */
#infinite-handle {
  position: relative;
}
#infinite-handle:after {
  border-bottom: double 4px #c4ccd5;
  content: " ";
  width: 100%;
  height: 5px;
  display: block;
  position: absolute;
  top: 22px;
  z-index: -1;
}
@media (max-width: 40em) {
  #infinite-handle {
    display: inline-block;
    width: 100%;
  }
  #infinite-handle span {
    width: 100%;
  }
}

#page #infinite-handle {
  display: inline-block;
  width: 100%;
  margin-top: 3%;
  margin-bottom: 0;
  text-align: center;
}

#page #infinite-handle span {
  background: none;
  padding: 0;
  border-left: solid 10px #ebeff4;
  border-right: solid 10px #ebeff4;
}

#page #infinite-handle button {
  padding: 10px 1.25rem;
  transition: .2s ease-in-out;
  border-radius: 50px;
  display: inline-block;
}
#page #infinite-handle button:hover {
  color: #fff;
  background: var(--c__purple-bright);
}

.infinite-loader {
  margin: 0;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer,
.infinite-scroll .page-navigation {
  display: none;
}

.infinity-end.neverending .site-footer {
  display: block;
}

.spinner {
  left: 50% !important;
}

/* --------------------------------------------------------------
12.0 Masonry
-------------------------------------------------------------- */
#post-wrapper {
  position: relative;
}

img.emoji {
  min-width: 0;
}

@media (max-width: 60em) {
  .featured-posts {
    margin-bottom: 0;
  }
}

/* --------------------------------------------------------------
13.0 Hero Posts
-------------------------------------------------------------- */
.post-cats,
.entry-cats {
  margin-bottom: 1.5%;
  position: relative;
  z-index: 10;
}
@media (max-width: 60em) {
  .post-cats,
  .entry-cats {
    margin-bottom: 5%;
  }
}
.post-cats a,
.entry-cats a {
  background-color: var(--c__purple-bright);
  padding: 4px 0.5rem;
  margin-right: 5px;
  border-radius: 3px;
  font-size: 0.75rem;
  color: #fff;
  transition: .2s ease-in-out;
}
.post-cats a:hover,
.entry-cats a:hover {
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.1);
}
@media (max-width: 40em) {
  .post-cats a,
  .entry-cats a {
    font-size: 11px;
    padding: 3px 4px;
  }
}

.entry-header .entry-title {
  position: relative;
  z-index: 5;
  line-height: 1.3;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.entry-header .entry-title a:hover {
  box-shadow: inset 0 -4px 0 var(--c__purple-bright);
}

.entry-byline {
  color: #62707c;
  font-size: 0.9375rem;
  margin-bottom: 0;
}
.search-results .entry-byline {
  margin-bottom: 5px;
}
.entry-byline a {
  color: #62707c;
}
.entry-byline a:hover {
  color: #272c30;
}
.entry-byline img {
  border-radius: 100px;
  width: 22px;
  vertical-align: top;
  margin-right: 3px;
}

.meta-avatar {
  position: absolute;
}
.meta-avatar img {
  width: 24px;
  border-radius: 50px;
  margin-right: 5px;
  vertical-align: top;
}

.index-text {
  position: relative;
  z-index: 10;
  margin: 0 5%;
  background: #fff;
  padding: 0 4% 6% 4%;
  border-bottom: solid 1px #d8dee3;
}
.has-post-thumbnail .index-text {
  margin-top: -10%;
  padding-top: 4%;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    visibility: visible;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-24%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    visibility: visible;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
  transition: .3s ease;
}

.site-header-bg-wrap {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.background-effect {
  position: absolute;
  z-index: -999998;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.site-header-bg.background-effect {
  background-attachment: scroll;
}

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

.site-main .gallery {
  margin-bottom: 1.2em;
}

@media (min-width: 60em) {
  .has-wide-image .featured-image,
  .has-wide-image .featured-video {
    width: 90vw;
    margin-left: calc( 50% - 90vw / 2 );
  }
}

.featured-image .gallery {
  margin-bottom: 0;
}

.featured-gallery {
  background: transparent;
}
.featured-gallery [class*='gallery']:first-child {
  opacity: 0;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.gallery a img {
  border: none;
  height: auto;
  width: 100%;
  max-width: 100%;
  display: block;
}

.gallery dd, .gallery figcaption {
  font-size: 0.9375rem;
  text-align: left;
  margin: 0;
}

.gallery-item {
  display: inline-block;
  padding-right: 0.9375rem;
  padding-bottom: 0.9375rem;
  vertical-align: top;
}

.gallery-columns-1 .gallery-item {
  max-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%;
}

embed, iframe, object {
  max-width: 100%;
  border-width: 0px;
}

#content .wp-playlist-light {
  color: #55626D;
  padding: 0;
}

#content .mejs-container:not(.mejs-video), #content .mejs-embed, #content .mejs-embed body {
  background: none;
}

#content .mejs-container:not(.mejs-video) {
  margin-bottom: 1em;
  height: 75px !important;
}

#content .mejs-container:not(.mejs-video) a {
  border-bottom: none;
}
#content .mejs-container:not(.mejs-video) a:hover {
  background: transparent;
}

#content .wp-playlist {
  border: none;
  background: none;
  margin: 0 0 1.5em 0;
  padding: 0;
}

#content .wp-playlist-tracks {
  margin-top: 3.5%;
}

#content .wp-playlist-item {
  border-bottom: dotted 1px #CAD1D8;
  padding: 0;
}
#content .wp-playlist-item:last-child {
  border-bottom: none;
}

#content .wp-playlist-item .wp-playlist-caption,
#content .wp-playlist-item-length {
  padding: 2%;
}
@media (max-width: 60em) {
  #content .wp-playlist-item .wp-playlist-caption,
  #content .wp-playlist-item-length {
    padding: 4%;
  }
}

#content .wp-playlist-item .wp-playlist-caption {
  color: #272c30;
  display: inline-block;
  border-bottom: none;
}
#content .wp-playlist-item .wp-playlist-caption:hover {
  background: none;
  border-bottom: none;
}

#content .wp-playlist-caption, #content .wp-playlist-item-title {
  font-size: 1.125rem;
}
@media (max-width: 60em) {
  #content .wp-playlist-caption, #content .wp-playlist-item-title {
    font-size: 1rem;
  }
}

#content .wp-playlist-current-item {
  height: auto !important;
}
#content .wp-playlist-current-item .wp-playlist-caption {
  margin-bottom: 1.5%;
}
#content .wp-playlist-current-item img {
  display: none;
}
#content .wp-playlist-current-item .wp-playlist-item-title {
  color: #272c30;
  font-size: 1.625rem;
  font-weight: 500;
}
@media (max-width: 60em) {
  #content .wp-playlist-current-item .wp-playlist-item-title {
    font-size: 22px;
  }
}
#content .wp-playlist-current-item .wp-playlist-item-album {
  font-size: 1.125rem;
}
@media (max-width: 60em) {
  #content .wp-playlist-current-item .wp-playlist-item-album {
    font-size: 1rem;
  }
}

#page .mejs-controls {
  background: #272c30;
}
@media (max-width: 60em) {
  #page .mejs-controls {
    padding: 0 10px;
  }
}
#page .mejs-controls .mejs-button button:hover {
  background-color: transparent !important;
}
#page .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: #5E7383;
}
#page .mejs-controls .mejs-time-rail .mejs-time-current {
  background: #e3eaf0;
}
#page .mejs-controls .mejs-time-rail .mejs-time-total {
  background: #5E7383;
}
#page .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background: #5E7383;
}
#page .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  background: #e3eaf0;
}
#page .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
  background: #5E7383;
}
#page .mejs-controls .mejs-button button:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

#page .mejs-video .mejs-controls,
#page .mejs-video .mejs-controls > div {
  height: 40px;
}
#page .mejs-video .mejs-time {
  height: 35px;
  padding-top: 2px;
}
#page .mejs-video .mejs-time-rail .mejs-time-total {
  margin: 0.5rem 10px;
}
#page .mejs-video .mejs-button button {
  margin: 0.75rem 5px;
}

/* --------------------------------------------------------------
14.0 Header
-------------------------------------------------------------- */
.drawer-wrap {
  position: relative;
}

.drawer {
  padding: 10px 0 0.9375rem 0;
  background: #22262a;
  background: rgba(21, 23, 26, 0.7);
  font-size: 1rem;
  display: none;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (min-width: 60em) {
  .drawer {
    display: none !important;
  }
}

.drawer-menu-explore {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 60em) {
  .drawer-menu-explore {
    background: var(--c__gray-400);
    padding: 0.9375rem 5% 30px 5%;
  }
}

.drawer-menu-explore .container {
  padding: 0;
}

.show-drawer {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block !important;
}

.admin-bar .drawer-open .drawer {
  margin-top: 35px;
}

.site-header {
  background-color: var(--c__purple-deeper);
  color: var(--c__gray-900);
  padding: 0;
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 100;
}

body.admin-bar .is-sticky .site-header {
  margin-top: 32px;
}

.site-identity {
  padding: 1.25rem 0;
  position: relative;
  z-index: 8;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.site-title-wrap {
  max-width: 30%;
}

@media (max-width: 40em) {
  .site-identity {
    justify-content: center;
    padding: 0.75rem 0;
  }
  
  .site-title-wrap {
    max-width: 100%;
  }
}

.site-title,
.site-description {
  text-align: center;
}

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

@media (min-width: 40em) {
  .site-title,
  .site-description {
    /* Hide visually but show to screenreaders */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.custom-logo-link {
  text-align: center;
  width: 100%;
  display: inline-block;
}

.custom-logo-link img {
  margin-left: auto;
  margin-right: auto;
  max-width: 180px;
}

@media (min-width: 60em) {
  .custom-logo-link img {
    max-width: 220px;
  }
}

.photo-credit {
  margin: -2rem 0 0 1rem;
  position: relative;
  color: #fff;
  font-family: var(--ff__sans);
}

/* --------------------------------------------------------------
15.0 Content
-------------------------------------------------------------- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8%;
  display: block;
}

@media only screen and (max-width: 60em) {
  .container {
    padding: 0 4%;
  }
}

@media (max-width: 40em) {
  .container {
    padding: 0 0.75rem;
  }
}

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

.container:after {
  clear: both;
}

.error404 .entry-header {
  margin-bottom: 0;
}

.archive-box {
  margin-top: 30px;
}

.archive-box ul ul {
  margin-left: 30px;
  margin-top: 0;
}

.archive-box ul li {
  margin-bottom: 0;
}

.archive-box ul a {
  border-bottom: dotted 1px #c7d6e4;
  padding-bottom: 0.9375rem;
  margin-bottom: 0.9375rem;
  display: inline-block;
  width: 100%;
}

.archive-box ul a:hover {
  border-bottom: dotted 1px #c7d6e4;
  color: #62707c;
}

.single #page {
  margin: 0 auto;
}

#primary {
  margin: 0 auto;
  display: block;
  width: 70%;
}

@media (max-width: 60em) {
  #primary {
    width: 100%;
  }
}

.page-template-template-full-width #primary {
  width: 100%;
}

.error404 #primary {
  display: block;
  margin: 0 auto;
}

.no-sidebar .content-area,
.single.no-sidebar .content-area {
  margin: 0 auto;
  display: block;
  width: 100%;
}

#main .entry-content .page-links {
  clear: both;
  margin: 0 0 1.4em;
}

#main .entry-content .page-links a {
  padding: 0 2px;
}

#page .more-link + .page-links {
  margin-top: 1.25rem;
}

.featured-image,
.featured-video {
  margin-bottom: 5%;
  width: 100%;
  z-index: 50;
  position: relative;
}

@media (max-width: 40em) {
  .featured-image,
  .featured-video {
    margin-bottom: 1.2em;
  }
}

.featured-image img,
.featured-video img {
  display: block;
  margin: 0 auto;
  -webkit-transform: translate3d(0, 0, 0);
  transition: .07s ease-in-out;
}

.featured-video iframe {
  opacity: 0;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

#page {
  padding-top: 6%;
}
@media (max-width: 40em) {
  #page {
    padding-top: 8%;
  }
}

.site-content {}

.blog .content-area {
  width: 100%;
  display: block;
  vertical-align: top;
}

.post .entry-header {
  position: relative;
  margin-bottom: 5%;
}

.archive-header {
  margin-top: -30px;
  margin-bottom: 40px;
  border-bottom: dotted 1px #cbcbcb;
}
.archive-header .entry-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0;
}
.archive-header .entry-subtitle {
  font-size: 1rem;
}
.archive-header .entry-subtitle p:last-child {
  margin-bottom: 0;
}

.taxonomy-description {
  font-size: 1rem;
  color: #62707c;
}
@media (max-width: 40em) {
  .taxonomy-description {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}

.taxonomy-description p:last-child {
  margin-bottom: 0;
}

.entry-cats {
  font-size: 1rem;
}

.full-post-header .entry-title {
  font-size: 50.5rem;
  margin-bottom: 0;
  line-height: 1.2;
}
@media (max-width: 60em) {
  .full-post-header .entry-title {
    font-size: 46px;
  }
}
@media (max-width: 40em) {
  .full-post-header .entry-title {
    font-size: 34px;
    margin-bottom: 0.9375rem;
    line-height: 1.2;
  }
}
.full-post-header .entry-title a {
  color: #272c30;
  text-decoration: none;
  transition: .1s ease-in-out;
}
.full-post-header .entry-title a:hover {
  color: #62707c;
}

.byline {
  color: #62707c;
  margin-top: 3%;
  font-size: 1rem;
}
@media (max-width: 40em) {
  .byline {
    display: inline-block;
    margin-top: 0;
    font-size: 0.75rem;
  }
}

.byline img {
  width: 24px;
  border-radius: 50px;
  vertical-align: top;
  margin-right: 5px;
}

.byline a {
  color: #62707c;
  border-bottom: 2px solid transparent;
  transition: .2s ease;
  padding-bottom: 2px;
}

.byline a:hover {
  border-bottom: 2px solid #e3eaf0;
}

.entry-content {
  vertical-align: top;
}

.entry-content a.no-underline,
.entry-content a.no-underline:hover {
  border-bottom: none;
}

.excerpt-more {
  display: inline-block;
  width: 100%;
}

.single-attachment .site-main .post .entry-content {
  padding-left: 0;
}
.single-attachment .author-profile {
  display: none;
}

.page-content {
  margin-bottom: 5%;
}

/* --------------------------------------------------------------
16.0 Posts
-------------------------------------------------------------- */
.post {
  width: 100%;
  display: inline-block;
  position: relative;
}

.blog .post:not(:last-of-type),
.archive #post-wrap .post:not(:last-of-type),
.search .post:not(:last-of-type) {
  margin-bottom: 8%;
  padding-bottom: 10%;
  border-bottom: solid 3px #eee;
}

.search .post:not(:last-of-type) {
  margin-bottom: 5%;
  padding-bottom: 6%;
}

.fade-out {
  -webkit-animation-name: fadeOut !important;
          animation-name: fadeOut !important;
  -webkit-animation-duration: .2s !important;
          animation-duration: .2s !important;
  -webkit-animation-fill-mode: both !important;
          animation-fill-mode: both !important;
}

/* --------------------------------------------------------------
17.0 Footer
-------------------------------------------------------------- */
.site-footer {
  background-color: var(--c__gray-400);
  color: var(--c__gray-900);
  padding: 0 0 2rem 0;
  overflow: hidden;
}
.site-footer a {
  transition: .3s ease;
  color: #fff;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--c__purple-bright);
  text-decoration: underline;
}
@media (max-width: 60em) {
  .site-footer {
    padding-bottom: 30px;
  }
}
@media (max-width: 40em) {
  .site-footer {
    font-size: 0.9375rem;
  }
}

.category-wrap + .site-footer,
.related-post-wrap + .site-footer {
  margin-top: 0;
}

.category-wrap + .site-footer .footer-widgets,
.related-post-wrap + .site-footer .footer-widgets {
  border-top: none;
}

.post-navigation + .site-footer {
  box-shadow: inset 0 50px 50px -50px rgba(0, 0, 0, 0.25);
}

@media (max-width: 60em) {
  .post-navigation + .site-footer {
    box-shadow: none;
  }
}

.footer-padding {
  padding-top: 15%;
  opacity: 0;
}

.footer-widgets .widget_wpcom_social_media_icons_widget a {
  font-size: 20.5rem;
}
.footer-widgets .widget_wpcom_social_media_icons_widget li {
  border-bottom: none;
  padding: 0;
}

.footer-widgets {
  display: inline-block;
  width: 100%;
  margin-bottom: 6%;
}

@media (max-width: 60em) {
  .footer-widgets {
    padding-top: 8%;
    margin-bottom: 0;
  }
}

.footer-widgets .footer-column {
  width: 30.6%;
  float: left;
  padding-top: 7%;
  margin-right: 4%;
  display: inline-block;
  vertical-align: top;
  transition: .2s ease-in-out;
}

@media (max-width: 60em) {
  .footer-widgets .footer-column {
    width: 100%;
    margin-bottom: 5%;
    padding-top: 0;
    margin-right: 0;
  }
}

@media (max-width: 40em) {
  .footer-widgets .footer-column {
    padding-right: 0;
    margin-bottom: 7%;
  }
}

.footer-widgets .footer-column:last-child {
  margin-right: 0;
}

.footer-widgets .footer-column:first-of-type:nth-last-of-type(2),
.footer-widgets .footer-column:first-of-type:nth-last-of-type(2) ~ .footer-column {
  width: 48%;
}

@media (max-width: 60em) {
  .footer-widgets .footer-column:first-of-type:nth-last-of-type(2),
  .footer-widgets .footer-column:first-of-type:nth-last-of-type(2) ~ .footer-column {
    width: 100%;
  }
}

.footer-widgets .footer-column:first-of-type:nth-last-of-type(3),
.footer-widgets .footer-column:first-of-type:nth-last-of-type(3) ~ .footer-column {
  width: 30.6%;
}

@media (max-width: 60em) {
  .footer-widgets .footer-column:first-of-type:nth-last-of-type(3),
  .footer-widgets .footer-column:first-of-type:nth-last-of-type(3) ~ .footer-column {
    width: 100%;
  }
}

.footer-widgets ul {
  list-style: none;
  margin: 0;
}

.footer-widgets ul li {
  padding: 0 0 0.9375rem 0;
}

.footer-widgets ul li:last-child {
  padding-bottom: 0;
}

.footer-widgets ul ul li {
  list-style-type: circle;
}

.footer-widgets ul .menu-item-has-children {
  padding-bottom: 0;
}

.footer-widgets ul.children, .footer-widgets ul.sub-menu {
  margin-left: 1.25rem;
  margin-top: 10px;
}

.footer-widgets ul.sub-menu li:last-child {
  padding-bottom: 0.9375rem;
}

.footer-widgets .sub-menu {
  margin-left: 1.25rem;
}

.footer-widgets .widget_text a {
  border-bottom: dotted 1px rgba(255, 255, 255, 0.3);
}

.footer-widgets aside + aside {
  margin-top: 40px;
}

.footer-bottom {
  display: none;
  width: 100%;
  padding-top: 4%;
}
/*.footer-widgets + .footer-bottom {
  border-top: dotted 1px rgba(255, 255, 255, 0.4);
}
@media (max-width: 60em) {
  .footer-widgets + .footer-bottom {
    padding-top: 30px;
  }
}

.footer-tagline {
  display: inline-block;
  width: 40%;
}
@media (max-width: 60em) {
  .footer-tagline {
    float: none;
    width: 100%;
    margin-top: 0.9375rem;
  }
}

.footer-navigation + .footer-tagline {
  float: right;
}

.footer-tagline a {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  padding-bottom: 1px;
}*/

.site-footer .widget-title {
  font-size: 1.125rem;
  font-weight: var(--fw__bold);
  margin-bottom: 25px;
  line-height: 1.2;
  color: #272c30;
}
@media (max-width: 60em) {
  .site-footer .widget-title {
    margin-bottom: 0.9375rem;
  }
}
@media (max-width: 40em) {
  .site-footer .widget-title {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

.footer-navigation {
  display: inline-block;
}
.footer-navigation ul {
  margin: 0;
}
.footer-navigation li {
  display: inline-block;
  list-style: none;
  margin-right: 0.9375rem;
}

/* --------------------------------------------------------------
18.0 Attachments
-------------------------------------------------------------- */
.attachment .comments-area, .attachment .entry-meta, .attachment .post-navigation, .attachment .entry-footer {
  display: none;
}

/* --------------------------------------------------------------
19.0 Animations
-------------------------------------------------------------- */
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    visibility: visible;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-24%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    visibility: visible;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 15%, 0);
    transform: translate3d(0, 15%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 15%, 0);
    transform: translate3d(0, 15%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: .2s;
          animation-duration: .2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

.animated {
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated-faster {
  -webkit-animation-duration: .2s;
          animation-duration: .2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.rslides1_on {
  display: block !important;
}

.rslides > li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}

.page .share-icons {
  margin-bottom: 1.8em;
}

.page .share-icons:empty {
  display: none;
}

.share-link {
  display: none;
}

#share-link label,
#share-link input {
  font-size: 0.9375rem;
  display: inline-block;
}

#share-link label {
  margin-bottom: 0.75rem;
}

#share-link input {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
}

.copy-label span {
  display: none;
}

.copy-label span,
.copy-toggle {
  font-weight: 600;
}

::-moz-selection {
  background: rgba(255, 244, 147, 0.8);
  color: #272c30;
}

::selection {
  background: rgba(255, 244, 147, 0.8);
  color: #272c30;
}

.widget_simpleimage .simple-image {
  margin-bottom: 0;
}

.widget_simpleimage p:last-child {
  margin-bottom: 0;
}

.widget_simpleimage .simple-image + p {
  margin-top: 0.5rem;
}

.wpcf7 p {
  font-size: 1.125rem;
}

.entry-content .jetpack-video-wrapper:empty {
  margin: 0;
}

#main div.sharedaddy,
div.jetpack-likes-widget-wrapper {
  vertical-align: top;
}
@media (max-width: 60em) {
  #main div.sharedaddy,
  div.jetpack-likes-widget-wrapper {
    width: 100%;
  }
}

.sd-social-icon a {
  background: #272c30 !important;
  color: #fff;
}
.sd-social-icon a:before {
  color: #fff;
}
.sd-social-icon .sd-content ul li a.sd-button:before {
  font-size: 1.1875rem;
}

#main .sd-social-icon .sd-content ul li[class*='share-'] a {
  margin-right: 3px;
}

#main #jp-post-flair {
  display: inline-block;
  width: 100%;
  margin-right: 0;
}

#main div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget {
  width: auto;
  float: none;
  position: relative;
  top: auto;
}

#jp-relatedposts .jp-relatedposts-post {
  width: 30.6%;
  float: left;
  display: inline-block;
  margin-right: 4%;
  margin-bottom: 0;
}
#jp-relatedposts .jp-relatedposts-post:last-child {
  margin-right: 0;
}
@media (max-width: 40em) {
  #jp-relatedposts .jp-relatedposts-post {
    float: none;
    vertical-align: top;
    width: 100%;
    margin-right: 0;
    padding-bottom: 0;
    margin-bottom: 6%;
  }
  #jp-relatedposts .jp-relatedposts-post:last-child {
    margin-bottom: 0;
  }
}

#jp-relatedposts {
  margin-top: 3%;
  padding-top: 5%;
  border-top: solid 3px #eee;
  display: inline-block;
  width: 100%;
}
#jp-relatedposts img {
  width: 100%;
}
#jp-relatedposts .jp-relatedposts-headline em {
  font-style: normal;
}
#jp-relatedposts .jp-relatedposts-post-title {
  font-size: 1.125rem;
}
#jp-relatedposts .jp-relatedposts-post-excerpt {
  display: none;
}
#jp-relatedposts .jp-relatedposts-post-date,
#jp-relatedposts .jp-relatedposts-post-context {
  font-size: 0.875rem;
  color: #62707c;
  margin-bottom: 0;
}
#jp-relatedposts a {
  color: #272c30;
}
#jp-relatedposts a:hover {
  color: #62707c;
}

.jp-relatedposts + .meta-list {
  margin-top: 30px;
  display: inline-block;
  width: 100%;
}

#wpstats {
  display: none;
}

.compat-object-fit {
  background-size: cover;
  background-position: center center;
}
.compat-object-fit img {
  opacity: 0;
}

.format-gallery .index-image,
.format-video .index-image {
  overflow: hidden;
}

.index-image {
  margin-bottom: 2%;
  display: block;
}
.index-image img {
  display: block;
}

.widget_mc4wp_form_widget p {
  margin-bottom: 1em;
}
.widget_mc4wp_form_widget p:last-of-type {
  margin-bottom: 0;
}
.widget_mc4wp_form_widget input {
  width: 100%;
  font-size: 0.875rem;
}
.widget_mc4wp_form_widget label {
  font-weight: 600;
  margin-bottom: 10px;
}
.widget_mc4wp_form_widget .mc4wp-alert {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
}
.widget_mc4wp_form_widget .mc4wp-success {
  font-size: 0.875rem;
}

.single-product .widget-area .widget_mc4wp_form_widget {
  padding: 0;
}

div[id^='contact-form'] {
  background: #eef0f4;
  padding: 8%;
  margin-bottom: 1.4em;
}

div[id^='contact-form'] h3 {
  font-size: 1.625rem;
}

@media (max-width: 60em) {
  div[id^='contact-form'] h3 {
    font-size: 22px;
  }
}

div[id^='contact-form'] h3:before {
  content: "\f003";
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
}

[id^='contact-form'] .contact-form-submission {
  padding-bottom: 0;
  margin-bottom: 0;
}

.su-accordion .su-spoiler-title {
  font-size: 1.125rem;
}

@media (max-width: 60em) {
  .su-accordion .su-spoiler-title {
    font-size: 1rem;
  }
}

.su-button span {
  border: none !important;
  padding: 0 !important;
}

#main .su-tabs-pane,
#main .su-tabs-nav span {
  font-size: 1.1875rem;
}

@media (max-width: 60em) {
  #main .su-tabs-pane,
  #main .su-tabs-nav span {
    font-size: 1rem;
  }
}

@media (max-width: 40em) {
  #main .su-tabs-pane,
  #main .su-tabs-nav span {
    font-size: 0.9375rem;
  }
}

.fl-lightbox-wrap select {
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  appearance: menulist !important;
  background: none !important;
}

.post-password-form label {
  display: inline-block;
  width: 40%;
}
.post-password-form input[type="submit"] {
  display: inline-block;
}

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

.entry-content .wpforms-container {
  background: #fff;
  padding: 5%;
  box-shadow: 0 5px 35px rgba(50, 50, 93, 0.1), 0 0px 5px rgba(0, 0, 0, 0.07);
}

.blog .post.sticky {
  background: #fff;
  padding: 4%;
  border-bottom: none;
}

.page-template-template-builder #page,
.page-template-template-builder #primary {
  padding: 0;
  max-width: 100%;
  width: 100%;
}

/*--------------------------------------------------------------
## Block Alignments
--------------------------------------------------------------*/
.wp-block-gallery {
  margin-left: 0;
  margin-bottom: 1.2em;
}

.wp-block-image figcaption {
  font-size: 0.9375rem;
  margin-top: 1em;
}

.entry-content .wp-block-gallery {
  padding-left: 0;
}

.alignfull,
.alignwide {
  margin-bottom: 2em;
  width: 100%;
}

@media (max-width: 40em) {
  .alignfull.wp-block-gallery,
  .alignwide.wp-block-gallery {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    width: inherit;
  }
}
.alignfull img,
.alignwide img {
  display: block;
}

.alignwide {
  max-width: none;
}
@media (min-width: 60em) {
  .alignwide {
    width: 75vw;
    margin-left: calc( 50% - 75vw / 2 );
  }
}

.alignfull {
  width: 100vw;
  margin-left: calc( 50% - 50vw );
  max-width: none;
}

.wp-block-group.alignfull {
  width: auto;
}

.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
  padding-top: 0;
}

.wp-block-columns {
  margin-bottom: 1.2em;
}


/*--------------------------------------------------------------
## Block Groups with Gutenberg
--------------------------------------------------------------*/
.wp-block-group.has-background {
  margin: var(--s__vertical--rem) calc(var(--s__gutter--min) * -1rem) 0;
}

.wp-block-group.has-background .wp-block-group__inner-container {
  padding: var(--s__vertical--rem) calc(var(--s__gutter--min) * 1rem);
}

@media (min-width: 30em) {
  .wp-block-group.has-background {
    margin: var(--s__vertical--rem) calc(( var(--s__gutter--min) * -1rem ) + ( var(--s__gutter--max) - var(--s__gutter--min) ) * ((100vw - var(--bp__sm) * -1rem) / ( var(--bp__xl) - var(--bp__sm) ))) 0;
  }
  .wp-block-group.has-background .wp-block-group__inner-container {
    padding: var(--s__vertical--rem) calc(( var(--s__gutter--min) * 1rem ) + ( var(--s__gutter--max) - var(--s__gutter--min) ) * ((100vw - var(--bp__sm) * 1rem) / ( var(--bp__xl) - var(--bp__sm) )));
  }
}

@media (min-width: 80em) {
  .wp-block-group.has-background {
    margin: var(--s__vertical--rem) calc(var(--s__gutter--max) * -1rem) 0;
  }
  .wp-block-group.has-background .wp-block-group__inner-container {
    padding: calc(var(--s__vertical--rem) * 2) calc(var(--s__gutter--max) * 1rem);
  }
}

.page-template-template-builder .alignfull.wp-block-group.has-background {
  margin-left: 0;
  margin-right: 0;
}

.wp-block-group__inner-container {
  margin: 0 auto;
  max-width: 48em;
}

.wp-block-image .aligncenter>figcaption, .wp-block-image .alignleft>figcaption, .wp-block-image .alignright>figcaption, .wp-block-image.is-resized>figcaption {
  display: block;
  caption-side: inherit;
}

.d-none {
	display: none;
}
.d-inline {
	display: inline;
}
.d-block {
	display: block;
}

@media (min-width: 600px) {
  .d-sm-none { display: none; }
	.d-sm-inline { display: inline; }
	.d-sm-block { display: block; }
}

@media (min-width: 760px) {
	.d-md-none { display: none; }
	.d-md-inline { display: inline; }
	.d-md-block { display: block; }
}

@media (min-width: 960px) {
	.d-lg-none { display: none; }
	.d-lg-inline { display: inline; }
	.d-lg-block { display: block; }
}

@media (min-width: 1200px) {
	.d-xl-none { display: none; }
	.d-xl-inline { display: inline; }
	.d-xl-block { display: block; }
}
