/*
Theme Name: Portfolio Theme v2.2
Author: Tia Gay O'Gilvie
Description: Theme created and designed for Tia O'Gilvie's portfolio.
Version: 2.2.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: portfolio-to
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

a {
  color: inherit;
}

html {
  font-family: "Poppins", sans-serif;
}
html header {
  font-weight: 500;
  color: white;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
nav li {
  margin: 1px;
}
nav a {
  text-decoration: none;
  display: block;
  padding: 0.5rem;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  /* width: 100%; */
  background-color: #ffffff;
  box-shadow: 0 1px 10px 5px rgba(0, 0, 0, 0.05);
}

header.site-header .site-header-wrapper {
  grid-gap: 1rem;
  padding: 0.5rem 1rem;
  align-items: center;
  justify-content: space-between;
  justify-items: center;
  display: flex;
  flex-direction: row;
  max-width: -webkit-fill-available;
  margin: auto;
  max-height: 80px;
}
header.site-header .site-header-wrapper .site-branding img {
  width: auto;
  height: 25px;
}
header.site-header .site-header-wrapper .site-branding .site-title {
  text-transform: uppercase;
  font-size: 1.5rem;
}
header.site-header .site-header-wrapper .site-branding .site-title a {
  text-decoration: none;
}
header.site-header .site-header-wrapper .site-branding .site-description {
  display: none;
}
header.site-header .site-header-wrapper .site-navigation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: black;
  /* Menu Icon */
  /* Style label tag */
  /* Style span tag */
  /* Hide checkbox */
  /* Toggle menu icon */
}
header.site-header .site-header-wrapper .site-navigation nav.menu-top {
  flex-grow: 2;
}
header.site-header .site-header-wrapper .site-navigation nav.menu-top ul#menu-top-menu {
  text-transform: uppercase;
  font-weight: 200;
}
header.site-header .site-header-wrapper .site-navigation nav.menu-top ul#menu-top-menu a:hover {
  color: #6f6f6f;
}
header.site-header .site-header-wrapper .site-navigation nav.menu-social {
  flex-grow: 2;
  top: 118px;
  max-height: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  transition: max-height 0.5s ease-out;
  z-index: 999;
  box-shadow: -5px 5px 5px #76757538;
}
header.site-header .site-header-wrapper .site-navigation nav.menu-social ul#menu-social-menu {
  text-transform: uppercase;
}
header.site-header .site-header-wrapper .site-navigation nav.menu-social ul#menu-social-menu li:nth-child(1) {
  color: #007C7C;
}
header.site-header .site-header-wrapper .site-navigation nav.menu-social ul#menu-social-menu a:hover {
  color: #6f6f6f;
}
header.site-header .site-header-wrapper .site-navigation nav.menu-social ul#menu-right-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: -webkit-fill-available;
  background-color: white;
  /* z-index: -1; */
  /* position: absolute; */
  justify-content: flex-start;
  align-items: flex-start;
  align-content: center;
}
header.site-header .site-header-wrapper .site-navigation .menu .menu-item-140 a:hover {
  color: #0072b1;
}
header.site-header .site-header-wrapper .site-navigation .menu a {
  display: block;
  padding: 30px;
  color: black;
  font-weight: initial;
}
header.site-header .site-header-wrapper .site-navigation .menu a:hover {
  color: #6f6f6f;
}
header.site-header .site-header-wrapper .site-navigation .menu a:hover {
  background-color: var(--gray);
}
header.site-header .site-header-wrapper .site-navigation .hamb {
  cursor: pointer;
  float: right;
}
header.site-header .site-header-wrapper .site-navigation .hamb-line {
  background: black;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
  border-radius: 4px;
}
header.site-header .site-header-wrapper .site-navigation .hamb-line::before,
header.site-header .site-header-wrapper .site-navigation .hamb-line::after {
  background: black;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
header.site-header .site-header-wrapper .site-navigation .hamb-line::before {
  top: 6px;
  border-radius: 4px;
}
header.site-header .site-header-wrapper .site-navigation .hamb-line::after {
  top: -6px;
  border-radius: 4px;
}
header.site-header .site-header-wrapper .site-navigation .side-menu {
  display: none;
}
header.site-header .site-header-wrapper .site-navigation .side-menu:checked ~ nav.menu-social {
  max-height: 100%;
  background-color: white;
}
header.site-header .site-header-wrapper .site-navigation .side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
header.site-header .site-header-wrapper .site-navigation .side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
header.site-header .site-header-wrapper .site-navigation .side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}
@media screen and (min-width: 700px) {
  header.site-header .site-header-wrapper {
    padding: 0.5rem 2rem;
  }
  header.site-header .site-header-wrapper .site-branding {
    justify-self: flex-start;
    flex-grow: 1;
  }
  header.site-header .site-header-wrapper .site-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: -webkit-fill-available;
    flex: 0 2 auto;
  }
  header.site-header .site-header-wrapper .site-navigation .menu a {
    padding: 30px 0 30px 30px;
  }
  header.site-header .site-header-wrapper .site-navigation nav.menu-social {
    top: unset;
    max-height: unset;
    width: unset;
    height: unset;
    position: unset;
    overflow: visible;
    flex-direction: row;
    box-shadow: unset;
  }
  header.site-header .site-header-wrapper .site-navigation nav.menu-social ul#menu-right-menu {
    flex-direction: row;
    width: unset;
    height: -webkit-fill-available;
    background-color: transparent;
    /* z-index: -1; */
    /* position: absolute; */
    align-items: center;
    justify-content: flex-end;
  }
  header.site-header .site-header-wrapper .site-navigation .hamb {
    display: none;
  }
}
@media screen and (min-width: 420px) {
  header.site-header .site-header-wrapper {
    max-width: 1080px;
  }
}

.header-border {
  height: 0px;
}

html {
  background-color: #fff;
  color: #0c0c0c;
}

main {
  margin: auto;
}
img {
  width: 100%;
  height: auto;
}
img .custom-logo {
  width: 100px;
}
@media screen and (min-width: 600px) {
  img .custom-logo {
    width: 60px;
  }
}

.wrap-parallax {
  display: grid;
  height: 60vh;
}

.parallax {
  /* layering image with text */
  grid-column: 1/-1;
  grid-row: 1/-1;
  /* The image used */
  background-image: url("images/jeremy-bishop-8xznAGy4HcY-unsplash.jpg");
  /* Set a specific height */
  height: 100%;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.intro-text {
  grid-column: 1/-1;
  grid-row: 1/-1;
  color: white;
}

.intro-text {
  margin: auto;
  padding: 3rem 1rem;
  font-size: 20px;
  max-height: 240px;
  max-width: 1080px;
}
.intro-text .bold-text {
  font-weight: 700;
}
@media screen and (min-width: 700px) {
  .intro-text {
    padding: 8rem 2rem 3rem 2rem;
  }
}

.work-posts, .all-work, .visual-work, .archive-post-page {
  margin: auto;
  padding: 0 1rem;
  display: grid;
  column-gap: 1rem;
  max-width: 1080px;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
}
@media screen and (min-width: 700px) {
  .work-posts, .all-work, .visual-work, .archive-post-page {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(3, minmax(auto, 1fr));
  }
}
.work-posts h2.section-title, .work-posts .archive-title-wrapper, .all-work h2.section-title, .all-work .archive-title-wrapper, .visual-work h2.section-title, .visual-work .archive-title-wrapper, .archive-post-page h2.section-title, .archive-post-page .archive-title-wrapper {
  padding: 5rem 0;
  grid-column: 1/-1;
  padding-bottom: 0;
  font-weight: 700;
  font-size: 24px;
}
.work-posts a, .all-work a, .visual-work a, .archive-post-page a {
  text-decoration: none;
  grid-column: 1/-1;
  width: -webkit-fill-available;
  height: unset;
}
.work-posts h3, .all-work h3, .visual-work h3, .archive-post-page h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.825rem;
  padding-bottom: 0.5rem;
}
.work-posts .post-content, .all-work .post-content, .visual-work .post-content, .archive-post-page .post-content {
  background-color: #fff;
}
.work-posts .post-content .entry-content, .all-work .post-content .entry-content, .visual-work .post-content .entry-content, .archive-post-page .post-content .entry-content {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 1rem auto;
}
.work-posts .post-content .entry-content p, .all-work .post-content .entry-content p, .visual-work .post-content .entry-content p, .archive-post-page .post-content .entry-content p {
  background-color: #fff;
  text-align: center;
  width: -webkit-fill-available;
  padding-top: 0.5rem;
}
.work-posts .post-content .post-thumbnail, .all-work .post-content .post-thumbnail, .visual-work .post-content .post-thumbnail, .archive-post-page .post-content .post-thumbnail {
  position: relative;
  overflow: hidden;
}
.work-posts .post-content .post-thumbnail .transition-wrapper .post-cover-img:hover, .all-work .post-content .post-thumbnail .transition-wrapper .post-cover-img:hover, .visual-work .post-content .post-thumbnail .transition-wrapper .post-cover-img:hover, .archive-post-page .post-content .post-thumbnail .transition-wrapper .post-cover-img:hover {
  opacity: 100%;
}
.work-posts .post-content .post-thumbnail .transition-wrapper .post-cover-img a, .all-work .post-content .post-thumbnail .transition-wrapper .post-cover-img a, .visual-work .post-content .post-thumbnail .transition-wrapper .post-cover-img a, .archive-post-page .post-content .post-thumbnail .transition-wrapper .post-cover-img a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.work-posts .post-content .post-thumbnail a img, .all-work .post-content .post-thumbnail a img, .visual-work .post-content .post-thumbnail a img, .archive-post-page .post-content .post-thumbnail a img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 420px) {
  .work-posts .post-content .post-thumbnail a img, .all-work .post-content .post-thumbnail a img, .visual-work .post-content .post-thumbnail a img, .archive-post-page .post-content .post-thumbnail a img {
    width: 100%;
  }
}
.work-posts .post-content .post-title, .all-work .post-content .post-title, .visual-work .post-content .post-title, .archive-post-page .post-content .post-title {
  padding-top: 1rem;
  font-weight: bold;
}
.work-posts .post-content .post-title a:hover, .all-work .post-content .post-title a:hover, .visual-work .post-content .post-title a:hover, .archive-post-page .post-content .post-title a:hover {
  color: #6f6f6f;
}
.work-posts .post-content .entry-category .category a:hover, .all-work .post-content .entry-category .category a:hover, .visual-work .post-content .entry-category .category a:hover, .archive-post-page .post-content .entry-category .category a:hover {
  color: #6f6f6f;
}

footer#site-footer {
  text-align: center;
  max-width: 1080px;
  padding: 5rem 1rem 1rem;
  margin-top: 5rem;
  margin: auto;
}
footer#site-footer a:hover {
  color: #6f6f6f;
}
footer#site-footer .contact-me-footer {
  padding-bottom: 3rem;
  display: flex;
  flex-direction: row;
  align-content: flex-end;
  align-items: flex-end;
  max-width: 1080px;
}
footer#site-footer .contact-me-footer a {
  color: #0072b1;
}
footer#site-footer .contact-me-footer a:hover {
  color: #6f6f6f;
}
footer#site-footer .contact-me-footer h2 {
  font-size: 20px;
  font-weight: bold;
  padding-right: 1rem;
}
footer#site-footer .footer-signature {
  font-size: 12px;
  text-align: center;
}

.single .type-post {
  margin: auto;
  padding: 5rem 0 2rem 0;
}
.single .type-post h1, .single .type-post h2, .single .type-post h3, .single .type-post h4, .single .type-post h5, .single .type-post p, .single .type-post ul, .single .type-post ol, .single .type-post .post-category {
  max-width: 1080px;
  margin: auto !important;
  padding-left: 1rem;
  padding-right: 1rem;
}
.single .type-post h1, .single .type-post h3, .single .type-post h4, .single .type-post h5 {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  /* font-weight: bold; */
  /* text-transform: uppercase; */
  /* font-size: 0.825rem; */
  font-size: revert;
  font-weight: revert;
  text-transform: none;
}
.single .type-post h2 {
  font-size: revert;
  font-weight: revert;
  text-transform: none;
}
.single .type-post .wp-block-columns {
  max-width: 1080px;
  margin: auto;
}
.single .type-post .wp-block-columns h4, .single .type-post .wp-block-columns h3 {
  padding-top: 0.5rem;
}
.single .type-post .wp-block-columns p {
  padding-top: 0 !important;
}
.single .type-post a {
  text-decoration: none;
}
.single .type-post .post-thumbnail {
  display: none;
  padding: 1rem 0;
}
.single .type-post .post-thumbnail img {
  max-width: 800px;
}
.single .type-post .entry-content p {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 14px;
}
.single .type-post .entry-content p strong {
  font-weight: bold;
}
.single .type-post .entry-content .slick-dots {
  bottom: -35px;
}
.single .type-post .entry-content ol {
  list-style: decimal;
  font-size: 14px;
  padding-left: revert;
}
.single .type-post .entry-content ul {
  list-style: disc;
  font-size: 14px;
  padding-left: 24px;
}
.single .type-post .entry-content .wide-image-block {
  background-color: #f7f7f7;
  margin: 1rem auto;
  text-align: center;
}
.single .type-post .entry-content .wide-image-block .wp-block-image img, .single .type-post .entry-content .wide-image-block .advgb-images-slider-block {
  height: auto;
  max-width: 80vw;
  margin: auto;
  display: block;
  padding: 1rem 0;
}
.single .type-post .entry-content #tool {
  text-align: left;
}
.single .type-post .entry-content #tool .wp-block-image img {
  margin-left: auto;
}
.single .type-post .entry-content #hero .wp-block-image img {
  max-width: 1080px;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 1080px) {
  .single .type-post .entry-content #hero .wp-block-image img {
    padding: 0.5rem 0;
  }
}
@media screen and (min-width: 1440px) {
  .single .type-post .entry-content .wp-block-image img {
    max-width: 1080px;
  }
}
.single .type-post .entry-category {
  padding: 0;
}
.single .type-post .entry-category .category a:hover {
  color: #5d5d5d;
}
@media screen and (min-width: 1080px) {
  .single .type-post ul.post-category {
    padding-left: 0;
  }
  .single .type-post .wp-block-columns p, .single .type-post .wp-block-columns h3, .single .type-post .wp-block-columns h4 {
    padding-left: 0;
    padding-right: 0;
  }
}

.site-main .archive-post-page .archive-title-wrapper, .site-main .all-work .archive-title-wrapper, .site-main .visual-work .archive-title-wrapper {
  grid-column: 1/-1;
}
.site-main .archive-post-page .archive-title-wrapper h2, .site-main .all-work .archive-title-wrapper h2, .site-main .visual-work .archive-title-wrapper h2 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.site-main .archive-post-page a, .site-main .all-work a, .site-main .visual-work a {
  text-decoration: none;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}
.site-main .archive-post-page a:hover, .site-main .all-work a:hover, .site-main .visual-work a:hover {
  color: #5d5d5d;
}
.site-main .archive-post-page h3, .site-main .all-work h3, .site-main .visual-work h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.825rem;
  padding-bottom: 0.5rem;
}
.site-main .archive-post-page .post-content, .site-main .all-work .post-content, .site-main .visual-work .post-content {
  background-color: #fff;
}
.site-main .archive-post-page .post-content .post-thumbnail, .site-main .all-work .post-content .post-thumbnail, .site-main .visual-work .post-content .post-thumbnail {
  position: relative;
  overflow: hidden;
}
.site-main .archive-post-page .post-content .post-thumbnail .transition-wrapper .post-cover-img, .site-main .all-work .post-content .post-thumbnail .transition-wrapper .post-cover-img, .site-main .visual-work .post-content .post-thumbnail .transition-wrapper .post-cover-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #003e3ede;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  transition: all 0.5s;
}
.site-main .archive-post-page .post-content .post-thumbnail .transition-wrapper .post-cover-img:hover, .site-main .all-work .post-content .post-thumbnail .transition-wrapper .post-cover-img:hover, .site-main .visual-work .post-content .post-thumbnail .transition-wrapper .post-cover-img:hover {
  opacity: 100%;
  color: white;
}
.site-main .archive-post-page .post-content .post-thumbnail .transition-wrapper .post-cover-img a, .site-main .all-work .post-content .post-thumbnail .transition-wrapper .post-cover-img a, .site-main .visual-work .post-content .post-thumbnail .transition-wrapper .post-cover-img a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-main .archive-post-page .post-content .post-thumbnail .transition-wrapper .post-cover-img a:hover, .site-main .all-work .post-content .post-thumbnail .transition-wrapper .post-cover-img a:hover, .site-main .visual-work .post-content .post-thumbnail .transition-wrapper .post-cover-img a:hover {
  color: white;
}
.site-main .archive-post-page .post-content .post-thumbnail a img, .site-main .all-work .post-content .post-thumbnail a img, .site-main .visual-work .post-content .post-thumbnail a img {
  display: block;
}
.site-main .archive-post-page .post-content .entry-category .category, .site-main .all-work .post-content .entry-category .category, .site-main .visual-work .post-content .entry-category .category {
  text-transform: lowercase;
}

.page .content-area .site-main section.about-me {
  max-width: 1080px;
  margin: auto;
  padding: 5rem 1rem 2rem;
}
.page .content-area .site-main section.about-me h2,
.page .content-area .site-main section.about-me h3 {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
}
.page .content-area .site-main section.about-me h3 {
  font-size: 1.25rem;
}
.page .content-area .site-main section.about-me .post-content thead {
  font-weight: 700;
}
.page .content-area .site-main section.about-me ul {
  list-style: revert;
  font-size: 14px;
  padding-left: 24px;
}
.page .content-area .site-main section.about-me hr.wp-block-separator {
  width: 50vw;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page .content-area .site-main section.about-me p {
  padding-bottom: 1rem;
  font-size: 14px;
}
.page .content-area .site-main section.about-me p a {
  font-style: italic;
  text-decoration: none;
  color: #007C7C;
  font-weight: 500;
}
.page .content-area .site-main section.about-me p a:hover {
  color: #6f6f6f;
}

/*# sourceMappingURL=style.css.map */
