/* ═══════════════════════════════════════════════════════════════
   Doug Langness — Portfolio Default Stylesheet
   ═══════════════════════════════════════════════════════════════ */


/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --text: #3d3d52;
  --text-muted: #6b6b82;
  --text-h1: #1a1a2e;
  --text-h2: #6b6b82;
  --text-h3: #3d3d52;
  --text-card-h2: #3d3d52;

  --accent: #d05e28;
  --link: #2980b9;
  --hero-blue: #6dd5fa;
  --hero-border: #b9ecf9ad;
  --hero-bg: linear-gradient(175deg, rgba(230, 248, 250, 1) 2%, rgba(181, 235, 249, 1) 39%, rgba(252, 214, 154, 1) 100%);
  --card-bg: linear-gradient(157deg, var(--color-cyan-84, #fef3e1) 59.77%, var(--color-orange-80, #FCD69A) 117.31%);
  --callout-bg: #fef3e1;

  /* Type */
  --font-display: 'Roboto Slab', Georgia, serif;
  --font-body:    'Open Sans', system-ui, sans-serif;
  --text-h1-s: 2.75rem;
  --text-h1-lh: 3rem;

  /* Spacing */
  --gap-xs:   4px;
  --gap-sm:   12px;
  --gap-md:   24px;
  --gap-lg:   40px;
  --gap-xl:   64px;
  --gap-2xl:  96px;

  /* Layout */
  --max-w:    1200px;
  --nav-h:    72px;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-standard: 1em;

  /* Transitions */
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s;
  --t-base: 0.28s;
}


/* ── Reset & Base ────────────────────────────────────────────── */
* {
  box-sizing: border-box;
}

html {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 20px;
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 300;
  color: var(--text);
  background-color: #fafafd;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin-top: 0;
  margin-bottom: 1.2rem;
}


/* ── Typography ──────────────────────────────────────────────── */
.body-large {
  font-size: 22px;
  font-style: italic;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 3rem;
  padding-top: .5em;
  margin-bottom: 2.5rem;
  color: var(--text-h1);
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 2.3rem;
  margin-top: 1em;
  margin-bottom: .25em;
  color: var(--text-h2);
}

h2.home {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-top: 0px;
  margin-bottom: .25em;
  line-height: 3.2rem;
}

h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.7rem;
  margin-bottom: .2em;
  color: var(--text-h3);
}

.section-heading .eyebrow {
  font-size: .875em;
  color: var(--text-muted);
}

a {
  color: var(--link);
}

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

.text-muted {
  color: var(--text-muted);
}

.text-highlight {
  color: #007120;
  font-weight: 700;
}

.f-right {
  float: right;
}


/* ── Buttons ─────────────────────────────────────────────────── */
button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 1.5em;
  color: #fff;
  font-size: 0.85rem;
  background: var(--accent);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

button:hover {
  background: var(--link);
}


/* ── Layout ──────────────────────────────────────────────────── */
.container {
  width: 95%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.content {
  margin-top: 85px;
}

.target-section {
  display: block;
  scroll-margin-top: 85px;
}

.content-offset {
  margin-left: 8.333%;
  margin-right: 8.333%;
  max-width: 83.333%;
}

.section-heading {
  margin-left: 5.75%;
}

.section-subhead {
  margin-top: 2.3rem;
}

.section-rule {
  border-bottom: 1px solid #dedede;
  padding-bottom: 0.3rem;
}

.flex-description {
  text-align: left;
  margin-bottom: 2rem;
}


/* ── Navigation ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: #fff;
  opacity: .96;
  border-radius: var(--r-standard);
  margin-top: .5em;
  padding: 0 1.5em 0 1em;
}

.navbar-brand {
  display: inline-block;
  padding: 10px;
  font-size: 30px;
  line-height: 1;
  color: var(--text);
  text-decoration: none;
}

.navbar-brand .large {
  letter-spacing: 1px;
}

.navbar-brand .small {
  font-size: 18px;
  text-transform: uppercase;
  margin-left: 2px;
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 1.1em;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
}

.nav-links a:hover {
  color: #00b4db;
}

/* Hamburger toggle (hidden checkbox) */
.nav-toggle {
  display: none;
}

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


/* ── Hero / Home Top ─────────────────────────────────────────── */
.home-top {
  background: var(--hero-bg);
  padding-top: 85px;
  border-bottom: 5px solid var(--hero-blue);
}

.hero-bar {
  border-top: 2px solid var(--hero-blue);
  border-bottom: 5px solid var(--hero-blue);
  margin-bottom: 50px;
  background: var(--hero-bg);
}

.jumbotron {
  padding: 0;
  color: var(--text);
}

.home-landscape {
  position: relative;
  height: 100%;
  padding-top: 1.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 72%) minmax(220px, 28%);
  justify-content: space-between;
  align-items: self-start;
  column-gap: 2rem;
  
}

.intro-col {
  margin-left: 8.333%;
}

.intro-overlay-01 {
  
  font-size: 1.5rem;
  line-height: 1.75rem;
  
}

.intro-overlay-01 span{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
}

.intro-overlay-02 {
  font-size: 1.1em;
  margin-top: 0.2rem;
  margin-bottom: 101px;
}

.doug {
  text-align: center;
}

.jumbotron .doug img {
  max-width: 275px;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.8);
}

.pet-row {
  display: flex;
  margin-top: 0;
}

.pet-col {
  width: min(320px, 100%);
  margin-left: 8.333%;
  position: relative;
}

.pet-col img {
  margin-top: -85px;
  margin-bottom: -38px;
  max-width: 75px;
  float: left;
}

.jumbotron .caption {
  bottom: 0;
  margin-left: -24px;
  padding: 5px 12px;
  color: var(--text);
  font-size: 12px;
  line-height: 12px;
}


/* ── Image Bars ──────────────────────────────────────────────── */
.image-bar {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}

.image-bar-bottom {
  background: #eee;
  color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 1250px;
  width: 100%;
}

.content-image {
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.08);
  border-radius: var(--r-standard);
}

.outlined-image {
  border: 1px solid #ccc;
}

.image-full img {
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.page-title-wrap .content-offset h1 {
  margin-top: 5px;
}


/* ── Callout ─────────────────────────────────────────────────── */
.callout {
  background: var(--callout-bg);
  color: #333;
  width: 100%;
  border-radius: var(--r-standard);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.08);
  padding: 1em 1.5em;
  margin-top: 2em;
  margin-bottom: 20px;
  font-size: .875em;
}

.callout h2 {
  color: var(--text);
  margin-top: 0;
  margin-bottom: .5em;
  line-height: 1.75rem;
  font-weight: 400;
  font-size: 1.5rem;
}

.callout ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding-left: .25rem;
}

.callout li {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.callout li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #333;
  margin-top: .65em;
  flex-shrink: 0;
}


/* ── Grid Layouts ────────────────────────────────────────────── */
.main-aside-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.main-aside-main {
  margin-left: 8.333%;
  max-width: 83.333%;
}

.main-aside-side {
  margin-left: 8.333%;
  max-width: 83.333%;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
}

.media-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-split-grid,
.list-two-grid,
.alert-two-grid,
.gallery-two-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.list-two-grid ol,
.alert-two-grid ol {
  margin-top: 0;
}


/* ── Comparison Grid ─────────────────────────────────────────── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.comparison-card {
  position: relative;
  background: #e9f4fa;
  border-radius: var(--r-standard);
  padding: 1.5rem;
}

.comparison-content h2 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-top: 0;
  margin-bottom: 20px;
}

.comparison-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.comparison-badge {
  position: absolute;
  top: 0;
  right: 40px;
  background: #2f8cc4;
  color: white;
  padding: 16px 18px;
  font-size: 1.8rem;
  border-radius: 0 0 8px 8px;
}


/* ── Chips ───────────────────────────────────────────────────── */
.chip-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  display: inline-block;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 1rem;
  font-size: 14px;
  text-decoration: none;
  color: #1f6fb2;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  margin-bottom: 1.33rem;
}


/* ── Table ───────────────────────────────────────────────────── */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d7e7ef;
  background: #fff;
}

.data-table th,
.data-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid #e8eff3;
  text-align: left;
  vertical-align: top;
}

.data-table tbody td:last-child {
  text-align: center;
  vertical-align: top;
}

.data-table thead th {
  background: #eef7fb;
  color: #264a5a;
  font-weight: 700;
  vertical-align: bottom;
}

.data-table thead th:last-child {
  font-weight: 200;
}

.data-table tbody tr:nth-child(even) {
  background: #fafcfd;
}


/* ── Portfolio Cards ─────────────────────────────────────────── */
.port-projects {
  margin-top: 5em;
}

.port-projects h3 {
  margin-left: 1em;
  margin-bottom: 16px;
}

.card-deck {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 0;
  margin-bottom: 4em;
}

.card {
  position: relative;
  display: block;
  border: 1px solid #fcfcfc;
  border-radius: var(--r-standard);
  background-color: var(--card-bg);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.08);
  color: var(--text-muted);
  text-decoration: none;
  padding: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 50px;
}

.card--bsc {
  background: url('../images/logo-bsc-shield.png') right -18px bottom -18px / 35% no-repeat #fff;
  overflow: hidden;
}

.card--aaa {
  background: url('../images/logo-aaa.png') right -40px bottom -8px / 50% no-repeat #fff;
  overflow: hidden;
}

.card--sl {
  background: url('../images/logo-sl-loops.png') right -18px bottom -18px / 40% no-repeat #fff;
  overflow: hidden;
}

.card--blank {
  position: relative;
  display: block;
  
  color: var(--text-muted);
  text-decoration: none;
  padding: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 50px;
 

}

.card:hover {
  border-color: var(--link);
}

.card h2, .card--blank h2 {
  margin-top: 0;
  margin-bottom: 8px;
  
  
  font-size: 1.8rem;
  line-height: 2rem;
  color: var(--text-card-h2);
}

.card .eyebrow {
  font-size: .7em;
  font-weight: 400;
  color: #666;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5em;
  

}

.card:hover p {
  color: var(--text);
}

.card .btn {
  position: absolute;
  bottom: 1rem;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 1.5em;
  font-size: 0.85rem;
  color: #fff;
  background: var(--accent);
}

.card--blank .link {
  
  display: inline-block;
  padding: 0;
  font-size: 0.85rem;
}

.card:hover .btn {
  background: #2980b9;
  border-color: var(--link);
}


/* ── About Section ───────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 62%) minmax(170px, 32%);
  justify-content: space-between;
  align-items: start;
  column-gap: 1rem;
  margin-bottom: 1em;
}

.about-copy {
  margin-left: 8.333%;
}

.about-links {
  margin-top: 0;
}

a.icons-about {
  display: block;
  height: 40px;
  margin-bottom: 1em;
  padding: 5px 0;
  text-decoration: none;
}

a.icons-about i {
  float: left;
  width: 35px;
  margin-right: 4px;
  color: var(--accent);
  font-size: 1.5rem;
}

a.icons-about .content {
  margin-top: 2px;
  padding: 0 5px;
  margin-left: 35px;
  color: var(--text);
  font-size: .9rem;
}

a:hover.icons-about i {
  color: var(--link);
}

a:hover.icons-about .content {
  color: var(--link);
}

a.icon-link {
  display: block;
  margin-right: 4px;
  padding: 5px 0;
  text-decoration: none;
}

a.icon-link i {
  float: left;
  width: 35px;
  color: var(--accent);
  font-size: 1.5rem;
}

a.icon-link .content {
  margin-top: 2px;
  padding: 0 5px;
  margin-left: 25px;
  color: var(--text);
  font-size: .9rem;
}

a:hover.icon-link i {
  color: var(--link);
}

a:hover.icon-link .content {
  color: var(--link);
}


/* ── Footer ──────────────────────────────────────────────────── */
.footer-bar {
  margin-top: 85px;
  padding-top: 24px;
  padding-bottom: 65px;
  color: var(--text);
  background: #fff;
  border-radius: 20px 20px 0 0;
  opacity: .95;
}

.footer-bar p {
  margin-left: 30px;
  margin-bottom: 0;
  font-size: 0.85rem;
}

.footer-bar a {
  color: var(--link);
}


/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInViewport {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBuildIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-overlay-01,
.intro-overlay-02,
.portrait-col,
.pet-row,
.content-onload,
.hero-bar-onload,
.fade-onload {
  opacity: 0;
  transform: translateY(18px);
  animation-name: heroBuildIn;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.hero-bar-onload, .fade-onload {
  animation-delay: .05s;
}

.intro-overlay-01 {
  animation-delay: 0.15s;
}

.intro-overlay-02 {
  animation-delay: 0.55s;
}

.portrait-col {
  animation-delay: 0.95s;
}

.pet-row {
  animation-delay: 1.35s;
}

.content-onload {
  animation-delay: 1.35s;
}

.fade-in-scroll {
  opacity: 1;
  transform: none;
}

.fade-in-scroll.one,
.fade-in-scroll.two,
.fade-in-scroll.three,
.fade-in-scroll.four {
  animation-delay: 0s;
}

@supports (animation-timeline: view()) {
  .fade-in-scroll {
    opacity: 0;
    transform: translateY(3px);
    animation-name: fadeInViewport;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 20% cover 20%;
  }

  .fade-in-scroll-img {
    opacity: 0;
    transform: translateY(3px);
    animation-name: fadeInViewport;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 10% cover 25%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bar .intro-overlay-01,
  .hero-bar .intro-overlay-02,
  .hero-bar .portrait-col,
  .hero-bar .pet-row {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .fade-in-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}


/* ── Skills ──────────────────────────────────────────────────── */
.skills {
  margin-top: 2.5em;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.skill-card {
  background: #fff;
  color: var(--text-muted);
  width: 100%;
  border-radius: var(--r-standard);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.08);
  padding: 1em 1.5em;
  font-size: .875em;
}

.skill-card-title {
  color: var(--text);
  margin-top: 0;
  margin-bottom: .5em;
  line-height: 1.75rem;
  font-size: 1.5rem;
}

.skill-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding-left: .25rem;
}

.skill-item {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.skill-item::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #333;
  margin-top: .65em;
  flex-shrink: 0;
}


/* ── Media Queries ───────────────────────────────────────────── */
@media (min-width: 993px) and (max-width: 1200px) {
  html {
    font-size: 18px;
  }

  .body-large {
    font-size: 22px;
  }


}

@media (max-width: 992px) {
  html {
    font-size: 16px;
  }

  body {
    font-size: 16px;
  }

  .body-large {
    font-size: 18px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 60%) minmax(200px, 34%);
  }
}

@media (max-width: 767px) {
  html {
    font-size: 12px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .nav-inner {
    min-height: 76px;
    flex-wrap: wrap;
    position: relative;
    opacity: 1;
    margin-top: .25em;
  }

  .navbar-brand {
    margin-left: -10px;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* Hide nav links by default on mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0.25em 0 1em;
    gap: 1em;
    border-top: 1px solid #eee;
    padding-top: 1em;
  }

  .nav-links a {
    font-size: 1.5em;
    padding: 0.25em 0;
  }

  /* Show nav links when checkbox is checked */
  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  /* Animate hamburger → X when open */
  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }

  .intro-col,
  .pet-col,
  .section-heading,
  .about-copy,
  .content-offset,
  .main-aside-main,
  .main-aside-side {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

    .intro-overlay-02 {
  font-size: 1.1em;
  margin-top: 0.2rem;
  margin-bottom: 0px;
}

  .jumbotron .doug img {
    margin-top: 12px;
    max-width: 215px;
  }

  .pet-col img {
    margin-top: -55px;
    margin-bottom: -38px;
    max-width: 60px;
    float: left;
  }

  .jumbotron .caption {
    margin-left: -18px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-links {
    margin-top: 0;
  }

  a.icons-about {
    margin-left: 0;
  }

  .image-bar {
    margin-top: 10px;
  }

  .callout {
    margin-top: 0px;
  }
}

@media (min-width: 768px) {
  .card-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-aside-grid {
    grid-template-columns: minmax(0, 66%) minmax(220px, 1fr);
    align-items: start;
    column-gap: 2rem;
  }

  .main-aside-main {
    margin-left: 8.333%;
    max-width: none;
  }

  .main-aside-side {
    margin-left: 0;
    margin-right: 8.333%;
    max-width: none;
  }

  .two-col-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .media-split-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    align-items: start;
  }

  .feature-split-grid {
    grid-template-columns: minmax(0, 66%) minmax(220px, 1fr);
    align-items: start;
    column-gap: 2rem;
  }

  .list-two-grid,
  .alert-two-grid,
  .gallery-two-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 330px) {
  a.icons-about .content {
    float: left;
    margin-top: 2px;
    padding-left: 0;
    padding-right: 5px;
    font-size: 1.2rem;
  }
}
