/* Global Styles */
:root {
  --bg-color: hsl(355, 10%, 14%);
  --text-color: #ffffff;
  --accent-color: hsl(263, 45%, 56%);
  --transition-speed: 0.4s;
}

html {
  scroll-behavior: smooth;
}
body * {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  background-color: hsl(355, 10%, 14%);
  color: #ffffff;
  font-size: 24px;
  line-height: 1.6;
}
.container {
  padding-left: 20px;
  padding-right: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 .headline {
  font-family: "Abril Fatface", cursive;
  margin-top: 0;
  margin-bottom: 20px;
}
a {
  color: white;
  transition: all 0.3s;
  &:hover {
    color: hsl(263, 85%, 66%);
  }
}
a.alt-color {
  color: hsl(355, 60%, 85%);
  &:hover {
    color: hsl(355, 60%, 66%);
  }
}
h1 {
  font-size: 85px;
  line-height: 85px;
}
h2 {
  font-size: 62px;
  line-height: 62px;
}
h3 {
  font-size: 42px;
  line-height: 42px;
}
strong {
  font-weight: 700;
}
/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 60px;
  margin-right: 10px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
nav ul li {
  margin: 0;
  &:first-child a {
    padding-left: 0;
  }
}
nav ul li a {
  display: block;
  padding: 10px 20px;
  position:relative;
  text-decoration:none;
  &.has-image {
    padding-right:40px;
  }
}
nav ul li a.active {
  color: hsl(263, 85%, 66%);
}
nav ul li a img {
  position:absolute;
  top:15px;
  right:9px;
}
section {
  max-width: 1400px;
  margin: 0 auto;
  img {
    max-width:100%;
  }
}
section.bottom-image {
  text-align:center;
  img {
    width:600px;
    height:auto;
    max-width:100%;
    margin:40px auto;
    border-radius: 8px;
  }
}
/* Hero Section */
.hero,
.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 20px;
  gap: 50px;
}
.hero-text,
.callout-text {
  flex: 1 1 400px;
}
.hero-image,
.callout-image {
  flex: 1 1 400px;
  text-align: center;
}
.hero-image img,
.callout-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.hero {
  gap: 100px;
}
.hero-text {
  flex: 1 1 300px;
}
.callout {
  padding: 120px 20px;
}
a.cta-button,
.cta-button {
  background-color: hsl(263, 45%, 56%);
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  font-size: 20px;
  text-decoration:none;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  &:hover {
    background-color: white;
    color: black;
  }
  &.alt-color {
    background-color: hsl(355, 60%, 55%);
    &:hover {
      color: black;
      background-color: white;
    }
  }
  &.green {
    background-color:hsl(142, 60%, 42%);
  }
  &.alternate {
    padding:30px 30px;
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    img {
      width:50px;
      height:auto;
    }
  }
}
/* Services Section */
.services {
  padding: 30px;
  background-color: hsl(355, 10%, 16%);
}
.services .card-intro {
  width: 65%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.service-card {
  background-color: hsl(355, 10%, 19%);
  padding: 180px 30px 30px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}
.service-card img {
  width: 160px;
  height: auto;
  margin-bottom: 10px;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}
#web .service-card {
  padding-top: 200px;
}
#web .service-card img {
  width: 150px;
}
/* Remove default list styling */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  text-align: center;
}

/* Each list item will be a block-level flex container, ensuring one per line */
.service-card ul li {
  display: flex;
  align-items: center;
  /* Use auto margins and a width based on content to center the entire li */
  margin: 0.5em auto;
  width: fit-content;
  font-size: 20px;
}

/* Add the checkmark before each list item */
.service-card ul li::before {
  content: "\2713"; /* Unicode checkmark */
  margin-right: 0.3em;
  color: white; /* Accent color */
}

.works {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px auto;
  max-width: 1240px;
}
.work {
  background-color: hsl(355, 10%, 16%);
  border-radius: 5px;
  padding: 30px;
  flex-basis: 100%;
  font-size: 1.3rem;
  line-height: 2.1rem;
}
.work img {
  max-width: 100%;
  height: auto;
}
.work-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.work-column {
  flex-basis: calc(50% - 15px);
}
.work .intro {
  margin-bottom: 30px;
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.work .label {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  opacity: 0.7;
}
.work .content {
  margin-bottom: 30px;
}
p.footnote {
  font-size: 15px;
  line-height: 19px;
  margin-top: 20px;
}
p.narrow,
.narrow {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
/* About Section */
.about {
  width: 60%;
  margin: 50px auto 0;
  padding: 40px;
  background-color: hsl(355, 10%, 16%);
}
.about-person {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  margin-top: 30px;
  img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
  }
  p {
    margin-top: 0;
  }
}

/* Contact Section */
.contact {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 60px 0;
  text-align: center;
  padding: 30px;
}
.contact form {
  max-width: 600px;
  margin: 20px auto 0 auto;
  display: flex;
  flex-direction: column;
}
.contact input,
.contact textarea {
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  background-color: hsl(355, 10%, 11%);
  color: #ffffff;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 18px; /* Optional: adjust padding as needed */
  width: 100%; /* Optional: adjust width as needed */
}
.contact button {
  margin-top: 20px;
}

/* Footer */
footer {
  padding: 30px;
  text-align: center;
  font-size: 14px;
  max-width: 1400px;
  margin: 0 auto;
}
footer .footer-logo {
  margin: 20px auto 100px auto;
  opacity: 0.03;
}
footer .footer-logo img {
  width: 100%;
}
footer a {
  margin: 0 10px;
}



/* Calculator Styles */
.poweredby {
  margin-top:40px;
  font-size:16px;
  img {
    width:65px;
    height:auto;
    position:relative;
    top:2px;
  }
}
#calculator-app {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 0 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: Arial, sans-serif;
}
#calculator-app h3 {
  word-break: normal;
}

/* All “screens” are hidden by default; .active will fade them in */
#calculator-app .screen {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}
#calculator-app .screen.active {
  display: block;
  opacity: 1;
}

/* Intro Screen */
#calculator-app #intro {
  text-align: center;
  padding: 30px 10px;
}
#calculator-app #intro h3 {
  margin-bottom: 30px;
  font-size: 2.4rem;
  line-height: 1.4;
  font-family: "IBM Plex Sans", sans-serif;
}
#calculator-app #intro img.checkup,
#calculator-app #intro img.quote-icon {
  width:400px;
  margin:0 auto 20px auto;
  max-width:100%;
}

/* Questions Screen */
#calculator-app #questions {
  padding-bottom: 60px;
}
#calculator-app .question-group {
  display: none;
  opacity: 0;
  animation: fadeIn var(--transition-speed) ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#calculator-app .question-group.active {
  display: block;
}
#calculator-app .group-title {
  margin-top:35px;
  margin-bottom:0;
  text-align: center;
}
#calculator-app .group-subtitle {
  margin-bottom: 35px;
  text-align: center;
  font-size:1rem;
}
#calculator-app .question {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#calculator-app .question-text {
  flex: 1;
  font-size: 1.3rem;
  line-height: 1.4;
}

#calculator-app a.cta-button img {
  position:absolute;
  top:13px;
  right:20px;
  margin-left:10px;
}
#calculator-app a.cta-button.alternate img {
  position:relative;
  top:auto;
  right:auto;
  margin-left:0;
}
#calculator-app a.cta-button.with-icon.icon-left img {
  right:auto;
  left:10px;
}
#calculator-app a.cta-button.with-icon {
  position:relative;
  padding-right:55px;
}
#calculator-app a.cta-button.with-icon.alternate {
  position:relative;
  padding-right:30px;
}
#calculator-app a.cta-button.with-icon.icon-left {
  position:relative;
  padding-right:25px;
  padding-left:55px;
}
#calculator-app .nav-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  position:relative;
}
#calculator-app a.cta-button:hover {
  background-color: hsl(263, 45%, 46%);
  color:white;
}
#calculator-app a.cta-button.green:hover {
  background-color: hsl(142, 60%, 35%);
  color:white;
}

/* Result Screen */
#calculator-app #result {
  text-align: center;
  padding: 20px 10px;
  min-height: 400px;
}
#calculator-app #result h3 {
  font-family: "IBM Plex Sans", sans-serif;
}
#calculator-app #result p {
  font-size:1.3rem;
}
#calculator-app .contact {
  margin-top:0;
}
#calculator-app #result #cta-container {
  display:flex;
  gap:20px;
  justify-content:center;
}
#calculator-app #result button.cta-button {
  padding-top:20px;
  padding-bottom:20px;
}
#calculator-app #result #cta-container .cta-button {
  border-radius:10px;
  flex-basis:50%;
}
#calculator-app #result .cta-button span {
  display: block;
  line-height: 1.2;
  font-size: 1.4rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
}

@media screen and (max-width:500px) {
  #calculator-app #result #cta-container {
    flex-direction:column;
  }
}
@media screen and (min-width:1200px) {
  #calculator-app #intro h1 {
    font-size:70px;
    line-height:70px;
  }
}

/* ────────────────────────────────────────────────────────────────────────── */
/*  Meter component styles                                                 */
/* ────────────────────────────────────────────────────────────────────────── */

.meter-container {
  margin: 0 auto 20px;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
}
.meter-wrapper {
  margin:0 auto;
  width:300px;
}

.meter-svg {
  width: 100%;
  height: auto;
  overflow: visible; /* ensure needle never clipped */
}

/* Needle: pivot at (100,100), initial angle –90° (far left) */
#meter-needle {
  transform-box: fill-box; 
  transform-origin: 5px 90px; /* pivot at triangle’s base center */
  transform: rotate(-90deg);     /* start fully left (caution) */
  transition: transform 2s cubic-bezier(0.85, 0, 0.15, 1);
}


/* ────────────────────────────────────────────────────────────────────────── */
/*  Financial Calculator – additional styles                                 */
/*  (Place these at the bottom of your style.css)                             */
/* ────────────────────────────────────────────────────────────────────────── */

/* Hide all result‐message divs by default */
#calculator-app .result-message {
  display: none;
}

/* PROGRESS CONTAINER */
#calculator-app #progress-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-bottom: 20px;
  visibility: hidden; /* only visible once we leave intro */
  overflow: hidden;
}

/* PROGRESS “FILL” – purple accent */
#calculator-app #progress-bar {
  width: 0%;
  height: 100%;
  background: hsl(263, 45%, 56%); /* purple accent */
  transition: width 0.4s ease;
}

/* Show progress bar on any screen except intro */
#calculator-app:not(.show‐intro) #progress-container {
  visibility: visible;
}

/* ──────────────────────────────────────────────────────────────────────── */
/*  INSTANT QUOTE: Custom styles scoped to #calculator-app                  */
/* ──────────────────────────────────────────────────────────────────────── */

#calculator-app .question.nested {
  display: none;
}
#calculator-app.instant-quote .group-title {
  margin-bottom:40px;
}
#calculator-app .custom-select-wrapper {
  position: relative;
  display: block;
  margin-left:20px;
}
#calculator-app .custom-select {
  width: 100%;
  min-width:150px;
  padding: 0.6rem 2rem 0.6rem 1rem;
  font-size: 1rem;
  color: #fff;
  background-color: hsl(355,10%,14%);
  border: 2px solid hsl(263,45%,56%);
  border-radius: 0.375rem;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
#calculator-app .custom-select option {
  background-color: #222;
  color: #fff;
  padding: 0.5rem;
}

#calculator-app .custom-select-wrapper::after {
  content: '▼';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: hsl(263,45%,56%);
  font-size: 0.8rem;
}

#calculator-app .button-group {
  display: inline-flex;
  border-radius: 0.375rem;
  overflow: hidden;
  margin-left:20px;
}
#calculator-app .button-group .btn-toggle {
  flex: 1 1 0;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  color: #fff;
  background-color: hsl(355,10%,14%);
  border: 2px solid hsl(263,45%,56%);
  border-left: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
#calculator-app .button-group .btn-toggle:first-child {
  border-left: 2px solid hsl(263,45%,56%);
  border-right: none;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
#calculator-app .button-group .btn-toggle:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
#calculator-app .button-group .btn-toggle.active {
  background-color: hsl(263,45%,56%);
}

#calculator-app #progress-container {
  width: 100%;
  background-color: #333;
  height: 0.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
#calculator-app #progress-bar {
  height: 100%;
  width: 0;
  background-color: hsl(263,45%,56%);
  transition: width 0.3s ease;
}

#calculator-app .question {
  margin-bottom: 1rem;
}
#calculator-app .question-text {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #fff;
}

#calculator-app .yesno-group {
  display: inline-flex;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid hsl(263,45%,56%);
}
#calculator-app .yesno-group .option {
  padding: 0.5rem 1rem;
  background: transparent;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  border: none;
  cursor: pointer;
  flex: 1;
}
#calculator-app .yesno-group .option.active {
  background: hsl(263,45%,56%);
}
#calculator-app .yesno-group .no-btn {
  border-right: 1px solid hsl(263,45%,56%);
}
#calculator-app .yesno-group .yes-btn {
  /* no extra border */
}

#calculator-app .result-summary {
  text-align: center;
  margin-bottom: 2rem;
}
#calculator-app .result-summary .package-label {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size:1.2rem;
}
#calculator-app .result-summary h2 {
  color:hsl(263,45%,67%);
}
#calculator-app .result-summary #package-fee {
  font-size:3rem;
}
#calculator-app .result-summary #fixed-fee-text {
  font-size:1.2rem;
}
#calculator-app .result-summary p {
  margin-top: 0.25rem;
}
#calculator-app #result p.footnote {
  font-size:.8rem;
  opacity:.5;
}

#calculator-app .cta-buttons-result {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

#calculator-app a.disabled {
  opacity: 0.5;
  pointer-events: none;
}

#calculator-app.instant-quote .result-summary { 
  margin:0 30px;
  padding:20px 20px;
  border:2px solid hsl(263,45%,67%);
  border-radius:10px;
}
#calculator-app.instant-quote .result-summary h2 {
  margin-bottom:0;
  padding-bottom:23px;
}
#calculator-app.instant-quote .result-summary #package-fee {
  margin-bottom:30px;
}
#calculator-app.instant-quote {
  #fixed-fee-text {
    display:flex;
    flex-direction:column;
    gap:15px;
    margin:0;
    .fee-line {
      display: flex;
      text-align: left;
      gap: 15px;
      padding: 15px 20px;
      border: 1px solid hsl(263, 25%, 37%);
      border-radius: 7px;
      font-size:1rem;
      align-items:flex-start;
      background: hsla(263, 25%, 37%, .2);
      img {
        margin-top:7px;
        opacity:.5;
      }
    }
  }
  
  .result-summary h2#package-name {
    /* set up text-only background */
    background: linear-gradient(
      90deg,
      hsl(263,45%,67%) 0%,
      hsl(263,45%,67%) 20%,
      hsl(263,45%,100%) 50%,
      hsl(263,45%,67%) 80%,
      hsl(263,45%,67%) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3.5s ease-in-out 1;
    animation-fill-mode: forwards;
  }
  .result-summary {
    position: relative;
    border: 2px solid hsl(263,45%,56%);
    border-radius: 0.5rem;
    animation: glow-rotate 4.5s linear infinite;
  }
}

@keyframes glow-rotate {
  0%   { border-color: hsl(263,45%,56%); box-shadow: 0 0 8px hsla(263,45%,56%,0.7) }
  50%  { border-color: hsl(263,45%,76%); box-shadow: 0 0 20px hsla(263,45%,76%,0.7) }
  100% { border-color: hsl(263,45%,56%); box-shadow: 0 0 8px hsla(263,45%,56%,0.7) }
}

@keyframes shimmer {
  0%   { background-position: -150% 0 }
  100% { background-position: 150% 0 }
}


@media (max-width: 600px) {
  #calculator-app .cta-buttons-result {
    flex-direction: column;
  }
  #calculator-app .custom-select-wrapper {
    max-width: 100%;
  }
}



/* ───────────────────────────────────────────────────── */
/*  CUSTOM‐STYLED CHECKBOX                              */
/* ───────────────────────────────────────────────────── */
/* Updated custom checkbox size and centered checkmark */
.custom-checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  margin-left: 30px;
  vertical-align: middle;
}

/* Hide the native checkbox input */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Enlarged checkbox container */
.custom-checkbox .checkmark {
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Checked state fills with purple accent */
.custom-checkbox input:checked ~ .checkmark {
  background-color: hsl(263, 45%, 56%);
  border-color: hsl(263, 45%, 56%);
}

/* The checkmark pseudo-element (hidden by default) */
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 32%;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Show the centered checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

@media screen and (max-width:600px) {
  #calculator-app .question-text {
    font-size:1rem;
  }
  #calculator-app .question.select,
  #calculator-app .question.nested {
    flex-direction:column;
    align-items:flex-start;
  }
  #calculator-app .custom-select-wrapper {
    margin-left:0;
    width:100%;
  }
  #calculator-app .button-group .btn-toggle {
    font-size:.8rem;
    padding-left:.8rem;
    padding-right:.8rem;
  }
  #calculator-app .button-group {
    margin-left:10px;
  }
  #calculator-app #intro h3 {
    font-size:1.4rem;
  }
  #calculator-app #intro {
    padding:0;
  }
  #calculator-app h1 {
    font-size:42px;
    line-height:48px;
  }
  #calculator-app #result {
    padding:0;
  }
  #calculator-app .result-summary #package-fee {
    font-size:2.5rem;
  }
}


/* ────────────────────────────────────────────────────────────────────────── */


@media (max-width: 1280px) and (min-width: 992px) {
  .work .intro {
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 2.1rem;
  }
  .work .content {
    font-size: 1.1rem;
    line-height: 1.9rem;
  }
  .work .card-cta {
    font-size: 1.1rem;
    line-height: 1.1rem;
  }
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 22px;
  }
  .logo img {
    height: 50px;
  }
  .hero {
    gap: 50px;
  }
  h1 {
    font-size: 70px;
    line-height: 70px;
  }
  h2 {
  }
  h3 {
    font-size: 36px;
    line-height: 36px;
  }
  .about {
    width: 100%;
    padding: 30px;
  }
  .about-person {
    gap: 30px;
  }
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 20px;
  }
  .hero {
    gap: 20px;
    padding-top: 20px;
  }
  .hero-text,
  .callout-text {
    width: 100%;
  }
  .hero-image,
  .callout-image {
    width: 100%;
  }
  h1 {
    font-size: 60px;
    line-height: 60px;
  }
  h2 {
    font-size: 48px;
    line-height: 48px;
  }
  .services .card-intro {
    width: 100%;
  }
  .services {
    padding: 20px;
  }
  .service-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact {
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .callout {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  footer .footer-logo {
    margin-bottom: 50px;
  }
  .service-card ul li {
    font-size: 18px;
  }
  .contact input,
  .contact textarea {
    font-size: 18px;
  }
  .logo img {
    height: 40px;
  }
  .work-column {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  p.narrow,
  .narrow {
    width: 100%;
  }
  .work {
    padding: 15px;
  }
  .work h3,
  h3 {
    word-break: break-all;
    font-size: 30px;
    line-height: 30px;
  }
  .work .intro {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .work {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
  nav ul li a {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }
  .about-person {
    flex-wrap: wrap;
    p {
      width: 100%;
    }
    img {
      border-radius: 50%;
      width: 200px;
      height: 200px;
    }
  }
  nav ul li a img {
    top:10px;
  }
}
