/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/



*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html {
  font-size: 112.5%;
  /*18px*/
}
@media (max-width: 768px) {
  html {
    font-size: 100%;
  }
}

body,
button,
input,
select,
optgroup,
textarea, p {
  font-family: 'embury-text', sans-serif;
  font-weight: 200;
  line-height: 1.5;
  color: #2A2A2E;
}

::selection {
  background: #2A2A2E;
  color: white;
}

.header-xl, h1, h2, h3, h4, h5 {
  clear: both;
  margin: 0;
  font-family: 'degular-display', 'Kaisei Opti', sans-serif;
  font-weight: 400;
}

:is(.header-xl, h1, h2, h3, /* h4, */ h5, p):not(.eyebrow) + :is(.header-xl, h1, h2, h3, h4, h5, p) {
    margin: 1.05em 0 0;
}

.eyebrow:first-child, h4:first-child {
  margin: 0 0 .5em;
}


.header-xl {
  margin-top: 0;
  font-size: 4.066em;
  line-height: 1;
}

h1 {
  font-size: 2.863em;
  line-height: 1;
}

h2 {
  font-size: 2.016em;
  line-height: 1;
}

h3, h4 {
  font-size: 1.42em;
  line-height: 1.2;
}

b, strong {
  font-weight: 600;
}

p {
  margin-bottom: 1.15rem;
}

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

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

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

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

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

big {
  font-size: 125%;
}

small, .text_small {
  font-size: 0.833em;
}

.lead, .quote, blockquote {
  font-size: 1.222em;
  /*line-height: 1.6;*/
  font-style: oblique;
  color: #2A2A2E;
  border-left: 2px solid #2A2A2E;
  padding: 0rem 0rem 0.25rem 1.25rem;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  overscroll-behavior: none;
}

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

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

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

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

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

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

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

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #fff;
  border-radius: 3px;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #EFE6DF;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #EFE6DF;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #fff;
  border: 1px solid #EFE6DF;
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #fff;
}

select {
  border: 1px solid #EFE6DF;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #2A2A2E;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #2A2A2E;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

p a, p a:hover, p a:visited {
  border-bottom: 1px solid #2A2A2E;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.related-container {

  z-index: -1;
  display: block;
}

.related-container, .footer-metadata {
    padding: 2rem 4rem;
  background: #EFE6DF;
    width: 100%;
    box-sizing: border-box;
}
.related-container .related-title h1 {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  font-weight: 600;
  text-align: center;
}
.related-container h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  border-bottom: 1px solid;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .related-container {
    position: sticky;
    bottom: 0;
    z-index: 999998;
  }
}
@media screen and (max-width: 768px) {
  .related-container {
    padding: 2rem 1rem;
  }
}

.related-project-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .related-project-container {
    flex-direction: column;
  }
}

.related-image {
  display: block;
  width: auto;
  height: 72%;
  background-position: center;
  background-size: cover;
}

.related-project {
  height: 45vh;
  width: 31%;
}
@media (max-width: 768px) {
  .related-project {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .footer-metadata {
    display: flex;
    justify-content: space-between;
  }
}
.footer-metadata * {
  font-size: 0.75rem;
  font-weight: 500;
  color: #2A2A2E;
  opacity: 0.6;
}
.footer-metadata * a {
  text-decoration: #2A2A2E;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #F8F4EE;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #EFE6DF;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

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

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

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

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

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

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

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

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

.post,
.page {
  margin: 0 0;
  z-index: 999999;
  position: relative;
  background: white;
}

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

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

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

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

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/



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

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

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

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Custom
--------------------------------------------------------------*/
body {
  opacity: 1;
  transition: 1s opacity;
  color: #2A2A2E;
}
@media (min-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

body.fade-out {
  opacity: 0;
  transition: none;
}

#main {
  background: #fff;
}

.link-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*
#######################
##______POSTS ONLY______
#######################
 */


/*
#######################
##______WORDPRESS CHANGES______
#######################
*/


/*
#######################
##______SINGLE SECTION______
#######################
*/
.one-section {
  max-width: 700px;
  padding: 5vw;
  margin: auto;
}

/*
#######################
##______DARK MODE______
#######################
*/


/*
#######################
##______VIMEO______
#######################
*/

/*
#######################
##______WORKS PAGE ONLY______
#######################
*/