/* =========================================================
   SYSTEM & NETWORK ADMINISTRATOR PORTFOLIO
   Premium Recruiter-Focused Design
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

  --bg: #f7f8fa;

  --white: #ffffff;

  --ink: #111315;

  --muted: #697078;

  --soft: #9299a1;

  --line: #dfe3e7;

  --blue: #2563eb;

  --blue-dark: #1747ad;

  --blue-light: #eaf1ff;

  --dark: #101419;

  --dark-2: #171c22;

  --container: 1180px;

  --transition: 240ms ease;

}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {

  background: var(--bg);

  color: var(--ink);

  font-family: "Inter", sans-serif;

  line-height: 1.6;

  overflow-x: hidden;

}


body.menu-open {
  overflow: hidden;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  font: inherit;
}


::selection {
  background: var(--ink);
  color: var(--white);
}


/* =========================================================
   GLOBAL
========================================================= */

.container {

  width: min(
    calc(100% - 48px),
    var(--container)
  );

  margin-inline: auto;

}


.section {
  padding: 140px 0;
}


.section-heading {
  margin-bottom: 72px;
}


.section-heading > div {

  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 26px;

}


.section-number {

  color: var(--blue);

  font-family: "DM Mono", monospace;

  font-size: 12px;

}


.section-label {

  color: var(--muted);

  font-family: "DM Mono", monospace;

  font-size: 11px;

  letter-spacing: .16em;

}


.section-heading > div::after {

  content: "";

  width: 60px;

  height: 1px;

  background: var(--line);

}


.section-heading h2 {

  max-width: 850px;

  font-size: clamp(
    40px,
    5vw,
    70px
  );

  line-height: 1.02;

  letter-spacing: -.055em;

  font-weight: 700;

}


.section-heading h2 span {
  color: var(--muted);
}


.section-heading.compact {
  margin-bottom: 60px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header {

  position: fixed;

  z-index: 1000;

  top: 0;

  left: 0;

  width: 100%;

  background: rgba(
    247,
    248,
    250,
    .86
  );

  backdrop-filter: blur(18px);

  border-bottom: 1px solid
    rgba(223, 227, 231, .7);

  transition: box-shadow var(--transition);

}


.nav {

  height: 78px;

  display: flex;

  align-items: center;

  justify-content: space-between;

}


.brand {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-size: 17px;

  font-weight: 800;

  letter-spacing: -.04em;

}


.brand-mark {

  width: 32px;

  height: 32px;

  display: grid;

  place-items: center;

  border-radius: 9px;

  background: var(--ink);

  color: var(--white);

  font-size: 13px;

}


.brand-dot {
  color: var(--blue);
}


.nav-links {

  display: flex;

  gap: 32px;

  margin-left: auto;

  margin-right: 34px;

}


.nav-links a {

  position: relative;

  color: var(--muted);

  font-size: 13px;

  font-weight: 500;

  transition:
    color var(--transition);

}


.nav-links a::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 1px;

  background: var(--blue);

  transition: width var(--transition);

}


.nav-links a:hover,
.nav-links a.active {

  color: var(--ink);

}


.nav-links a:hover::after,
.nav-links a.active::after {

  width: 100%;

}


.nav-cv {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 11px 16px;

  border: 1px solid var(--ink);

  font-size: 12px;

  font-weight: 600;

  transition:
    background var(--transition),
    color var(--transition);

}


.nav-cv:hover {

  background: var(--ink);

  color: var(--white);

}


.nav-cv span {
  font-size: 15px;
}


.menu-toggle {

  display: none;

  width: 42px;

  height: 42px;

  border: 0;

  background: transparent;

  cursor: pointer;

}


.menu-toggle span {

  display: block;

  width: 23px;

  height: 1px;

  background: var(--ink);

  margin: 5px auto;

  transition:
    transform var(--transition);

}


/* =========================================================
   HERO
========================================================= */

.hero {

  min-height: 900px;

  padding-top: 78px;

  position: relative;

  display: flex;

  align-items: center;

  overflow: hidden;

}


.hero-grid {

  position: absolute;

  inset: 0;

  pointer-events: none;

  background-image:

    linear-gradient(
      to right,
      rgba(17, 19, 21, .035) 1px,
      transparent 1px
    ),

    linear-gradient(
      to bottom,
      rgba(17, 19, 21, .035) 1px,
      transparent 1px
    );

  background-size: 72px 72px;

  mask-image:
    linear-gradient(
      to bottom,
      black 0%,
      transparent 90%
    );

}


.hero-inner {

  display: grid;

  grid-template-columns:
    1fr .88fr;

  gap: 80px;

  align-items: center;

  position: relative;

  z-index: 2;

}


.hero-copy {
  padding: 70px 0;
}


.eyebrow {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 7px 11px;

  border: 1px solid var(--line);

  border-radius: 100px;

  color: var(--muted);

  font-family: "DM Mono", monospace;

  font-size: 10px;

  letter-spacing: .05em;

  margin-bottom: 32px;

  background: rgba(
    255,
    255,
    255,
    .65
  );

}


.status-dot {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #21a366;

  box-shadow:
    0 0 0 4px
    rgba(33, 163, 102, .1);

}


.hero-kicker {

  color: var(--blue);

  font-family: "DM Mono", monospace;

  font-size: 12px;

  letter-spacing: .1em;

  font-weight: 500;

  margin-bottom: 18px;

}


.hero h1 {

  max-width: 720px;

  font-size: clamp(
    60px,
    7.4vw,
    105px
  );

  line-height: .92;

  letter-spacing: -.075em;

  font-weight: 700;

}


.hero h1 span {
  color: var(--muted);
}


.hero-description {

  max-width: 590px;

  color: var(--muted);

  font-size: 17px;

  margin-top: 30px;

}


.hero-actions {

  display: flex;

  gap: 12px;

  margin-top: 38px;

}


.btn {

  min-height: 48px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  padding: 0 18px;

  font-size: 12px;

  font-weight: 600;

  border: 1px solid transparent;

  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border var(--transition);

}


.btn:hover {
  transform: translateY(-2px);
}


.btn-primary {

  background: var(--ink);

  color: var(--white);

}


.btn-primary:hover {
  background: var(--blue);
}


.btn-secondary {

  border-color: var(--line);

  background: var(--white);

}


.btn-secondary:hover {
  border-color: var(--ink);
}


.hero-meta {

  display: flex;

  gap: 0;

  margin-top: 80px;

}


.hero-meta > div {

  padding: 0 27px;

  border-left: 1px solid var(--line);

}


.hero-meta > div:first-child {

  padding-left: 0;

  border-left: 0;

}


.hero-meta strong {

  display: block;

  font-size: 18px;

  letter-spacing: -.04em;

}


.hero-meta span {

  display: block;

  color: var(--soft);

  font-size: 9px;

  font-family: "DM Mono", monospace;

  margin-top: 2px;

}


/* =========================================================
   NETWORK VISUAL
========================================================= */

.network-visual {

  position: relative;

  min-height: 560px;

  border: 1px solid var(--line);

  background:
    rgba(255, 255, 255, .58);

  overflow: hidden;

}


.visual-label {

  display: flex;

  justify-content: space-between;

  padding: 18px 20px;

  color: var(--soft);

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: .12em;

  border-bottom: 1px solid var(--line);

}


.network-map {

  height: 360px;

  position: relative;

  background-image:

    linear-gradient(
      rgba(17,19,21,.035) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(17,19,21,.035) 1px,
      transparent 1px
    );

  background-size: 36px 36px;

}


.network-line {

  position: absolute;

  height: 1px;

  background: var(--blue);

  opacity: .45;

  transform-origin: left center;

}


.line-one {

  width: 130px;

  top: 104px;

  left: 28%;

  transform: rotate(25deg);

}


.line-two {

  width: 140px;

  top: 205px;

  left: 28%;

  transform: rotate(-22deg);

}


.line-three {

  width: 125px;

  top: 205px;

  left: 59%;

  transform: rotate(22deg);

}


.line-four {

  width: 110px;

  top: 304px;

  left: 59%;

  transform: rotate(-22deg);

}


.node {

  position: absolute;

  width: 108px;

  height: 108px;

  border: 1px solid var(--line);

  background:
    rgba(255,255,255,.9);

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  z-index: 2;

  box-shadow:
    0 15px 40px
    rgba(17,19,21,.05);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);

}


.node::after {

  content: "";

  position: absolute;

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: var(--blue);

  top: 7px;

  right: 7px;

}


.node-icon {

  font-size: 22px;

  line-height: 1;

  margin-bottom: 9px;

}


.node small {

  color: var(--soft);

  font-family: "DM Mono", monospace;

  font-size: 7px;

  letter-spacing: .1em;

}


.node strong {

  font-family: "DM Mono", monospace;

  font-size: 9px;

  margin-top: 2px;

}


.node-internet {

  left: 8%;

  top: 72px;

}


.node-router {

  left: 42%;

  top: 145px;

}


.node-firewall {

  right: 8%;

  top: 72px;

}


.node-server {

  left: 24%;

  bottom: 5px;

}


.node-network {

  right: 22%;

  bottom: 5px;

}


/* =========================================================
   TERMINAL
========================================================= */

.terminal {

  position: absolute;

  bottom: 20px;

  left: 20px;

  right: 20px;

  background: var(--dark);

  color: var(--white);

  font-family: "DM Mono", monospace;

  font-size: 10px;

  border-radius: 8px;

  overflow: hidden;

}


.terminal-top {

  height: 28px;

  display: flex;

  align-items: center;

  gap: 5px;

  padding-left: 10px;

  border-bottom:
    1px solid
    rgba(255,255,255,.07);

}


.terminal-top span {

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: #5e666e;

}


.terminal-content {
  padding: 15px;
}


.terminal-content p {
  margin: 4px 0;
}


.terminal-green {
  color: #70d7a0;
}


.terminal-muted {
  color: #89919a;
  transition: opacity .2s ease;
}


.terminal-muted b {

  color: #dbe1e7;

  font-weight: 400;

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background: var(--white);
}


.about-grid {

  display: grid;

  grid-template-columns:
    .85fr 1.15fr;

  gap: 120px;

}


.about-intro .large-text {

  font-size: 26px;

  line-height: 1.35;

  letter-spacing: -.035em;

  color: var(--ink);

  margin-bottom: 32px;

}


.about-intro p:not(.large-text) {

  color: var(--muted);

  font-size: 14px;

  margin-bottom: 18px;

}


.capabilities {

  border-top: 1px solid var(--line);

}


.capability {

  display: grid;

  grid-template-columns: 50px 1fr;

  gap: 22px;

  padding: 28px 0;

  border-bottom: 1px solid var(--line);

}


.capability-number {

  color: var(--blue);

  font-family: "DM Mono", monospace;

  font-size: 10px;

}


.capability h3 {

  font-size: 18px;

  letter-spacing: -.025em;

  margin-bottom: 5px;

}


.capability p {

  max-width: 560px;

  color: var(--muted);

  font-size: 13px;

}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
  background: var(--bg);
}


.experience-list {
  border-top: 1px solid var(--line);
}


.experience-card {

  display: grid;

  grid-template-columns: 90px 1fr;

  border-bottom: 1px solid var(--line);

  transition:
    background var(--transition);

}


.experience-card:hover {
  background: var(--white);
}


.experience-card.featured {
  background: var(--white);
}


.experience-index {

  padding-top: 36px;

  padding-left: 10px;

  color: var(--blue);

  font-family: "DM Mono", monospace;

  font-size: 11px;

}


.experience-main {

  padding: 34px 35px 38px 0;

}


.experience-header {

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

}


.experience-type {

  font-family: "DM Mono", monospace;

  color: var(--soft);

  font-size: 9px;

  letter-spacing: .12em;

}


.experience-header h3 {

  font-size: 30px;

  letter-spacing: -.045em;

  margin-top: 8px;

}


.experience-header p {

  color: var(--muted);

  font-size: 13px;

  margin-top: 2px;

}


.experience-arrow {

  font-size: 20px;

  color: var(--soft);

  transition:
    transform var(--transition),
    color var(--transition);

}


.experience-card:hover .experience-arrow {

  transform:
    translate(4px, -4px);

  color: var(--blue);

}


.experience-content {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  margin-top: 30px;

}


.experience-description p {

  max-width: 520px;

  color: var(--muted);

  font-size: 13px;

}


.technology-list {

  display: flex;

  flex-wrap: wrap;

  align-content: flex-start;

  gap: 7px;

}


.technology-list span,
.skill-tags span {

  padding: 7px 9px;

  border: 1px solid var(--line);

  background: var(--bg);

  color: var(--muted);

  font-family: "DM Mono", monospace;

  font-size: 9px;

}


/* =========================================================
   SKILLS
========================================================= */

.skills-section {
  background: var(--white);
}


.skills-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

}


.skill-category {

  min-height: 330px;

  padding: 28px;

  border-right: 1px solid var(--line);

}


.skill-category:last-child {
  border-right: 0;
}


.skill-category-number {

  color: var(--blue);

  font-family: "DM Mono", monospace;

  font-size: 10px;

}


.skill-category h3 {

  font-size: 25px;

  letter-spacing: -.04em;

  margin-top: 55px;

}


.skill-category > p {

  color: var(--muted);

  font-size: 12px;

  margin: 10px 0 25px;

}


.skill-tags {

  display: flex;

  flex-wrap: wrap;

  gap: 6px;

}


.skill-tags span {
  background: transparent;
}


/* =========================================================
   APPROACH
========================================================= */

.approach-section {

  background: var(--dark);

  color: var(--white);

}


.approach-section .section-label {
  color: #7d8791;
}


.approach-grid {

  display: grid;

  grid-template-columns: 1fr .8fr;

  gap: 120px;

  align-items: end;

}


.approach-grid h2 {

  max-width: 700px;

  margin-top: 30px;

  font-size: clamp(
    42px,
    5vw,
    68px
  );

  line-height: 1;

  letter-spacing: -.055em;

}


.approach-grid h2 span {
  color: #717b85;
}


.approach-copy {
  color: #aab2ba;
}


.approach-copy > p {

  font-size: 14px;

  max-width: 470px;

}


.approach-points {

  display: grid;

  grid-template-columns: 1fr 1fr;

  margin-top: 45px;

  border-top: 1px solid #2c333a;

}


.approach-points div {

  padding: 18px 0;

  border-bottom: 1px solid #2c333a;

  display: flex;

  gap: 18px;

  align-items: center;

}


.approach-points span {

  font-family: "DM Mono", monospace;

  color: #59636d;

  font-size: 9px;

}


.approach-points strong {

  color: #dbe0e4;

  font-size: 12px;

}


/* =========================================================
   TRAINING
========================================================= */

.certifications-section {
  background: var(--bg);
}


.cert-grid {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 16px;

}


.cert-card {

  padding: 34px;

  min-height: 390px;

  border: 1px solid var(--line);

  background: var(--white);

  transition:
    transform var(--transition),
    box-shadow var(--transition);

}


.cert-card:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 20px 60px
    rgba(17,19,21,.07);

}


.cert-top {

  display: flex;

  justify-content: space-between;

  color: var(--soft);

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: .1em;

}


.cert-badge {

  width: 92px;

  height: 92px;

  margin: 55px 0 28px;

  display: grid;

  place-items: center;

  border: 1px solid var(--blue);

  color: var(--blue);

  font-family: "DM Mono", monospace;

  font-size: 15px;

  font-weight: 500;

  position: relative;

}


.cert-badge::before {

  content: "";

  position: absolute;

  inset: 7px;

  border: 1px solid var(--blue);

  opacity: .2;

}


.cert-card h3 {

  font-size: 19px;

  letter-spacing: -.03em;

}


.cert-card p {

  max-width: 560px;

  color: var(--muted);

  font-size: 12px;

  margin-top: 8px;

}


.training-status {

  display: inline-flex;

  margin-top: 22px;

  padding: 7px 10px;

  border: 1px solid var(--line);

  color: var(--blue);

  background: var(--blue-light);

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: .04em;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

  padding: 80px 0;

  background: var(--white);

}


.cta-box {

  position: relative;

  padding: 75px;

  background: var(--dark);

  color: var(--white);

  overflow: hidden;

}


.cta-box::before {

  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  border: 1px solid #2b333b;

  border-radius: 50%;

  right: -170px;

  top: -220px;

}


.cta-box::after {

  content: "";

  position: absolute;

  width: 330px;

  height: 330px;

  border: 1px solid #2b333b;

  border-radius: 50%;

  right: -90px;

  top: -135px;

}


.cta-top {

  position: relative;

  z-index: 2;

  display: flex;

  justify-content: space-between;

}


.cta-top .section-label {
  color: #78828c;
}


.cta-number {

  font-family: "DM Mono", monospace;

  color: #66717b;

  font-size: 10px;

}


.cta-box h2 {

  position: relative;

  z-index: 2;

  max-width: 820px;

  margin-top: 55px;

  font-size: clamp(
    42px,
    5.5vw,
    72px
  );

  line-height: 1;

  letter-spacing: -.06em;

}


.cta-box h2 span {
  color: #727d87;
}


.cta-box > p {

  position: relative;

  z-index: 2;

  max-width: 550px;

  color: #9ca5ad;

  font-size: 14px;

  margin-top: 25px;

}


.cta-actions {

  position: relative;

  z-index: 2;

  display: flex;

  gap: 10px;

  margin-top: 38px;

}


.btn-light {

  background: var(--white);

  color: var(--ink);

}


.btn-light:hover {

  background: var(--blue);

  color: var(--white);

}


.btn-outline-light {

  border-color: #3a424a;

  color: var(--white);

}


.btn-outline-light:hover {
  background: #222930;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

  background: var(--dark);

  border-top:
    1px solid #252c32;

  color: var(--white);

}


.footer-inner {

  min-height: 120px;

  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

}


.footer .brand-mark {

  background: var(--white);

  color: var(--ink);

}


.footer p {

  color: #6e7882;

  font-size: 10px;

  margin-top: 5px;

}


.footer-links {

  display: flex;

  gap: 25px;

}


.footer-links a {

  color: #89929a;

  font-size: 11px;

  transition: color var(--transition);

}


.footer-links a:hover {
  color: var(--white);
}


.copyright {
  text-align: right;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

  opacity: 0;

  transform:
    translateY(25px);

  transition:
    opacity .7s ease,
    transform .7s ease;

}


.reveal.visible {

  opacity: 1;

  transform:
    translateY(0);

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {


  .hero-inner {

    grid-template-columns: 1fr;

    gap: 40px;

  }


  .hero {

    padding-bottom: 90px;

  }


  .network-visual {

    max-width: 680px;

    width: 100%;

  }


  .about-grid {

    grid-template-columns: 1fr;

    gap: 70px;

  }


  .skills-grid {

    grid-template-columns:
      1fr 1fr;

  }


  .skill-category:nth-child(2) {
    border-right: 0;
  }


  .skill-category:nth-child(1),
  .skill-category:nth-child(2) {

    border-bottom:
      1px solid var(--line);

  }


  .approach-grid {

    grid-template-columns: 1fr;

    gap: 60px;

  }


  .footer-inner {

    grid-template-columns:
      1fr 1fr;

    gap: 25px;

    padding: 30px 0;

  }


  .copyright {

    text-align: left;

    grid-column:
      1 / -1;

  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 720px) {


  .container {

    width:
      min(
        calc(100% - 32px),
        var(--container)
      );

  }


  .section {
    padding: 90px 0;
  }


  .site-header {

    background:
      rgba(
        247,
        248,
        250,
        .96
      );

  }


  .nav {
    height: 68px;
  }


  .nav-links {

    position: fixed;

    inset: 68px 0 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    padding: 30px 16px;

    background: var(--bg);

    transform:
      translateX(100%);

    transition:
      transform .3s ease;

    margin: 0;

  }


  .nav-links.active {
    transform: translateX(0);
  }


  .nav-links a {

    width: 100%;

    padding: 18px 0;

    border-bottom:
      1px solid var(--line);

    font-size: 16px;

  }


  .nav-cv {
    display: none;
  }


  .menu-toggle {
    display: block;
  }


  .hero {

    min-height: auto;

    padding-top: 68px;

  }


  .hero-copy {

    padding:
      75px 0 35px;

  }


  .hero h1 {

    font-size:
      clamp(
        54px,
        16vw,
        82px
      );

  }


  .hero-description {
    font-size: 15px;
  }


  .hero-actions {

    flex-direction: column;

  }


  .btn {
    width: 100%;
  }


  .hero-meta {

    display: grid;

    grid-template-columns:
      1fr 1fr;

    gap: 20px 0;

    margin-top: 55px;

  }


  .hero-meta > div {
    padding-left: 18px;
  }


  .hero-meta > div:nth-child(3) {

    border-left: 0;

    padding-left: 0;

  }


  .network-visual {

    min-height: 520px;

  }


  .network-map {
    height: 350px;
  }


  .node {

    width: 82px;

    height: 82px;

  }


  .node-icon {
    font-size: 17px;
  }


  .node strong {
    font-size: 7px;
  }


  .node small {
    font-size: 6px;
  }


  .node-internet {

    left: 4%;

    top: 75px;

  }


  .node-router {

    left:
      calc(50% - 41px);

    top: 145px;

  }


  .node-firewall {

    right: 4%;

    top: 75px;

  }


  .node-server {

    left: 14%;

    bottom: 10px;

  }


  .node-network {

    right: 14%;

    bottom: 10px;

  }


  .line-one {

    width: 100px;

    left: 24%;

  }


  .line-two {

    width: 100px;

    left: 25%;

  }


  .line-three {

    width: 100px;

    left: 58%;

  }


  .line-four {

    width: 90px;

    left: 58%;

  }


  .section-heading {

    margin-bottom: 50px;

  }


  .section-heading h2 {
    font-size: 43px;
  }


  .about-intro .large-text {
    font-size: 22px;
  }


  .experience-card {

    grid-template-columns:
      45px 1fr;

  }


  .experience-index {
    padding-left: 0;
  }


  .experience-main {
    padding-right: 0;
  }


  .experience-header h3 {
    font-size: 24px;
  }


  .experience-content {

    grid-template-columns: 1fr;

    gap: 25px;

  }


  .skills-grid {

    grid-template-columns: 1fr;

  }


  .skill-category {

    border-right: 0;

    border-bottom:
      1px solid var(--line);

    min-height: auto;

  }


  .skill-category:last-child {
    border-bottom: 0;
  }


  .skill-category h3 {
    margin-top: 35px;
  }


  .cert-grid {

    grid-template-columns: 1fr;

  }


  .cert-card {
    min-height: 350px;
  }


  .cta-section {
    padding: 50px 0;
  }


  .cta-box {

    padding:
      45px 25px;

  }


  .cta-box h2 {

    font-size: 43px;

    margin-top: 45px;

  }


  .cta-actions {

    flex-direction: column;

  }


  .footer-inner {

    grid-template-columns: 1fr;

  }


  .footer-links {

    order: 3;

    flex-wrap: wrap;

  }


  .copyright {

    grid-column: auto;

  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {

    animation-duration:
      .01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      .01ms !important;

  }

}