/*!
 * 2023-06-19T20:31:29+00:00
 * css/main.css,css/common.css,css/sidebar.css
 */

/*! css/main.css */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy:wght@100;200;300;400;500;600;700;800&display=swap');

:root {
  --font-family-body: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans',
    'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --font-family-heading: 'Luckiest Guy', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial,
    'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';

  --c-brand-colour: #b11313;
  --c-offset-grey: #535353;
  --c-button-grey: #555;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-family-body);
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #ececec;
}

::-webkit-scrollbar-thumb {
  background-color: var(--c-brand-colour);
}

::-webkit-scrollbar-track {
  background-color: #ececec;
}

.text-content::-webkit-scrollbar {
  width: 12px;
  background-color: #fff;
}

.text-content::-webkit-scrollbar-thumb {
  background-color: green;
}

.text-content::-webkit-scrollbar-track {
  width: 12px;
  background-color: #fff;
}

body {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100vh;
  background-image: url('/assets/images/bg-tile.png');
  margin: unset;
  overflow-x: hidden;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: var(--admin-bar-height, 0);
  z-index: 1;
  background: #43464b;
}

header i {
  color: #d9d9d9;
  font-size: 30px;
}

header .logo-holder {
  line-height: 29px;
  text-align: center;
  max-height: 80px;
}

ul.share-container {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.container {
  width: 100%;
}

ul.share-container li {
  display: inline-block;
}

ul.share-container a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 500;
}

header .top-nav {
  width: 40%;
  background: #43464b;
  height: 80px;
  padding: unset;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

header .top-nav .btn {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  font-family: var(--font-family-heading);
  text-shadow: 0 -2px 0 #212121, 0 -2px 0 #212121, 0 2px 0 #212121, 0 2px 0 #212121, -2px 0 0 #212121, 2px 0 0 #212121,
    -2px 0 0 #212121, 2px 0 0 #212121, -2px -2px 0 #212121, 2px -2px 0 #212121, -2px 2px 0 #212121, 2px 2px 0 #212121,
    -2px 6px 0 #212121, 0 6px 0 #212121, 3px 5px 0 #212121;
}

header .btn:hover {
  color: #b11313;
}

.social-content i {
  color: #fff;
  font-size: 30px;
  margin: 1rem;
}

.main-logo {
  color: var(--c-brand-colour);
  font-size: 40px;
  font-weight: 700;
  font-family: Exo;
}

.main-logo span {
  color: var(--c-offset-grey);
}

.main-logo-subtitle {
  color: var(--c-offset-grey);
  font-size: 20px;
  font-family: Exo;
}

footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 50px;
  color: #fff;
  position: sticky;
  bottom: 0;
  background: #43464b;
  height: 2.8rem;
}

footer .left-content {
  display: flex;
}

footer .footer-email {
  margin-left: 2rem;
}

footer i {
  color: #d9d9d9;
  font-size: 24px;
  padding-left: 10px;
}

.body-content-holder {
  flex: 1;
  position: relative;
  margin-bottom: 20px;
}

.body-content-holder .swiper-slide {
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  height: 350px;
}

.body-content-holder .swiper-pagination {
  position: absolute;
  bottom: 0;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  bottom: 0;
}

.swiper-pagination-bullet {
  width: 150px;
  border-radius: unset;
  height: 40px;
  border: 2px solid var(--c-brand-colour);
  border-left: unset;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin: unset !important;
  opacity: 1;
}

.swiper-pagination-bullet:hover {
  background: var(--c-brand-colour);
}

.swiper-pagination-bullet:first-child {
  border-left: 2px solid var(--c-brand-colour);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--c-brand-colour);
}

.swiper-pagination-bullet.bg-grey,
.swiper-slide button.bg-grey,
.bg-grey {
  background: var(--c-button-grey);
  color: #fff;
  border-color: var(--c-button-grey);
}

.swiper-pagination-bullet.bg-brand,
.swiper-slide button.bg-brand,
.bg-brand {
  background: var(--c-brand-colour);
  color: #fff;
  border-color: var(--c-brand-colour);
}

.swiper-pagination-bullet.double {
  width: 300px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-family-heading);
  text-shadow: 0 -2px 0 #212121, 0 -2px 0 #212121, 0 2px 0 #212121, 0 2px 0 #212121, -2px 0 0 #212121, 2px 0 0 #212121,
    -2px 0 0 #212121, 2px 0 0 #212121, -2px -2px 0 #212121, 2px -2px 0 #212121, -2px 2px 0 #212121, 2px 2px 0 #212121,
    -2px 6px 0 #212121, 0 6px 0 #212121, 3px 5px 0 #212121;
}

.twitter-feed {
  color: white;
  background: #b11313;
  width: 100%;
  border: 12px solid #fff;
}

.twitter-feed Icon Icon--share TweetAction-icon {
  color: rgba(0, 0, 0, 8);
}

.blog-partial-holder {
  background: #b11313;
  padding: 15px;
  color: #fff;
  border: 12px solid #fff;
}

.blog-partial-holder .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 350px;
}

.swiper-slide h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.swiper-slide h2 {
  font-size: 40px;
  font-weight: 800;
}

.swiper-slide .btn {
  padding: 5px 20px;
  border-radius: 8px;
}

.swiper-slide .btn.button1 {
  color: #fff;
  background: red;
}

.swiper-slide .btn.button2 {
  color: red;
  background: #fff;
}

.swiper-slide p {
  color: #fff;
}

.swiper-slide p a {
  color: var(--c-brand-colour);
}

.body-content-holder .swiper-slide.light {
  background: #f4f4f4;
  justify-content: unset;
  padding: 1.5rem 0;
  text-align: center;
}

.swiper-slide.light h1,
.swiper-slide.light h2 {
  color: var(--c-offset-grey);
}

.swiper-slide.light p {
  color: #888;
  font-size: 18px;
  max-width: 800px;
}

.left-power {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  height: 50px;
  transform: rotateZ(-90deg);
  left: -50px;
  margin: auto;
  border-radius: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.right-power {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -50px;
  width: 150px;
  height: 50px;
  transform: rotateZ(90deg);
  margin: auto;
  border-radius: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.case-study-wrapper {
  position: absolute;
  bottom: 0;
  width: calc(100% - 1.5rem);
  height: 145px;
  overflow: hidden;
  transition: height 1s;
  background-color: #f4f4f4;
}

.case-study-wrapper.open {
  height: 100%;
}

.case-study-wrapper .text-left {
  display: inline-block;
}

.case-study-wrapper.open .text-left {
  display: none;
}

.case-study-wrapper.open .text-right {
  display: inline-block;
}

.case-study-wrapper .text-right {
  display: none;
}

.case-study-gallery-holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}

.case-study-gallery-holder > .case-study-gallery {
  height: 150px;
}

.case-study-gallery-holder.small > .case-study-gallery {
  height: 100px;
}

.case-study-gallery-holder {
  width: 100%;
  max-width: 800px;
}

.case-study-image {
  margin-bottom: 30px;
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-weight: 700;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: multiply;
}

.side-image {
  background-position: center;
  background-size: cover;
}

.right-text {
  height: 70%;
  overflow: hidden;
  text-align: left;
  margin-top: 3rem;
}

.scrollable {
  overflow-y: scroll;
  height: 70%;
}

.case-study-gallery-holder .case-study-image {
  height: 100%;
  width: 100%;
}

.swiper-slide.light p span {
  color: var(--c-offset-grey);
  font-weight: 700;
  cursor: pointer;
}

.row.case-study-gallery-holder.small {
  position: absolute;
  bottom: 0;
  height: 165px;
  overflow: hidden;
}

.row.case-study-gallery-holder.small {
}

.wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}

.hero-item,
.standard-item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news-item {
  display: inline-block;
  min-height: 400px;
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}

.hero-item h1 {
  font-size: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.news-item {
  width: auto;
}

.standard-item {
  background: #fff;
  grid-row: 0.5;
}

.hero-item {
  grid-column: 1 / span 2;
  grid-row: 0.02;
  -webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 98%, 49% 96%, 0% 100%, 0% 0%);
  clip-path: polygon(100% 0%, 100% 0%, 100% 98%, 49% 96%, 0% 100%, 0% 0%);
  background: #000;
}

.no-hero .hero-item {
  display: none;
}

.standard-item:before {
  background: #b11313;
  content: '';
  position: absolute;
  height: calc(100% - 30px);
  width: calc(100% - 30px);
  top: 15px;
  left: 15px;
}

.standard-item .content {
  z-index: 10;
  position: absolute;
  padding-right: 60px;
}

.standard-item .content.text-content {
  overflow-y: auto;
}

.standard-item[class*='left'] .content.text-content {
  margin-right: 60px;
  padding-right: 0;
  max-height: 460px;
}

.standard-item[class*='right'] .content.text-content {
  max-height: 280px;
  margin-right: 20px;
}

.standard-item[class*='left'] .content.text-content h1 {
  margin-left: 20px;
}

.standard-item.full .content {
  width: 80%;
}

a.hitCounter.badge-done0 {
  background-image: unset !important;
  text-indent: unset !important;
  min-width: unset !important;
}

.card-title {
  color: #000;
  text-align: center;
  font-weight: 600;
  padding: 0 10px;
}

.hitCounter {
  padding: 0.5rem 1rem;
  display: inline-block;
  background: #000;
  font-family: var(--font-family-heading);
  font-size: 2rem;
  transform: rotate(-6deg) translate(-3px, -3px);
}

a.hitCounter.badge-done0:before {
  content: 'Visits';
}

.standard-item .content.withImage {
  left: 2%;
  top: 3%;
  height: 94%;
  width: 96%;
  background-size: cover;
  background-position: center;
}

.standard-item.hero-item .content.withImage {
  left: 1%;
  top: 3%;
  height: 94%;
  width: 98%;
}

.standard-item.hero-item:before {
  clip-path: polygon(100% 0%, 100% 0%, 100% 98%, 49% 96%, 0% 100%, 0% 0%);
}

.standard-item.hero-item .content.withImage {
  clip-path: polygon(100% 0%, 100% 0%, 100% 98%, 49% 96%, 0% 100%, 0% 0%);
}

.standard-item.left {
  grid-column: 1 / span 1;
  -webkit-clip-path: polygon(0% 5%, 0% 79%, 90% 81%, 100% 0%);
  clip-path: polygon(0% 5%, 0% 79%, 90% 81%, 100% 0%);
  padding-top: 80px;
  padding-left: 30px;
  padding-right: 30px;
}

.standard-item.left .content.withImage {
  clip-path: polygon(0% 5%, 0% 79%, 90% 81%, 100% 0%);
}

.standard-item.left:before {
  clip-path: polygon(0% 5%, 0% 79%, 90% 81%, 100% 0%);
}

.standard-item.left2 {
  grid-column: 1 / span 1;
  -webkit-clip-path: polygon(0% 5%, 0% 100%, 96% 95%, 90% 6%);
  clip-path: polygon(0% 5%, 0% 100%, 96% 95%, 90% 6%);
  margin-top: -100px;
  padding-top: 80px;
  padding-left: 30px;
  padding-right: 30px;
}

.standard-item.left2 .content.withImage {
  clip-path: polygon(0% 5%, 0% 100%, 96% 95%, 90% 6%);
}

.standard-item.left2:before {
  clip-path: polygon(0% 5%, 0% 100%, 96% 95%, 90% 6%);
}

.standard-item.right {
  grid-column: 2 / span 1;
  -webkit-clip-path: polygon(13% 0%, 4% 84%, 100% 100%, 100% 2%);
  clip-path: polygon(13% 0%, 4% 84%, 100% 100%, 100% 2%);
  margin-left: -14%;
  margin-bottom: 18px;
  padding-top: 50px;
  padding-left: 100px;
  padding-right: 20px;
}

.standard-item.right:before {
  clip-path: polygon(13% 0%, 4% 84%, 100% 100%, 100% 2%);
}

.standard-item.right .content.withImage {
  clip-path: polygon(13% 0%, 4% 84%, 100% 100%, 100% 2%);
}

.standard-item.right2 {
  grid-column: 2 / span 1;
  -webkit-clip-path: polygon(5% 6%, 10% 98%, 100% 95%, 100% 18%);
  clip-path: polygon(5% 6%, 10% 98%, 100% 95%, 100% 18%);
  margin-top: -100px;
  margin-left: -14%;
  margin-bottom: 18px;
  padding-top: 50px;
  padding-left: 100px;
  padding-right: 20px;
}

.standard-item.right2:before {
  clip-path: polygon(5% 6%, 10% 98%, 100% 95%, 100% 18%);
}

.standard-item.right2 .content.withImage {
  clip-path: polygon(5% 6%, 10% 98%, 100% 95%, 100% 18%);
}

.standard-item.full {
  grid-column: 1 / span 2;
  grid-row: 0.6666666667;
  -webkit-clip-path: polygon(45% 1%, 100% 15%, 100% 100%, 0 100%, 0 1%);
  clip-path: polygon(45% 1%, 100% 15%, 100% 100%, 0 100%, 0 1%);
  margin-top: -78px;
  padding-top: 70px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
}

.standard-item.full:before {
  clip-path: polygon(45% 1%, 100% 15%, 100% 100%, 0 100%, 0 1%);
}

.heroes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-holder {
  height: 200px;
  width: 150px;
  margin: 10px;
  background: var(--c-brand-colour);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.donation-bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100px;
  height: 400px;
  border-radius: 5px;
  background-image: url('https://cdn-stockportspidey-co-uk.s3.eu-west-2.amazonaws.com/images/44bb46cc-c06f-4d50-ae65-9a51de6ccf41.png');
  margin: auto;
  position: relative;
  background-size: auto 100%;
}

.donation-goal {
  left: 100%;
  height: 100px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  background-image: url(https://cdn-stockportspidey-co-uk.s3.eu-west-2.amazonaws.com/images/48734e65-d505-4917-b0df-2f7dd8a58af6.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.donation-bar .progress-bar {
  width: 80px;
  position: absolute;
  transform: rotate(180deg);
  background: transparent;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -90px;
  transition: bottom 2s ease 0s;
  transition-delay: 1s;
}

.loader {
  position: fixed;
  z-index: 101;
  background: red;
  height: 100%;
  width: 100%;
  text-align: center;
  background-image: url(https://s0.geograph.org.uk/geophotos/05/03/54/5035412_12134ef7.jpg);
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  display: none;
}

.loader img {
  transform: scaleX(-1);
  margin: auto;
}

@font-face {
  font-family: 'SequentialistBB';
  src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/306FA6_1_0.woff2') format('woff2'),
    url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/306FA6_0_0.woff') format('woff');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'SequentialistBB';
  src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/306FA6_0_0.woff2') format('woff2'),
    url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/306FA6_0_0.woff') format('woff');
  font-style: italic;
  font-weight: 400;
}

.donation-bar .bubble {
  background: url(https://cdn-stockportspidey-co-uk.s3.eu-west-2.amazonaws.com/images/b3a57634-555c-42c5-b87b-be013dfe6460.png);
  width: 100px;
  height: 60px;
  padding: 10px 10px 20%;
  position: absolute;
  left: 20%;
  bottom: -20px;
  font-family: SequentialistBB, cursive;
  color: #000;
  margin: 0 auto;
  text-align: center;
  box-sizing: content-box;
  line-height: 1;
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: 100% 100%;
  transition: bottom 2s ease 0s;
  transition-delay: 1s;
}

.donation-progress {
  position: absolute;
  left: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}

.hero-holder:hover {
  text-decoration: none;
}

.hero-holder h5 {
  margin: unset;
  padding: 5px 10px;
}

.hero-holder .hero-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.social-content {
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-item h1 {
    font-size: 3rem;
  }

  .standard-item,
  .standard-item .content.withImage,
  .standard-item:before {
    clip-path: polygon(0% 9%, 9% 100%, 100% 91%, 90% 1%) !important;
  }

  .standard-item {
    padding: unset !important;
    margin: 0 0 !important;
    grid-column: 1 / span 2 !important;
  }

  .standard-item .content {
    padding: 50px !important;
  }
}

.honeycomb img {
  width: 100%;
  display: block;
}

.honeycomb.container {
  padding: 1rem 0 2.4rem;
  /* 	background-color: gold; */
  text-align: center;
  flex: unset;
}

.honeycomb .item {
  width: 10rem;
  height: 10rem;
  position: relative;

  /* Default - simple fallback when no CSS Grid support */
  display: inline-block;
  margin: 0.4rem;
}

.honeycomb .item::before {
  /* Goldenrod outline on the hexagon */
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--c-brand-colour);
  clip-path: polygon(50% 0, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
  transform: scale(1.077);
  transition: transform 0.3s;
}

.honeycomb .item:hover::before {
  transform: scale(1.154);
}

.honeycomb .item a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 	background-image: See JS. */
  background-size: cover;
  background-position: center;
  clip-path: polygon(50% 0, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
}

@media (min-width: 992px) {
  .d-lg-grid {
    display: grid !important;
  }
}

@media (max-width: 1100px) {
  header .top-nav .btn {
    font-size: 19px;
  }
}

@media (max-width: 900px) and (min-width: 600px) {
  header .logo-holder {
    max-height: 60px;
  }

  header .top-nav.left-nav,
  header .top-nav.right-nav {
    padding: unset;
  }

  header .top-nav .btn {
    font-size: 12px;
  }
}

@supports (display: grid) {
  @media (min-width: 17rem) {
    .honeycomb.container {
      display: grid;
      max-width: 15rem;
      grid-template-columns: repeat(3, 5rem);
    }

    .honeycomb .item {
      grid-column: span 2;
      margin: 0; /* reset */
      margin-bottom: -1.4rem; /* shifting up the items in the next row */
    }

    .honeycomb .item:nth-child(even) {
      grid-column: 2;
    }
  }

  @media (min-width: 22rem) {
    .honeycomb.container {
      max-width: 20rem;
      grid-template-columns: repeat(4, 5rem);
    }

    .honeycomb .item:nth-child(3n + 1) {
      grid-column: 1;
    }

    .honeycomb .item:nth-child(3n + 2) {
      grid-column: 3;
    }

    .honeycomb .item:nth-child(3n + 0) {
      grid-column: 2;
    }
  }

  @media (min-width: 32rem) {
    .honeycomb.container {
      max-width: 30rem;
      grid-template-columns: repeat(6, 5rem);
    }

    .honeycomb .item:nth-child(5n + 1) {
      grid-column: 1;
    }

    .honeycomb .item:nth-child(5n + 2) {
      grid-column: 3;
    }

    .honeycomb .item:nth-child(5n + 3) {
      grid-column: 5;
    }

    .honeycomb .item:nth-child(5n + 4) {
      grid-column: 2;
    }

    .honeycomb .item:nth-child(5n + 0) {
      grid-column: 4;
    }
  }

  @media (min-width: 42rem) {
    .honeycomb.container {
      max-width: 40rem;
      grid-template-columns: repeat(8, 5rem);
    }

    .honeycomb .item:nth-child(7n + 1) {
      grid-column: 1;
    }

    .honeycomb .item:nth-child(7n + 2) {
      grid-column: 3;
    }

    .honeycomb .item:nth-child(7n + 3) {
      grid-column: 5;
    }

    .honeycomb .item:nth-child(7n + 4) {
      grid-column: 7;
    }

    .honeycomb .item:nth-child(7n + 5) {
      grid-column: 2;
    }

    .honeycomb .item:nth-child(7n + 6) {
      grid-column: 4;
    }

    .honeycomb .item:nth-child(7n + 0) {
      grid-column: 6;
    }
  }

  @media (min-width: 54rem) {
    .honeycomb.container {
      max-width: 50rem;
      grid-template-columns: repeat(10, 5rem);
    }

    .honeycomb .item:nth-child(9n + 1) {
      grid-column: 1;
    }

    .honeycomb .item:nth-child(9n + 2) {
      grid-column: 3;
    }

    .honeycomb .item:nth-child(9n + 3) {
      grid-column: 5;
    }

    .honeycomb .item:nth-child(9n + 4) {
      grid-column: 7;
    }

    .honeycomb .item:nth-child(9n + 5) {
      grid-column: 9;
    }

    .honeycomb .item:nth-child(9n + 6) {
      grid-column: 2;
    }

    .honeycomb .item:nth-child(9n + 7) {
      grid-column: 4;
    }

    .honeycomb .item:nth-child(9n + 8) {
      grid-column: 6;
    }

    .honeycomb .item:nth-child(9n + 0) {
      grid-column: 8;
    }
  }
}

/*added by me*/
.social a {
  padding-right: 10px;
}

.blog-partial-holder item ul a {
  font-family: 'Luckiest Guy', sans-serif;
}


/*! css/common.css */

/*
 * Do not place rules that alter the structure/layout of the page in this file.  In general, if your desired rule causes
 * the size or position of ANY element to change, it is not a good candidate for this file.  Place them in the main.css
 * or admin.css files instead.
 */

.disabled,
[disabled],
:disabled {
  opacity: 0.8;
  pointer-events: none;
}

.pointer-events-all {
  pointer-events: all;
}

.pointer-events-none {
  pointer-events: none;
}


/*! css/sidebar.css */

body .overlay-tinter {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s;
  top: 0;
  left: 0;
  z-index: 50;
  position: fixed;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

body.menu-open .overlay-tinter {
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

body.menu-open #sidebar {
  left: 0;
}

.sidenav {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: -100%;
  background-color: grey;
  overflow-x: hidden;
  transition: 0.5s;
}

.sidenav .close-holder {
  padding: 1rem;
  position: absolute;
  left: 0;
  color: #FFF;
  font-weight: 500;
  font-size: 24px;
  font-family: 'Luckiest Guy';
  text-shadow: 0px -2px 0 #212121, 0px -2px 0 #212121, 0px 2px 0 #212121, 0px 2px 0 #212121, -2px 0px 0 #212121, 2px 0px 0 #212121, -2px 0px 0 #212121, 2px 0px 0 #212121, -2px -2px 0 #212121, 2px -2px 0 #212121, -2px 2px 0 #212121, 2px 2px 0 #212121, -2px 6px 0 #212121, 0px 6px 0 #212121, 3px 5px 0 #212121;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  padding: 100px 30px 0;
  color: #FFF;
  text-align: center;
  height: 100%;
}

.sidebar-content h1 {
  color: var(--cyan);
}

.sidenav .profile-name {
  font-weight: 700;
  font-size: 1.2rem;
}

.sidenav .profile-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 10px;
}

.sidenav .profile-stat-holder {
  text-align: center;
}

.sidenav .profile-stat-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.sidenav h2 {
  text-align: left;
  line-height: 40px;
}

.sidenav .sidebar-navigation {
  padding-top: 20px;
  flex: 1;
}

.sidebar-navigation button.btn {
  padding: unset;
  margin: unset;
}

.sidenav .sidebar-navigation a,
.sidenav .sidebar-navigation button {
  /* margin-bottom: -6px; */
  text-decoration: none;
  font-size: 24px;
  color: #FFF;
  display: block;
  transition: right 0.5s;
  padding: 5px 0;
  line-height: 32px;
  margin: auto;
  font-weight: 500;
  font-size: 24px;
  font-family: 'Luckiest Guy';
  text-shadow: 0px -2px 0 #212121, 0px -2px 0 #212121, 0px 2px 0 #212121, 0px 2px 0 #212121, -2px 0px 0 #212121, 2px 0px 0 #212121, -2px 0px 0 #212121, 2px 0px 0 #212121, -2px -2px 0 #212121, 2px -2px 0 #212121, -2px 2px 0 #212121, 2px 2px 0 #212121, -2px 6px 0 #212121, 0px 6px 0 #212121, 3px 5px 0 #212121;
}

.sidenav .sidebar-navigation a:hover {
  color: #B11313;
  font-size: 30px;
  transform: rotate(-8deg);
}

.sidenav .sidebar-navigation .sub-list a,
.sidenav .sidebar-navigation .sub-list button {
  font-size: 18px;
  line-height: 21px;
  /* margin-bottom: .4rem; */
  letter-spacing: .4px;
}

.sidebar-list-item i {
  font-size: 18px;
}

.sidebar-list {
  list-style-type: none;
  padding-left: 0;
}

.sidebar-list .sidebar-list a,
.sidebar-list .sidebar-list button {
  font-size: 18px;
  line-height: 21px;
  /* margin-top: .2rem; */
}

.sidebar-list-item:not(:last-child) {
  margin-bottom: 1rem;
}

.sidebar-list-item-link {
  margin: 0;
}

.sidebar-list-item > .sidebar-list {
  opacity: 0.75;
}

.sidebar-list-item .sidebar-list-item-expand {
  opacity: 0.5;
}

.sidebar-list-item .sidebar-list-item-collapse {
  color: #eea70f;
}

.sidebar-list-item.--is-expanded .sidebar-list-item-expand {
  display: none;
}

.sidebar-list-item:not(.--is-expanded) .sidebar-list-item-collapse {
  display: none;
}

.scrollbox {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.scrollbox > .scrollbox-scroll {
  flex: 1;
  overflow-y: scroll;
  scroll-behavior: smooth;

  scrollbar-width: none;
}

.scrollbox > .scrollbox-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.scrollbox > .scrollbox-up,
.scrollbox > .scrollbox-down {
  align-self: center;
}
