/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(800px - (30px * 2));
  max-width: calc(800px - 30px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: -webkit-calc(800px - (30px));
    max-width: calc(800px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}

/**
 * Clearfix
 */
.footer-col-wrapper:after, .wrapper:after {
  content: "";
  display: table;
  clear: both;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Open Sans", Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body {
  margin: 0;
}

ul {
  padding: 0;
}

a {
  color: #ff3300;
  text-decoration: none;
}
a:hover {
  color: #00ccff;
}

.username {
  margin-left: 5px;
}

.flex {
  display: flex;
}

.panel {
  flex: 1;
}

.home h1 {
  font-size: 3em;
  margin: 0;
}
.home h4 {
  margin: 0;
}
.home .center {
  margin-top: 40vh;
}
.home .unstyled {
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none;
}
.home .inline li {
  display: inline;
  padding: 50vh 15px 50vh 15px;
}
.home .inline li:hover {
  background-color: #ff3300;
}
.home .inline li:hover i {
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  transform: translateY(-15px);
}
.home .inline li a {
  color: #ff3300;
}
@media (max-width: 732px) {
  .home .flex {
    display: block;
  }
  .home .inline li {
    padding: 0 30px 0 0;
  }
  .home .inline li:hover {
    background-color: transparent;
  }
  .home .inline li:hover i {
    color: #00ccff;
    transition: none;
    transform: none;
  }
}
.home .home-nav {
  margin-top: 5px;
  font-size: 1em;
  font-weight: 700;
}
.home .home-nav a {
  margin-right: 10px;
}

/**
 * Site header
 */
.site-header {
  background-color: #ffffff;
  min-height: 55.95px;
  position: relative;
}

.site-title {
  font-size: 34.125px;
  font-weight: 700;
  line-height: 70.875px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
  color: #ff3300;
}

.site-nav {
  float: right;
  line-height: 70.875px;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  color: #333333;
  line-height: 1.5;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 20px;
}
.site-nav .page-link:hover {
  border-bottom: 1px solid #ff3300;
}
@media screen and (max-width: 732px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: #ff3300;
    border: 1px solid transparent;
    border-radius: 5px;
    text-align: right;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 2;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg path {
    fill: white;
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav .page-link {
    display: block;
    padding: 5px 10px;
    color: #ffffff;
    margin-left: 20px;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
}

/**
 * Site footer
 */
.site-footer {
  color: #ffffff;
  background-color: #292929;
  padding: 30px 0;
}

.footer-heading {
  font-size: 23.625px;
  margin-bottom: 15px;
}

.site-image {
  height: 30px;
  width: 30px;
  border-radius: 5px;
}

.contact-list,
.social-media-list {
  list-style: none;
  margin-left: 0;
}

.footer-col-wrapper {
  font-size: 15.75px;
  color: #828282;
  margin-left: -15px;
}

.footer-col {
  float: left;
  margin-bottom: 15px;
  padding-left: 15px;
}

.footer-col-1 {
  width: -webkit-calc(35% - (30px / 2));
  width: calc(35% - 30px / 2);
}

.footer-col-2 {
  width: -webkit-calc(20% - (30px / 2));
  width: calc(20% - 30px / 2);
}

.footer-col-3 {
  width: -webkit-calc(45% - (30px / 2));
  width: calc(45% - 30px / 2);
}

@media screen and (max-width: 800px) {
  .footer-col-1,
  .footer-col-2 {
    width: -webkit-calc(50% - (30px / 2));
    width: calc(50% - 30px / 2);
  }
  .footer-col-3 {
    width: -webkit-calc(100% - (30px / 2));
    width: calc(100% - 30px / 2);
  }
}
@media screen and (max-width: 732px) {
  .footer-col {
    float: none;
    width: -webkit-calc(100% - (30px / 2));
    width: calc(100% - 30px / 2);
  }
}
/**
 * Page content
 */
.page-content {
  font-size: 21px;
  padding: 30px 0;
}

.page-heading {
  font-size: 26.25px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 18.375px;
  color: #828282;
}

.post-link {
  display: block;
  font-size: 31.5px;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 30px;
}

.post-title {
  font-size: 55.125px;
  letter-spacing: -1px;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .post-title {
    font-size: 47.25px;
  }
}

.post-content {
  margin-bottom: 30px;
}
.post-content h2 {
  font-size: 42px;
}
@media screen and (max-width: 800px) {
  .post-content h2 {
    font-size: 36.75px;
  }
}
.post-content h3 {
  font-size: 34.125px;
}
@media screen and (max-width: 800px) {
  .post-content h3 {
    font-size: 28.875px;
  }
}
.post-content h4 {
  font-size: 26.25px;
}
@media screen and (max-width: 800px) {
  .post-content h4 {
    font-size: 23.625px;
  }
}

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