h1, h2, h3, h4, h5, h6, p {
  padding: 0 !important;
  margin: 0 !important;
}

.title-xl {
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .title-xl {
    font-size: 2rem;
  }
}

.title-lg {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .title-lg {
    font-size: 1.5rem;
  }
}

.title-md {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .title-md {
    font-size: 1.25rem;
  }
}

.centered-text {
  text-align: center;
}

.light-grey-text {
  color: #878787;
}

.animation {
  background: linear-gradient(90deg, #e8e8e8, #878787, #e8e8e8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite, fadeUp 0.8s ease forwards;
  opacity: 0;
}
@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.margin-horizontal-auto {
  margin-left: auto;
  margin-right: auto;
}

.margin-top-md {
  margin-top: 6rem;
}

.padding-top-md {
  padding-top: 6rem;
}

.padding-bottom-xs {
  padding-bottom: 0.75rem;
}

.padding-vertical-sm {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.padding-horizontal-sm {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.padding-vertical-md {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.padding-horizontal-md {
  padding-right: 3rem;
  padding-left: 3rem;
}

.section-label {
  font-size: 0.75rem;
  color: #878787;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 3rem !important;
  display: block;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3rem !important;
}
.section-header .section-label {
  margin-bottom: 0 !important;
}

.section-header__link {
  font-size: 0.75rem;
  color: #2877ef;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid #252525;
  padding: 1.5rem;
  margin-top: 6rem;
}

.site-footer__text {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.75rem;
  color: #878787;
  text-align: center;
}
.site-footer__text a {
  color: #878787;
  text-decoration: none;
}
.site-footer__text a:hover {
  color: #e8e8e8;
}

.icon.with-bg {
  background-color: #252525;
  padding: 0.5rem;
  border-radius: 1rem;
}
.icon img {
  width: 3rem;
  height: 3rem;
}

.card {
  padding: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.card.fluid {
  width: 100%;
}
.card.xl {
  width: 12rem;
}
.card.vertical {
  flex-direction: column;
}
.card.horizontal {
  flex-direction: row;
}
.card.with-bg {
  background-color: #252525;
  border-radius: 1rem;
}
.card p {
  text-align: center;
}
.card a {
  color: #878787;
  text-decoration: none;
}

.image-horizontal-sm {
  width: 1.5rem;
  height: auto;
}

.image-vertical-sm {
  height: 1.5rem;
  width: auto;
}

.image-axial-sm {
  height: 1.5rem;
  width: 1.5rem;
}

.badge-primary {
  background-color: #e8b776;
  color: #1b1b1b;
}
.badge-primary.xxxs-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 840px) {
  .pillars-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 480px;
  }
}

.pillar-card {
  padding: 3rem;
  background-color: #252525;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: #e8e8e8;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.pillar-card:hover {
  border-color: #878787;
}

.pillar-label {
  font-size: 0.75rem;
  color: #878787;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.pillar-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #e8e8e8;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.2;
}

.pillar-description {
  font-size: 0.75rem;
  color: #878787;
  line-height: 1.65;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  flex-grow: 1;
}

.pillar-link {
  font-size: 0.75rem;
  color: #2877ef;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-top: 0.75rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 840px) {
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 655px) {
  .journal-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.journal-card {
  padding: 1.5rem;
  background-color: #252525;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: #e8e8e8;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.journal-card:hover {
  border-color: #878787;
}

.journal-card__category {
  font-size: 0.75rem;
  color: #878787;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.journal-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8e8e8;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.4;
}

.journal-card__excerpt {
  font-size: 0.75rem;
  color: #878787;
  line-height: 1.65;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  flex-grow: 1;
}

.journal-card__date {
  font-size: 0.75rem;
  color: #878787;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-top: 0.75rem;
}

.journal-page-header {
  margin-bottom: 3rem;
}

.journal-page-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  font-weight: 400;
  color: #e8e8e8;
  margin-bottom: 0.5rem !important;
}

.journal-page-subtitle {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.95rem;
  color: #878787;
}

.journal-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.journal-filter__btn {
  font-size: 0.75rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #878787;
  background: none;
  border: 1px solid #252525;
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.journal-filter__btn:hover, .journal-filter__btn.active {
  color: #e8e8e8;
  border-color: #878787;
}

.article-layout {
  max-width: 680px;
  margin: 0 auto;
}

.article-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #252525;
}

.article-category {
  font-size: 0.75rem;
  color: #e8b776;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-title {
  font-size: 2rem;
  font-weight: 400;
  color: #e8e8e8;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.3;
}
@media screen and (max-width: 840px) {
  .article-title {
    font-size: 1.5rem;
  }
}

.article-meta {
  font-size: 0.75rem;
  color: #878787;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.article-body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.75rem;
  color: #e8e8e8;
  line-height: 1.85;
}
.article-body p + p {
  margin-top: 1.5rem !important;
}
.article-body p + h2 {
  margin-top: 3rem !important;
}
.article-body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 3rem !important;
  margin-bottom: 0.75rem !important;
  color: #e8e8e8;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.article-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1.5rem !important;
  color: #e8e8e8;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.article-body a {
  color: #2877ef;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
}

a {
  text-decoration: none;
  color: #2877ef;
}

.dark-theme {
  background-color: #1b1b1b;
  color: #e8e8e8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 840px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 655px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.wide-layout {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.layout-md {
  width: 50%;
}
@media screen and (max-width: 840px) {
  .layout-md {
    width: 75%;
  }
}
@media screen and (max-width: 655px) {
  .layout-md {
    width: 100%;
  }
}

.group {
  display: flex;
}
.group.gap-lg {
  gap: 6rem;
}
.group.gap-md {
  gap: 3rem;
}
.group.gap-sm {
  gap: 1.5rem;
}
.group.gap-xxs {
  gap: 0.5rem;
}
.group.vertical {
  flex-direction: column;
}
.group.horizontal {
  flex-direction: row;
}
.group.space-between {
  justify-content: space-between;
}

.screen-height {
  min-height: 100svh;
}

.horizontal-group, .horizontal-group-xs-gap, .horizontal-group-sm-gap {
  display: flex;
}

.horizontal-group-sm-gap {
  gap: 1.5rem;
}

.horizontal-group-xs-gap {
  gap: 0.75rem;
}

.align-self-center {
  align-self: center;
}

.hero {
  min-height: 72svh;
  display: flex;
  align-items: center;
}

.hero__inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero__heading {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  color: #e8e8e8;
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.hero__subtitle {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.95rem;
  color: #878787;
  line-height: 1.7;
  max-width: 560px;
}

.page-photo {
  width: 100%;
  height: calc(72svh - 3.5rem);
  position: relative;
  overflow: hidden;
}

.page-photo__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #1b1b1b 100%);
  z-index: 1;
}

.page-photo__image {
  width: calc(100% - 3rem);
  height: 100%;
  margin: 0 auto;
  background-image: url("../../images/kacperraubo-photo.JPEG");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hub-statement {
  max-width: 680px;
}

.hub-statement__heading {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: #e8e8e8;
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.hub-statement__subtitle {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.95rem;
  color: #878787;
  line-height: 1.7;
  max-width: 560px;
}

.identity-strip {
  padding-top: 6rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.identity-strip__heading {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  color: #e8e8e8;
  line-height: 1.35;
  margin-bottom: 3rem !important;
}

.identity-strip__text {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.9rem;
  color: #878787;
  line-height: 1.75;
  margin-bottom: 0.75rem !important;
}

.photo-carousel-section {
  padding: 3rem 0;
}

.photo-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.photo-carousel {
  display: flex;
  gap: 0.75rem;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1.5rem;
}
.photo-carousel::-webkit-scrollbar {
  display: none;
}

.photo-carousel__img {
  height: 480px;
  width: auto;
  object-fit: cover;
  border-radius: 0.5rem;
  scroll-snap-align: start;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 655px) {
  .photo-carousel__img {
    height: 260px;
  }
}

.photo-carousel__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background: #252525;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e8e8e8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s;
}
.photo-carousel__arrow:hover {
  background: #3a3a3a;
}
.photo-carousel__arrow--prev {
  left: 0.75rem;
}
.photo-carousel__arrow--next {
  right: 0.75rem;
}

.project-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 3rem;
}

.project-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background-color: #252525;
  border-radius: 0.5rem;
  text-decoration: none;
}

.project-link__name {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.95rem;
  color: #e8e8e8;
}

.project-link__category {
  font-size: 0.75rem;
  color: #878787;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-left: 0.5rem;
}

.project-link__url {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.75rem;
  color: #2877ef;
}

.contact-layout {
  max-width: 480px;
}

.contact-block {
  margin-bottom: 6rem;
}
.contact-block:last-child {
  margin-bottom: 0;
}

.contact-block__label {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.75rem;
  color: #878787;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem !important;
  display: block;
}

.contact-block__handle {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.25rem;
  color: #e8e8e8;
  margin-bottom: 1.5rem !important;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-link a {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.95rem;
  color: #e8e8e8;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background-color: #252525;
  border-radius: 0.5rem;
  display: block;
  transition: color 0.15s ease;
}
.contact-link a:hover {
  color: #2877ef;
}

.contact-block__email {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.95rem;
  color: #e8e8e8;
  padding: 0.75rem 1.5rem;
  background-color: #252525;
  border-radius: 0.5rem;
  display: block;
}

.solution-layout {
  max-width: 680px;
  margin: 0 auto;
}

.solution-back {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.75rem;
  color: #878787;
  text-decoration: none;
  display: block;
  margin-bottom: 6rem !important;
  transition: color 0.15s ease;
}
.solution-back:hover {
  color: #e8e8e8;
}

.solution-header {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #252525;
}

.solution-label {
  font-size: 0.75rem;
  color: #e8b776;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem !important;
  display: block;
}

.solution-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  font-weight: 400;
  color: #e8e8e8;
  line-height: 1.2;
  margin-bottom: 1.5rem !important;
}
@media screen and (max-width: 840px) {
  .solution-title {
    font-size: 1.5rem;
  }
}

.solution-description {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.75rem;
  color: #878787;
  line-height: 1.85;
}
.solution-description p + p {
  margin-top: 1.5rem !important;
}

.solution-url {
  display: inline-block;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.95rem;
  color: #2877ef;
  margin-top: 3rem !important;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

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