:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  --font: "Work Sans", sans-serif;
  --global-bg: #fdfdfd;
  --blue: #2799f0;
  --primary-colour: var(--blue);
  --yellow: #ffc306;
  --secondary-colour: var(--yellow);
  --orange: #ff9700;
  --night-blue: #060A1E; /* #060A1E Please leave this colour -PR */
  --near-black: #080b1c;
  --dark-grey: #2e3438;
  --medium-blue-grey: #52697a;
  --medium-blue-grey-transparent: #52697a66;
  --medium-blue: #334499;
  --medium-blue-transparent: #33449966;
  --medium-grey: #eee;
  --grey: #ababab;
  --light: #fdfdfd;
  --near-white: #f1f6fb;
  /* light mode colours */
  --heading-color: var(--near-black);
  --primary-text-colour: var(--night-blue);
  --secondary-text-colour: var(--light);
  --toggle-bar: #e8f3fc;
  /* dark mode colours */
  --dark-mode_heading-color: var(--near-white);
  --dark-mode_primary-colour: var(--secondary-colour);
  --dark-mode_secondary-colour: var(--primary-colour);
  --dark-mode_global-bg: linear-gradient(to bottom left, var(--near-black), var(--night-blue));
  --dark-mode_primary-text-colour: var(--near-white);
  --dark-mode_secondary-text-colour: var(--grey);
  --dark-mode_grey: #abb8c3;
  --box-shadow: 0px 0px 29px 2px var(--medium-blue-transparent);
  /* Navigation colors */
  --nav-bg: var(--light);
  --border-color: var(--medium-grey);
  --text-color: var(--primary-text-colour);
  /*features page*/
}
:root body {
  --background-color: #18181B;
  --text-color: #A1A1AA;
  --card-background-gradient: 71deg, #0a0a21, #0a0a1a, #090b18;
  --card-background-color: rgba(255, 255, 255, .015);
  --card-border-color: rgba(255, 255, 255, 0.1);
  --card-box-shadow-1: rgba(0, 0, 0, 0.05);
  --card-box-shadow-1-y: 3px;
  --card-box-shadow-1-blur: 6px;
  --card-box-shadow-2: rgba(0, 0, 0, 0.1);
  --card-box-shadow-2-y: 8px;
  --card-box-shadow-2-blur: 15px;
  --card-label-color: #FFFFFF;
  --card-icon-color: #D4D4D8;
  --card-icon-background-color: rgba(255, 255, 255, 0.08);
  --card-icon-border-color: rgba(255, 255, 255, 0.12);
  --card-shine-opacity: .1;
  --card-shine-gradient: conic-gradient(from 205deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, #1056b9 25deg, rgba(52, 108, 211, 0.18) 295deg, rgba(16, 185, 129, 0) 360deg);
  --card-line-color: rgba(52, 132, 211, 0.24);
  --card-hover-border-color: rgba(52, 132, 211, 0.24);
  --card-hover-box-shadow-1: rgba(0, 0, 0, 0.04);
  --card-hover-box-shadow-1-y: 5px;
  --card-hover-box-shadow-1-blur: 10px;
  --card-hover-box-shadow-2: rgba(0, 0, 0, 0.3);
  --card-hover-box-shadow-2-y: 15px;
  --card-hover-box-shadow-2-blur: 25px;
  --card-hover-icon-color: #3484d3;
  --card-hover-icon-background-color: rgba(52, 137, 211, 0.1);
  --card-hover-icon-border-color: rgba(52, 137, 211, 0.2);
  --blur-opacity: .01;
}
:root body.light-mode {
  --background-color: #FAFAFA;
  --text-color: #52525B;
  --card-background-gradient: 71deg, #ffffff, #f4f4f4, #ffffff;
  --card-background-color: transparent;
  --card-border-color: rgba(24, 24, 27, 0.08);
  --card-box-shadow-1: rgba(24, 24, 27, 0.02);
  --card-box-shadow-1-y: 3px;
  --card-box-shadow-1-blur: 6px;
  --card-box-shadow-2: rgba(24, 24, 27, 0.04);
  --card-box-shadow-2-y: 2px;
  --card-box-shadow-2-blur: 7px;
  --card-label-color: #18181B;
  --card-icon-color: #18181B;
  --card-icon-background-color: transparent;
  --card-icon-border-color: rgba(24, 24, 27, 0.1);
  --card-shine-opacity: .3;
  --card-shine-gradient: conic-gradient(from 225deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, #1065b9 25deg, #edf2fa 285deg, #FFFFFF 345deg, rgba(16, 185, 129, 0) 360deg);
  --card-line-color: #d3d3d4;
  --card-hover-border-color: rgba(24, 24, 27, 0.15);
  --card-hover-box-shadow-1: rgba(24, 24, 27, 0.05);
  --card-hover-box-shadow-1-y: 3px;
  --card-hover-box-shadow-1-blur: 6px;
  --card-hover-box-shadow-2: rgba(24, 24, 27, 0.1);
  --card-hover-box-shadow-2-y: 8px;
  --card-hover-box-shadow-2-blur: 15px;
  --card-hover-icon-color: #1056b9;
  --card-hover-icon-background-color: transparent;
  --card-hover-icon-border-color: #1056b9;
  --blur-opacity: .1;
}

:root {
  --theme-toggle-icon: url(/assets/images/night-mode-blue.svg);
  --dark-mode_theme-toggle-icon: url(/assets/images/night-mode-yellow.svg);
}

html body.dark-mode {
  background-color: var(--night-blue);
  background: var(--dark-mode_global-bg);
  /* Dark mode navigation colors */
  --nav-bg: var(--near-black);
  --border-color: var(--dark-grey);
  --text-color: var(--dark-mode_primary-text-colour);
}
html body.dark-mode a, html body.dark-mode h1, html body.dark-mode h2, html body.dark-mode h3, html body.dark-mode p, html body.dark-mode li {
  color: var(--dark-mode_primary-text-colour);
}
html body.dark-mode a.brand_text, html body.dark-mode h1.brand_text, html body.dark-mode h2.brand_text, html body.dark-mode h3.brand_text, html body.dark-mode p.brand_text, html body.dark-mode li.brand_text {
  color: var(--dark-mode_primary-colour);
}
html body.dark-mode #features a.inline-link:hover {
  color: var(--secondary-colour);
}
html body.dark-mode p.sub {
  color: var(--dark-mode_grey);
}
html body.dark-mode nav#navbar {
  background: var(--dark-mode_global-bg);
}
html body.dark-mode nav#navbar .burger div {
  background-color: var(--dark-mode_primary-text-colour);
}
html body.dark-mode nav#navbar h2 {
  color: var(--dark-mode_heading-color);
}
html body.dark-mode nav#navbar a.nav-link {
  color: var(--dark-mode_grey);
}
html body.dark-mode nav#navbar a.nav-link:hover {
  color: var(--dark-mode_primary-colour);
}
html body.dark-mode nav#navbar .toggle-icon {
  background-image: var(--dark-mode_theme-toggle-icon);
}
html body.dark-mode .chevron-header {
  background-color: var(--dark-mode_primary-colour);
  background: linear-gradient(to right, var(--orange), transparent 30%, transparent 70%, var(--orange)), linear-gradient(to bottom, var(--yellow) 70%, var(--orange));
}
html body.dark-mode .chevron-header h1 {
  color: var(--night-blue);
}
html body.dark-mode .chevron-header p {
  color: var(--heading-color);
}
html body.dark-mode .tab {
  background-color: var(--dark-grey);
}
html body.dark-mode .tablinks {
  color: var(--dark-mode_primary-colour);
}
html body.dark-mode .tablinks.active {
  color: var(--night-blue);
}
html body.dark-mode .active-tab {
  background-color: var(--dark-mode_primary-colour);
}
html body.dark-mode section#blog h2 {
  color: var(--dark-mode_primary-text-colour);
}
html body.dark-mode .article-card {
  background-color: var(--near-black);
}
html body.dark-mode .article-card .img-wrapper {
  background-color: var(--dark-mode_secondary-colour);
}
html body.dark-mode .article-card .card-content {
  color: var(--dark-mode_primary-text-colour);
}
html body.dark-mode article#about-dev h2#greeting {
  color: var(--dark-mode_primary-colour);
}
html body.dark-mode header#blog-header {
  background-color: var(--dark-grey);
  background: linear-gradient(to right, var(--dark-grey) 60%, var(--night-blue) 180%);
}
html body.dark-mode .social-bar a {
  background-color: var(--near-black);
}
html body.dark-mode .social-bar a i.icon.social {
  color: var(--near-white);
}
html body.dark-mode .social-bar a:hover {
  background-color: var(--near-black);
}
html body.dark-mode .social-bar a:hover i.icon.social {
  color: var(--dark-mode_primary-colour);
}
html body.dark-mode .social-bar.blog a.icon {
  background-color: var(--dark-mode_grey);
}
html body.dark-mode .social-bar.blog a.icon i {
  color: var(--night-blue);
}
html body.dark-mode .social-bar.blog a.icon:hover {
  background-color: var(--near-black);
}
html body.dark-mode .social-bar.blog a.icon:hover i {
  color: var(--dark-mode_primary-colour);
}
html body.dark-mode .avatar#gary {
  /*background-color: ;*/
}
html body.dark-mode .avatar#phil {
  background: linear-gradient(to bottom right, #4B2670, #ba77b1);
}
html body.dark-mode .avatar#tom {
  background: linear-gradient(to top, #940C2D, #FF003D);
}
html body.dark-mode .avatar#monem {
  background: linear-gradient(to bottom, #FEFEFE, #2D2D2D);
}
html body.dark-mode .avatar#koto {
  background: linear-gradient(to bottom, #0EA7A5, #BBEBFF);
}
html body.dark-mode .headshot i.icon.social {
  color: var(--dark-mode_primary-text-colour);
}
html body.dark-mode .headshot i.icon.social:hover {
  color: var(--night-blue);
}
html body.dark-mode a.button {
  background-color: var(--dark-mode_primary-colour);
  color: var(--near-black);
}
html body.dark-mode a.button.icon i {
  color: var(--near-black);
}
html body.dark-mode article * {
  color: var(--near-white);
}
html body.dark-mode article a {
  color: var(--dark-mode_grey);
}
html body.dark-mode article a:hover {
  color: var(--dark-mode_primary-colour);
}
html body.light-mode {
  background-color: var(--global-bg);
}
html body.light-mode a, html body.light-mode h1, html body.light-mode h2, html body.light-mode h3, html body.light-mode p, html body.light-mode li {
  color: var(--primary-text-colour);
}
html body.light-mode a.brand_text, html body.light-mode h1.brand_text, html body.light-mode h2.brand_text, html body.light-mode h3.brand_text, html body.light-mode p.brand_text, html body.light-mode li.brand_text {
  color: var(--primary-colour);
}
html body.light-mode #features a.inline-link:hover {
  color: var(--primary-colour);
}
html body.light-mode p.sub {
  color: var(--grey);
}
html body.light-mode nav#navbar {
  background-color: var(--global-bg);
}
html body.light-mode nav#navbar h2 {
  color: var(--heading-color);
}
html body.light-mode nav#navbar a.nav-link {
  color: var(--grey);
}
html body.light-mode nav#navbar a.nav-link:hover {
  color: var(--primary-colour);
}
html body.light-mode nav#navbar .toggle-icon {
  background-image: var(--theme-toggle-icon);
}
html body.light-mode .chevron-header {
  background-color: var(--primary-colour);
}
html body.light-mode .chevron-header h1 {
  color: var(--secondary-text-colour);
}
html body.light-mode .chevron-header p {
  color: var(--secondary-text-colour);
}
html body.light-mode .tab {
  background-color: var(--light);
}
html body.light-mode .tablinks {
  color: var(--primary-colour);
}
html body.light-mode .tablinks.active {
  color: var(--secondary-text-colour);
}
html body.light-mode .active-tab {
  background-color: var(--primary-colour);
}
html body.light-mode section#blog h2 {
  color: var(--primary-text-colour);
}
html body.light-mode .article-card {
  background-color: var(--secondary-text-colour);
}
html body.light-mode .article-card .img-wrapper {
  background-color: var(--secondary-colour);
}
html body.light-mode .article-card .card-content h3, html body.light-mode .article-card .card-content h5, html body.light-mode .article-card .card-content p {
  color: var(--night-blue);
}
html body.light-mode .article-card .card-content p.sub {
  color: var(--grey);
}
html body.light-mode article#about-dev h2#greeting {
  color: var(--primary-colour);
}
html body.light-mode header#blog-header {
  background-color: var(--medium-grey);
  background: linear-gradient(to right, var(--medium-grey) 60%, var(--medium-blue-grey) 180%);
}
html body.light-mode .social-bar a {
  background-color: var(--light);
}
html body.light-mode .social-bar a i.icon.social {
  color: var(--primary-text-colour);
}
html body.light-mode .social-bar a:hover i.icon.social {
  color: var(--primary-colour);
}
html body.light-mode .social-bar.blog a.icon {
  background-color: var(--secondary-text-colour);
}
html body.light-mode .social-bar.blog a.icon i {
  color: var(--night-blue);
}
html body.light-mode .social-bar.blog a.icon:hover {
  background-color: var(--near-white);
}
html body.light-mode .social-bar.blog a.icon:hover i {
  color: var(--primary-colour);
}
html body.light-mode .avatar#gary {
  /*background-color: ;*/
}
html body.light-mode .avatar#phil {
  background: linear-gradient(to bottom right, #f12711, #f5af19);
}
html body.light-mode .avatar#tom {
  background: linear-gradient(to top left, #93C572, #2CC0AF);
}
html body.light-mode .avatar#monem {
  background: linear-gradient(to bottom, #6FCBE0, #769AE4);
}
html body.light-mode .avatar#koto {
  background: linear-gradient(to bottom left, #c21858, #FF8EB9);
}
html body.light-mode .headshot i.icon.social {
  color: var(--near-black);
}
html body.light-mode .headshot i.icon.social:hover {
  color: var(--primary-colour);
}
html body.light-mode a.button {
  background-color: var(--primary-colour);
  color: var(--near-white);
}
html body.light-mode a.button.icon i {
  color: var(--near-white);
}
html body.light-mode article * {
  color: var(--near-black);
}
html body.light-mode article a {
  color: var(--medium-blue-grey);
}
html body.light-mode article a:hover {
  color: var(--primary-colour);
}

a.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
a.icon.sm {
  height: 16px;
  width: 16px;
  font-size: 16px;
}
a.icon.md {
  height: 30px;
  width: 30px;
  font-size: 16px;
}
a.icon.lg {
  height: 40px;
  width: 40px;
  font-size: 20px;
}
a.button.icon.text {
  font-weight: 600;
  gap: 0.5rem;
  justify-content: space-between;
  margin: 0.5rem auto;
  max-width: fit-content;
  padding: 0.5rem 1rem;
}
a i {
  color: var(--primary-text-colour);
}

.social-bar {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  width: fit-content;
}
.social-bar a {
  transition: all 0.3s ease-in-out;
}

i.icon.social {
  transition: all 0.3s ease-in-out;
}

nav#tab-scroll {
  width: 100%;
}
nav#tab-scroll .tab {
  margin: 24px auto;
}

.tab {
  box-shadow: inset 2px 2px 4px rgba(128, 128, 128, 0.25);
  border-radius: 50px;
  position: relative;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.tablinks {
  background-color: transparent;
  border: none;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 24px;
  text-transform: capitalize;
  width: 100%;
  z-index: 5;
}

.tabcontent {
  border: none;
}

.active-tab {
  backface-visibility: hidden;
  border-radius: 50px;
  height: 100%;
  position: absolute;
  transition: transform 0.25s ease-in-out;
  width: auto;
  will-change: transform;
  z-index: 1;
}

* {
  font-family: var(--font);
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
}

header,
section {
  margin: 0 auto;
  max-width: 1024px;
  width: 88vw;
}

html {
  min-height: 100vh;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html body {
  min-height: 320px;
  margin: 0;
  height: 100%;
}

.container {
  padding: 40px 0;
  margin: auto;
}
.container#profile {
  width: 80vw;
}

img {
  border-radius: 4px;
  max-width: 100%;
  max-height: 100%;
}

.avatar {
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease;
}
.avatar.sm {
  min-height: 40px;
  max-height: 40px;
  min-width: 40px;
  max-width: 40px;
}
.avatar.md {
  min-height: 80px;
  max-height: 80px;
  min-width: 80px;
  max-width: 80px;
}
.avatar.lg {
  min-height: 160px;
  max-height: 160px;
  min-width: 160px;
  max-width: 160px;
}

/* work-sans-200 - latin */
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 200;
  src: local(""), url("/assets/fonts/work-sans/work-sans-v17-latin-200.woff2") format("woff2"), url("/assets/fonts/work-sans/work-sans-v17-latin-200.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* work-sans-regular - latin */
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/assets/fonts/work-sans/work-sans-v17-latin-regular.woff2") format("woff2"), url("/assets/fonts/work-sans/work-sans-v17-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* work-sans-500 - latin */
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("/assets/fonts/work-sans/work-sans-v17-latin-500.woff2") format("woff2"), url("/assets/fonts/work-sans/work-sans-v17-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* work-sans-600 - latin */
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("/assets/fonts/work-sans/work-sans-v17-latin-600.woff2") format("woff2"), url("/assets/fonts/work-sans/work-sans-v17-latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* work-sans-700 - latin */
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("/assets/fonts/work-sans/work-sans-v17-latin-700.woff2") format("woff2"), url("/assets/fonts/work-sans/work-sans-v17-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* work-sans-200italic - latin */
@font-face {
  font-family: "Work Sans";
  font-style: italic;
  font-weight: 200;
  src: local(""), url("/assets/fonts/work-sans/work-sans-v17-latin-200italic.woff2") format("woff2"), url("/assets/fonts/work-sans/work-sans-v17-latin-200italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* work-sans-italic - latin */
@font-face {
  font-family: "Work Sans";
  font-style: italic;
  font-weight: 400;
  src: local(""), url("/assets/fonts/work-sans/work-sans-v17-latin-italic.woff2") format("woff2"), url("/assets/fonts/work-sans/work-sans-v17-latin-italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* work-sans-500italic - latin */
@font-face {
  font-family: "Work Sans";
  font-style: italic;
  font-weight: 500;
  src: local(""), url("/assets/fonts/work-sans/work-sans-v17-latin-500italic.woff2") format("woff2"), url("/assets/fonts/work-sans/work-sans-v17-latin-500italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* work-sans-600italic - latin */
@font-face {
  font-family: "Work Sans";
  font-style: italic;
  font-weight: 600;
  src: local(""), url("/assets/fonts/work-sans/work-sans-v17-latin-600italic.woff2") format("woff2"), url("/assets/fonts/work-sans/work-sans-v17-latin-600italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* work-sans-700italic - latin */
@font-face {
  font-family: "Work Sans";
  font-style: italic;
  font-weight: 700;
  src: local(""), url("/assets/fonts/work-sans/work-sans-v17-latin-700italic.woff2") format("woff2"), url("/assets/fonts/work-sans/work-sans-v17-latin-700italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
a {
  text-decoration: none;
}

h1 {
  font-size: 2.2rem;
  font-weight: 600;
}

h2 {
  font-size: 1.8rem;
  font-weight: 400;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.name {
  text-transform: capitalize;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
}
p.sub {
  color: var(--primary-colour);
  line-height: 1rem;
  font-size: 0.8rem;
  margin: 0;
  text-transform: capitalize;
}
p.lead {
  font-size: 1.4rem;
  font-weight: 350;
  margin-bottom: 1rem;
}
p.mb-1 {
  margin-bottom: 1rem;
}

article a {
  font-weight: 600;
}

.lead {
  margin-bottom: 2rem;
}

.blue {
  color: var(--primary-colour);
}

.burger {
  display: none;
  cursor: pointer;
  z-index: 2000;
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px;
  transition: all 0.3s ease;
  border-radius: 3px;
}

@media (max-width: 768px) {
  main {
    margin: 0 !important;
  }
  .burger {
    display: block;
  }
  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .burger.toggle .line2 {
    opacity: 0;
  }
  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  nav#navbar {
    padding: 0 20px;
    flex-wrap: wrap;
    position: relative;
    min-height: 50px;
  }
  nav#navbar #logo-content {
    flex: 1;
  }
  nav#navbar #logo-content #logo {
    height: 32px;
  }
  nav#navbar #logo-content h2 {
    font-size: 1.2rem;
  }
  nav#navbar .nav-controls {
    gap: 16px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    box-shadow: var(--box-shadow);
    margin: 0;
  }
  .nav-links.nav-active {
    max-height: 300px;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    animation: navLinkFade 0.5s ease forwards;
    padding: 0;
    margin: 0;
  }
  .nav-links.nav-active li {
    opacity: 1;
  }
  .nav-links li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav-links li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .nav-links li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .nav-links li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links li a {
    width: 100%;
    display: block;
    padding: 12px 16px;
  }
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  header {
    margin-bottom: 20px;
    padding: 0 20px;
  }
  header.chevron-header {
    padding: 10px;
  }
  header.chevron-header .content {
    width: 90%;
  }
  section#blog {
    width: inherit;
  }
  section#blog .post-container {
    grid-template-columns: 1fr;
    padding: 0;
  }
  main#features .grid {
    grid-template-columns: 1fr;
    padding: 0;
    width: 100%;
    gap: 1rem;
  }
  main#features .feature-card {
    padding: 24px 16px;
  }
  body.article.feature header {
    margin-bottom: 0;
    width: 100vw;
  }
  body.article.feature header .feature-header {
    margin-top: 0;
  }
  body section,
  body article {
    padding: 0 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  nav#navbar {
    padding: 0 30px;
  }
  nav#navbar #logo-content h2 {
    font-size: 1.4rem;
  }
  nav#navbar ul li {
    padding: 8px 12px;
  }
  .chevron-header .content {
    width: 80%;
  }
}
.chevron-header {
  clip-path: polygon(0 0, 100% 0%, 100% 75%, 50% 100%, 0 75%);
  padding: 80px;
  margin: auto 0 80px;
  max-width: 100vw;
  text-align: center;
  width: 100%;
}
.chevron-header .content {
  width: 60%;
  margin: 0 auto;
}
.chevron-header .content .social-bar {
  margin: 40px auto;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

nav#navbar {
  box-shadow: var(--box-shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--nav-bg);
  min-height: 60px;
}
nav#navbar #logo-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: auto;
  width: 100%;
  text-decoration: none;
}
nav#navbar #logo-content #logo {
  height: 40px;
  margin: 0 0 4px;
}
nav#navbar #logo-content h2 {
  font-weight: 300;
  margin: 0;
  padding: 0;
}
nav#navbar .nav-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
nav#navbar ul {
  width: 100%;
  list-style: none;
  display: inline-flex;
  justify-content: right;
  margin: 0;
  padding: 0;
}
nav#navbar ul li {
  padding: 8px 16px;
  margin: 0;
  width: fit-content;
}

a.nav-link {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.25s ease-in-out;
}
a.nav-link:hover {
  font-weight: 600;
}

.toggle-icon {
  background-size: cover;
  cursor: pointer;
  display: block;
  height: 24px;
  width: 24px;
  margin: 0;
}

section.page-navigation {
  text-align: center;
  margin: 4rem auto;
}

header#post {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  margin: 0 40px 0 0;
  width: 40vw;
}
header#post .blue-box {
  background-color: var(--toggle-bar);
  border-radius: 0 4px 4px 0;
  padding: 24px 16px 24px 0;
}
header#post .blue-box .tag {
  background-color: var(--primary-colour);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 8px 24px 8px 80px;
  text-align: right;
  text-transform: uppercase;
  color: var(--secondary-text-colour);
  font-size: 10px;
  font-weight: 400;
  width: fit-content;
}
header#post .blue-box .post-info {
  color: var(--primary-text-colour);
  margin: 16px 0 0 80px;
  text-align: left;
}
header#post .dev-info {
  margin-left: 80px;
}

article#post-body {
  width: 100%;
}
article#post-body .img-wrapper {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
article#post-body .img-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 240px;
}

section.sub-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 16px;
  width: 100%;
}
section.sub-header h3 {
  color: var(--primary-text-colour);
  margin: 0;
  text-transform: capitalize;
}
section.sub-header p.post-count {
  color: var(--grey);
}
section.sub-header p.description {
  color: var(--primary-text-colour);
  margin-top: 4px;
  width: 100%;
}

body.blog header#blog-header {
  margin: 2vw 0 2vw 10vw;
  max-width: 100vw;
  padding: 2rem;
  width: auto;
}
body.blog header#blog-header .post-details {
  text-align: left;
}
body.blog header#blog-header .post-details h1 {
  margin-bottom: 1rem;
}
body.blog header#blog-header .post-details h3 {
  color: var(--grey);
}
body.blog header#blog-header .author {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 4rem;
}
body.blog header#blog-header .author .details h2,
body.blog header#blog-header .author .details p {
  font-weight: 500;
  text-transform: capitalize;
  text-align: left;
  margin: 0 0 0.5rem;
}
body.blog header#blog-header .author .details .social-bar {
  margin: 0 auto 0 0;
}

.post-container {
  border-radius: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  height: auto;
  padding: 1rem 2rem;
}

.article-card {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 220px;
  justify-content: center;
  opacity: 0.8;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}
.article-card:hover {
  opacity: 1;
}
.article-card .card-content {
  padding: 16px;
}
.article-card .card-content h3 {
  font-size: 1.5rem;
  height: fit-content;
}
.article-card .card-content .post-lead {
  margin-bottom: 1rem;
}
.article-card .card-content .post-details {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}
.article-card .card-content .post-details h5 {
  margin: 0;
  text-transform: capitalize;
}

.line-trim {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: fit-content;
  -webkit-box-orient: vertical;
}
.line-trim.two {
  -webkit-line-clamp: 2;
}
.line-trim.three {
  -webkit-line-clamp: 3;
}

section#blog {
  padding-bottom: 4vh;
}
section#blog h2 {
  text-align: center;
}

article.container {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 1fr;
  margin-right: 80px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1024px;
  width: 88vw;
  border-radius: 1rem;
  gap: 2.4rem;
  grid-template-rows: auto;
  height: 100%;
  padding: 1rem 2rem;
}

.feature-card {
  padding: 36px 24px;
  border-radius: 15px;
  position: relative;
  transition: box-shadow 0.25s;
  height: 100%;
  border: 3px solid transparent;
  background: linear-gradient(var(--card-background-gradient));
  background-clip: padding-box;
}
.feature-card::before {
  content: "";
  position: absolute;
  border-radius: 15px;
}
.feature-card.bg-blue-box::after {
  position: absolute;
  inset: -2px;
  content: "";
  z-index: -1;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(16, 101, 185, 0), rgba(16, 86, 185, 0.4117647059), rgba(52, 132, 211, 0)), linear-gradient(-90deg, rgba(16, 101, 185, 0), rgba(16, 86, 185, 0.4117647059), rgba(52, 132, 211, 0));
}
.feature-card .card-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.feature-card .icon {
  z-index: 2;
  position: relative;
  display: table;
  padding: 16px;
}
.feature-card .icon::after {
  content: "";
  position: absolute;
  inset: 4.5px;
  border-radius: 50%;
  background-color: var(--card-icon-background-color);
  border: 1px solid var(--card-icon-border-color);
  backdrop-filter: blur(2px);
  transition: background-color 0.25s, border-color 0.25s;
}
.feature-card .icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  transform: translateZ(0);
  color: var(--card-icon-color);
  fill: var(--card-icon-color);
  transition: color 0.25s;
}
.feature-card h4 {
  z-index: 2;
  position: relative;
  margin: 12px 0 4px 0;
  font-size: 1.5rem;
  line-height: 2;
  color: var(--card-label-color);
}
.feature-card p {
  z-index: 2;
  position: relative;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  padding-bottom: 2rem;
}
.feature-card small {
  z-index: 2;
  position: absolute;
  bottom: 1rem;
  margin-top: auto;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-color);
}
.feature-card .shine {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
}
.feature-card .shine::before {
  content: "";
  width: 150%;
  padding-bottom: 150%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 55%;
  filter: blur(35px);
  opacity: var(--card-shine-opacity);
  transform: translateX(-50%);
  background-image: var(--card-shine-gradient);
}
.feature-card .background {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
  mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}
.feature-card .background .line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card .background .line::before, .feature-card .background .line::after {
  content: "";
  position: absolute;
  background-color: var(--card-line-color);
  transition: transform 0.35s;
}
.feature-card .background .line::before {
  left: 0;
  right: 0;
  height: 1px;
  transform-origin: 0 50%;
  transform: scaleX(0);
}
.feature-card .background .line::after {
  top: 0;
  bottom: 0;
  width: 1px;
  transform-origin: 50% 0;
  transform: scaleY(0);
}
.feature-card .background .line.line-1::before {
  top: 10%;
}
.feature-card .background .line.line-1::after {
  left: 22.5%;
}
.feature-card .background .line.line-1::before, .feature-card .background .line.line-1::after {
  transition-delay: 0.3s;
}
.feature-card .background .line.line-2::before {
  top: 32.5%;
}
.feature-card .background .line.line-2::after {
  left: 50%;
}
.feature-card .background .line.line-2::before, .feature-card .background .line.line-2::after {
  transition-delay: 0.15s;
}
.feature-card .background .line.line-3::before {
  top: 55%;
}
.feature-card .background .line.line-3::after {
  right: 22.5%;
}
.feature-card:hover {
  box-shadow: 0 var(--card-hover-box-shadow-1-y) var(--card-hover-box-shadow-1-blur) var(--card-hover-box-shadow-1), 0 var(--card-hover-box-shadow-2-y) var(--card-hover-box-shadow-2-blur) var(--card-hover-box-shadow-2);
}
.feature-card:hover .icon::after {
  background-color: var(--card-hover-icon-background-color);
  border-color: var(--card-hover-icon-border-color);
}
.feature-card:hover .icon svg {
  color: var(--card-hover-icon-color);
}
.feature-card:hover .shine {
  opacity: 1;
  transition-duration: 0.5s;
  transition-delay: 0s;
}
.feature-card:hover .background .line {
  opacity: 1;
}
.feature-card:hover .background .line::before {
  transform: scaleX(1);
}
.feature-card:hover .background .line::after {
  transform: scaleY(1);
}

#features a.inline-link {
  color: var(--primary-colour);
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}
#features a.inline-link:hover {
  color: var(--secondary-colour);
}

section#profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
section#profiles .profile {
  text-align: center;
  width: 160px;
  max-width: 160px;
}
section#profiles .profile .headshot {
  position: relative;
}
section#profiles .profile .headshot .socials {
  opacity: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  transition: 0.5s ease;
}
section#profiles .profile .headshot .socials a:hover {
  font-weight: 700;
}
section#profiles .profile .headshot:hover embed {
  opacity: 40%;
}
section#profiles .profile .headshot:hover .socials {
  opacity: 1;
}
section#profiles .profile h3 {
  margin-top: 1rem;
}
section#profiles .profile h3,
section#profiles .profile p {
  text-transform: capitalize;
}

article#about-dev {
  margin: 0 16px;
}
article#about-dev h2#greeting {
  font-style: italic;
  font-weight: 200;
  margin-bottom: 8px;
}
article#about-dev p {
  margin-top: 0;
  line-height: 24px;
}

.dev-info {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
  align-items: flex-end;
  flex-direction: row;
}
.dev-info .content h3,
.dev-info .content p {
  margin: 0;
}
.dev-info.sm {
  flex-direction: column;
  align-items: flex-start;
}
.dev-info.sm .wrapper {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
}
.dev-info.sm .social-bar {
  margin-left: 48px;
}

.feature-header {
  margin-top: 80px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 2rem;
  padding: 36px 24px;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.25s;
  height: 100%;
  border: 3px solid transparent;
  background: linear-gradient(var(--card-background-gradient));
  background-clip: padding-box;
}
.feature-header::before {
  content: "";
  position: absolute;
  border-radius: 15px;
}
.feature-header.bg-blue-box::after {
  position: absolute;
  inset: -2px;
  content: "";
  z-index: -1;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(16, 101, 185, 0), rgba(16, 86, 185, 0.4117647059), rgba(52, 132, 211, 0)), linear-gradient(-90deg, rgba(16, 101, 185, 0), rgba(16, 86, 185, 0.4117647059), rgba(52, 132, 211, 0));
}
.feature-header .icon {
  z-index: 2;
  position: relative;
  display: table;
  padding: 16px;
}
.feature-header .icon::after {
  content: "";
  position: absolute;
  inset: 4.5px;
  border-radius: 50%;
  background-color: var(--card-icon-background-color);
  border: 1px solid var(--card-icon-border-color);
  backdrop-filter: blur(2px);
  transition: background-color 0.25s, border-color 0.25s;
}
.feature-header .icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 32px;
  height: 32px;
  transform: translateZ(0);
  color: var(--card-icon-color);
  transition: color 0.25s;
}
.feature-header h2 {
  z-index: 2;
  position: relative;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--card-label-color);
}
.feature-header p {
  z-index: 2;
  position: relative;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  padding-bottom: 2rem;
}
.feature-header small {
  z-index: 2;
  position: absolute;
  bottom: 1rem;
  margin-top: auto;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-color);
}
.feature-header .shine {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
}
.feature-header .shine::before {
  content: "";
  width: 150%;
  padding-bottom: 150%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 55%;
  filter: blur(35px);
  opacity: var(--card-shine-opacity);
  transform: translateX(-50%);
  background-image: var(--card-shine-gradient);
}
.feature-header .background {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
  mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}
.feature-header .background .line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-header .background .line:before, .feature-header .background .line:after {
  content: "";
  position: absolute;
  background-color: var(--card-line-color);
  transition: transform 0.35s;
}
.feature-header .background .line:before {
  left: 0;
  right: 0;
  height: 1px;
  transform-origin: 0 50%;
  transform: scaleX(0);
}
.feature-header .background .line:after {
  top: 0;
  bottom: 0;
  width: 1px;
  transform-origin: 50% 0;
  transform: scaleY(0);
}
.feature-header .background .line.line-1:before {
  top: 10%;
}
.feature-header .background .line.line-1:after {
  left: 22.5%;
}
.feature-header .background .line.line-1:before, .feature-header .background .line.line-1:after {
  transition-delay: 0.3s;
}
.feature-header .background .line.line-2:before {
  top: 32.5%;
}
.feature-header .background .line.line-2:after {
  left: 50%;
}
.feature-header .background .line.line-2:before, .feature-header .background .line.line-2:after {
  transition-delay: 0.15s;
}
.feature-header .background .line.line-3:before {
  top: 55%;
}
.feature-header .background .line.line-3:after {
  right: 22.5%;
}
.feature-header.bg-blue-box::after {
  background: linear-gradient(180deg, rgba(16, 101, 185, 0), #1056b9, rgba(52, 132, 211, 0)), linear-gradient(-90deg, rgba(16, 101, 185, 0), #1056b9, rgba(52, 132, 211, 0));
}
.feature-header > small {
  color: var(--card-hover-icon-color);
}
.feature-header .icon::after {
  background-color: var(--card-hover-icon-background-color);
  border-color: var(--card-hover-icon-border-color);
}
.feature-header .icon svg {
  color: var(--card-hover-icon-color);
}
.feature-header .shine {
  opacity: 1;
  transition-duration: 0.5s;
  transition-delay: 0s;
}
.feature-header .background .tiles {
  opacity: 1;
  transition-delay: 0.25s;
}
.feature-header .background .tiles .tile {
  animation-name: tile;
}
.feature-header .background .line {
  opacity: 1;
  transition-duration: 0.15s;
}
.feature-header .background .line:before {
  transform: scaleX(1);
}
.feature-header .background .line:after {
  transform: scaleY(1);
}
.feature-header .background .line.line-1:before, .feature-header .background .line.line-1:after {
  transition-delay: 0s;
}
.feature-header .background .line.line-2:before, .feature-header .background .line.line-2:after {
  transition-delay: 0.15s;
}
.feature-header .background .line.line-3:before, .feature-header .background .line.line-3:after {
  transition-delay: 0.3s;
}

main {
  margin: 0 calc(10vw + 2rem);
  padding: 2rem 0;
}
main article {
  max-width: 42rem;
  padding-block: 2rem;
  font-size: 18px;
}
main article ul {
  line-height: 3.125ex;
  margin: 0 0 3.125ex 0;
  font-size: 1em;
}
main article p {
  line-height: 3.125ex;
  margin: 0 0 2ex;
  font-size: 1em;
}
main article p.lead {
  font-size: 1.4rem;
}
main article p.lead a {
  color: unset;
  font-weight: unset;
}
main article h1 {
  font-size: 2.5em;
  line-height: 2.380952381ex;
  margin: 2.7027027027ex 0 1ex 0;
}
main article h2 {
  font-size: 2em;
  line-height: 2.380952381ex;
  margin: 2.7027027027ex 0 1ex 0;
}
main article h3 {
  font-size: 1.75em;
  line-height: 2.6315789474ex;
  margin: 2.7027027027ex 0 1ex 0;
  font-weight: 500;
}
main article h4 {
  font-size: 1.5em;
  line-height: 2.7027027027ex;
  margin: 2.7027027027ex 0 1ex 0;
  font-weight: 400;
}
main article h5 {
  font-size: 1em;
  line-height: 2.5641025641ex;
  margin: 2.7027027027ex 0 1ex 0;
  font-weight: 400;
}
main article h5 + ul {
  margin-top: 0;
}
main article li {
  margin-bottom: 1.2ex;
}
main article table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
  text-align: left;
}
main article table th,
main article table td {
  padding: 12px 15px;
  border: 2px solid var(--blue);
}
main article table th {
  background-color: var(--blue);
  font-weight: 500;
  color: var(--near-white);
}

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