*:root {
  --vh: 1vh;
  /* Base White */
  --service-card-white: #fcfbf8;

  /* Base Blue */
  --deep-space-blue: #1f3249;

  /* Darks */
  --muted-navy: #2c3e50;
  --deepened-navy: #243648;
  --steel-gray: #4a4a4a;
  --deep-charcoal: #2a2a2a;
  --rich-black: #0e121a;

  /* Specialty */
  --golden-sand: #e5c07b;
  --lavender: #D8C8E9;
  --lavender-hover: #EDE3F3;
  --muted-teal: #4c9e9e;
  --positive-green: #3aa635;
  --slate-grey: #6b7b9a;
  --power-purple: #8c52ff;
  --royal-purple: #5e2b97;

  /* Ambers */
  --amber: #ffc107;
  --amber-hover: #ffdb6f;
  --amber-hover-cta: #fde18d;
  --amber-lighter: #fff1c5;
  --subtle-link: #795015;
  --amber-dark: #a50;
  --amber-dark-hover: #d19139;
  --card-yellow: #fffbe8;
  --card-yellow-2: #ffecb3;

  /*Teals*/
  --sky-aqua: #7fcfe2;
  --sky-aqua-hover: #a3dff0;
  --soft-teal: #80cbc4;
  --soft-teal-hover: #8dddd5;

  /* Neutrals */
  --cloud-grey: #EBECEE;
  --soft-cloud: #F4F5F6;
  --pale-mist: #F9FAFB;
  --slate-light: #D5D6D8;
  --muted-charcoal: #B9BBBD;
  --light-cream: #FFFBE8;
  --muted-ivory: #FAF3DD;
  --warm-beige: #F8F4EC;
  --slate-silver: #7b8a99;

  /*Light Blues*/
  --mist-blue: #cfd8e3;
  --cool-light-blue: #a2b9d7;
  --pale-sky: #E5EBF2;
  --soft-azure: #F0F4FA;
  --icy-blue: #DDE5ED;
  --foggy-blue: #BCC6D2;
  --muted-steel: #A9B7C6;
  --dusk-blue: #D0DBE7;

  --sienna-hover: #A23C27;
  --bone: #E4DCCD;
  --khaki: #BAAA94;
  --steel-silver: #a0adb9;
  --lava-charcoal: #292929;
  --rich-plum: #f2abef;
  --tangerine: #fec78f;
  --steel-blue: #609dce;
  --ember-red: #8b1e1e;
  --azure: #a4d6ff;
  --charcoal: #333;
  --silver-glow: #cfdde7;
  --midnight-navy: #1c2a3a;
  --charcoal-light: #444444;
  --cardinal: #fe8676;
  --golden-sand-light: #e2c898;

}

/* --burnt-amber: #d17a00;
--anti-flash-white: #f3f4f6;
--soft-teal-2: #b3dce7;
--dark-cream: #d69b73;
--teal: #00b8d9;
--dark-tan: #c89a75; */

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

::-webkit-scrollbar {
  width: 16px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

html {
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

html:hover {
  scrollbar-color: rgba(0, 0, 0, 0.5) transparent;
}

::selection {
  background-color: var(--mist-blue);
  color: var(--deep-space-blue);
}

::-webkit-scrollbar-horizontal {
  height: 16px;
}

@font-face {
  font-family: Oswald;
  src: url("/fonts/Oswald-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Oswald;
  src: url("/fonts/Oswald-Medium.woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-Italic.woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-Bold.woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: League Spartan;
  src: url("/fonts/LeagueSpartan-700.woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  font-size: 1rem;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 50%, #1f3249 0%, #0e121a 80%);
  background-attachment: fixed;
  color: var(--deep-space-blue);
  fill: var(--deep-space-blue);
  z-index: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.wrapper {
  display: flex;
  flex-direction: column;
}

section {
  margin: 0;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--amber-hover);
  text-decoration: none;
}

a:hover {
  color: var(--service-card-white)
}

button {
  -webkit-tap-highlight-color: transparent;
}

header {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 1;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform 0.5s ease, opacity 0.5s ease, background 0.3s ease, border-bottom 0.3s ease;
}

header.scrolled {
  background: radial-gradient(circle at 50% 50%, #1f3249 0%, #0e121a 80%);
  border-bottom: 1px solid var(--silver-glow);
}

header picture {
  position: relative;
  display: flex
}

header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 75px;
  grid-row: 1;
  justify-self: left;
  margin: 10px 0;
}

header .logo img {
  width: fit-content;
  max-width: 220px;
  height: 100%;
  transition: all 0.2s ease;
}

header .logo a {
  width: fit-content;
  height: 100%;
}

main a:not(.tier-card a):not(.cta-button):not(.secondary-button):not(#contact-info-section a):not(.template-cta) {
  letter-spacing: unset;
  text-transform: capitalize;
  font-family: "Lato";
  font-weight: 700;
  color: var(--subtle-link);
  text-decoration: underline;
  text-underline-offset: .25rem;
}

main a:hover:not(.tier-card a:hover):not(.cta-button:hover):not(.secondary-button:hover):not(#contact-info-section a:hover):not(.template-cta:hover) {
  color: var(--amber-dark-hover);
}


.cta-button {
  background-color: var(--amber-hover);
  color: var(--deep-space-blue);
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  font-size: 1.0625rem;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
  justify-self: right;
  padding: .6em 1.2em;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--amber-lighter);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  color: var(--deep-space-blue);
}

.secondary-button {
  background-color: transparent;
  color: var(--amber-hover);
  text-transform: uppercase;
  border: 2px solid;
  border-radius: 4px;
  font-size: 1.0625rem;
  cursor: pointer;
  justify-self: left;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: .6em 1.2em;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: transparent;
  border: 2px solid;
  color: var(--service-card-white);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.tertiary-button {
  background-color: var(--sky-aqua);
  color: var(--deep-space-blue);
}

.tertiary-button:hover {
  background-color: var(--sky-aqua-hover);
  color: var(--deep-space-blue)
}

.cta-button,
.secondary-button {
  letter-spacing: -.25px;
  margin: 1rem 0;
  align-content: center;
}

.strikethrough {
  text-decoration: line-through;
  color: #ccc;
}

.bold {
  font-weight: 700;
}

.bold-no-upper {
  font-weight: 700 !important;
}

.unbold {
  font-weight: 400 !important;
}

.highlight-text {
  color: var(--mist-blue);
}

.golden {
  color: var(--amber-hover);
}

.golden-border {
  /* border-color: rgba(183, 163, 98, 0.7) !important; */
  border-color: rgba(183, 163, 98, 0.9) !important;
  background-color: rgba(255, 255, 255, 0.025) !important;
  /* border: 1px solid rgba(255, 255, 255, 0.8); */
  /* backdrop-filter: saturate(180%); */
  -webkit-backdrop-filter: saturate(180%);
    transform: translate(5vw) !important;
}

.accent-amber-hover {
  color: var(--amber-hover);
}

.display-contents {
  display: contents !important;
}

.display-unset {
  display: unset !important;
}

.accent-slate-grey {
  color: #157c84;
}

.center-icon {
  padding: 16px 0 0;
  display: flex;
  justify-content: center;
  font-size: 20px;
}

.center {
  text-align: center;
}

.lowercase {
  text-transform: lowercase;
}

.uppercase {
  text-transform: uppercase;
}

.hidden {
  display: none !important;
}

.height-64 {
  height: 64px !important;
}

.underline {
  text-decoration: underline;
}

.underline-dots {
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.003rem;
  cursor: pointer;
}

.underline-dots {
  text-decoration-color: #42464b;
}

.underline-dots:hover {
  color: var(--amber);
  text-decoration-color: #42464b;
  transition: color 0.3s ease-in-out, text-decoration-color 0.3s ease-in-out;
}

.underline-dots::after {
  border-bottom: 1px dotted #42464b;
}

.nav-color-silver-glow {
  color: var(--silver-glow) !important;
}

.nav-color-amber {
  color: var(--amber) !important;
}

.nav-color-amber-hover {
  color: var(--amber-hover) !important;
}

.nav-color-golden-sand {
  color: var(--golden-sand) !important;
}

.nav-color-golden-sand-light {
  color: var(--golden-sand-light) !important;
}


.profile-image-wrapper {
  grid-row: 1 / span 6;
  grid-column: 1;
  place-self: center;
  transition: all 0.5s ease;
}

.profile-image-wrapper img:hover {
  transform: scale(1.1);
  padding: 3px;
}

.profile-image-wrapper img {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #ffda70, #ffe5b4);
  padding: 2px;
  box-shadow: 0 0 10px rgba(180, 154, 70, 0.4), 0 0 8px rgba(192, 192, 192, 0.4);
  background-clip: padding-box;
  transition: all 0.5s ease;
}

.contact-grid {
  /* color: var(--deep-space-blue); */
  color: var(--service-card-white);
  grid-row: 3;
  grid-column: 1;
  line-height: 1.4;
  display: grid;
  grid-template-columns: auto 40px auto 1fr;
  gap: 0 20px;
  align-items: center;

  border-radius: 0;
  margin: 1rem 0 2rem;
  width: 100%;
  /* border: 1px solid var(--muted-steel); */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05); */
  text-align: left;
  letter-spacing: 0.0125rem;
  /* background: radial-gradient(circle at top left, #e3f0ff, #f6f9fc), radial-gradient(circle at bottom left, #ffffff, #f1f4f8); */
      background: linear-gradient(to bottom right, var(--deepened-navy), var(--rich-black));
    padding: 1.25rem;
    border: 1px solid var(--steel-silver);
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

.contact-title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--golden-sand);
}

.contact-content {
  font-size: 1rem;
}

.contact-grid svg {
  margin: 0;
  padding: 0;
  height: 1.25rem;
  vertical-align: text-top;
  justify-self: stretch;
}

.contact-grid svg .fa-primary {
  fill: var(--amber-hover-cta);
}

.contact-grid svg .fa-secondary {
  fill: var(--cool-light-blue);
}

.contact-grid h3 {
  grid-row: 1;
  grid-column: 2/-1;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--amber-hover);
}

.contact-grid-ian-titles {
  grid-row: 2;
  grid-column: 2 / span 3;
  padding: 0;
  /* font-size: .875rem; */
  justify-self: flex-start;
}

.cell-phone {
  grid-row: 4;
  grid-column: 2;
}

.envelope {
  grid-row: 5;
  grid-column: 2;
}

.pindrop {
  grid-row: 6;
  grid-column: 2;
  height: 1.75rem;
}

.cell-phone,
.envelope,
.pindrop {
  transition: transform 0.3s ease;
}

.cell-phone.rotated,
.cell-phone:hover,
.envelope.rotated,
.envelope:hover,
.pindrop.rotated,
.pindrop:hover {
  transform: rotate(45deg);
}

.contact-grid-ian-titles-2 {
  grid-row: 3;
  grid-column: 2/-1;
  padding: 0 0 0.75rem;
  font-size: .95rem;
  justify-self: flex-start;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: var(--cool-light-blue);
  font-style: italic;
}

.call-or-text {
  grid-row: 4;
  grid-column: 3;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.phone-number {
  grid-row: 4;
  grid-column: 4;
}

.email-title {
  grid-row: 5;
  grid-column: 3;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.email-address {
  grid-row: 5;
  grid-column: 4;
}

.location-title {
  grid-row: 6;
  grid-column: 3;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.location-syracuse {
  grid-row: 6;
  grid-column: 4;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  width: 100%;
  gap: 16px;
  /* background-color: var(--deep-space-blue); */
  /* background: radial-gradient(circle at 50% 50%, #1f3249 0%, #0e121a 80%); */
  text-align: center;
}

footer p {
  margin: 0 4px;
  padding: 0;
}

.footer-logo {
      width: 100%;
    height: 100%;
    max-width: fit-content;
    display: block;
    object-position: center;
    margin: 1.75rem auto .75rem;
}

.copyright {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0 20px 20px;
  margin: 0;
  justify-content: center;
  align-items: center;
}

.copyright-name {
  display: flex;
  color: var(--silver-glow)
}

footer a {
  color: var(--amber-hover);
  text-decoration: none;
  position: relative;
      line-height: 1;
  font-size: 0.85rem;
}

footer a:hover {
  color: var(--service-card-white);
  text-decoration: none;
}

.social-links a,
.social-links svg {
  height: 20px;
  width: 20px;

}

.social-link-svg {
  fill: var(--amber-hover-cta);
}

.social-links svg:hover,
footer .social-links a:hover {
  fill: var(--card-yellow-2);
  color: var(--card-yellow-2);
}

.ian-bubble-wrapper {
  overflow-x: clip;
  position: relative;
}

.guarantee-block {
  box-shadow: inset 4px 0 0 var(--amber), 0 4px 12px rgba(0, 112, 243, 0.06) !important;
  background: radial-gradient(circle at top left, #e3f0ff, #f6f9fc) !important;
  border-left: none !important;
  border-radius: 4px;
  margin-bottom: 1rem;
  padding-bottom: 2rem;
}

.guarantee-block ul {
  padding-left: 0;
  list-style-type: none;
}

.guarantee-block .badge-static {
  background-color: var(--deep-space-blue);
  color: var(--amber-hover);
  width: fit-content;
}

.guarantee-block ul li,
.guarantee-block p {
  font-size: 1rem;
}

.guarantee-block ul li {
  padding-bottom: .75rem;
}

.guarantee-block ul li b {
  display: flex;
  padding-bottom: .25rem;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes floatPulse {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.02);
  }
}

.ian-photo {
  animation: floatPulse 6s ease-in-out infinite;
}

.ian-bubble {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  justify-content: space-evenly;
}


.ian-photo,
.ian-photo img {
  position: relative;
  z-index: 1;
}

.ian-photo img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #ffda70, #ffe5b4);
  padding: 2px;
  box-shadow: 0 0 10px rgba(180, 154, 70, 0.4), 0 0 8px rgba(192, 192, 192, 0.4);
  background-clip: padding-box;
  transition: all 0.5s ease;
}

.ian-dialogue {
  font-weight: 400;
  background: radial-gradient(circle at top left, #e3f0ff, #f6f9fc) !important;
  color: var(--steel-gray);
  padding: 1rem;
  line-height: 1.5;
  box-shadow: inset 4px 0 0 var(--amber), 0 6px 18px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(255, 193, 7, 0.3) !important;
  border-bottom: 1px solid rgba(255, 193, 7, 0.3) !important;
  border-right: 1px solid rgba(255, 193, 7, 0.3) !important;
  border-radius: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.ian-dialogue::before {
  content: '';
  position: absolute;
  top: 45%;
  left: -12px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid var(--amber);
}


.badge-static {
  font-size: 1.25rem;
  font-family: 'Oswald';
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #7b8a99;
  background: var(--slate-light);
  border-radius: 8px;
  padding: .375rem 1rem;
  box-shadow: 1px 1px 2px rgba(44, 62, 80, 0.6);
  pointer-events: none;
  cursor: default;
  user-select: none;
  transition: none !important;
}


form {
  color: var(--deep-space-blue);
  background: var(--service-card-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  height: 100%;
  margin: 20px auto 0;
  padding: 20px;
  gap: 1rem;
  font-size: 0.9rem;
}


form textarea {
  line-height: 1.6;
}

form input::placeholder,
form textarea::placeholder {
  color: var(--slate-grey);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  padding-left: 0;
}

form input:not(:placeholder-shown),
form textarea:not(:placeholder-shown) {
  padding-left: 10px;
}

form input:focus,
form input:hover,
form textarea:focus,
form textarea:hover {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  outline: none;
  border-bottom: 1px solid;
  border-color: var(--amber-hover-cta)
}

form button {
  font-family: "Lato", sans-serif;
  background-color: var(--amber-hover);
  color: var(--deep-space-blue);
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  font-size: 1.0625rem;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
  justify-self: center;
  padding: 8px 24px;
  transition: all 0.3s ease;
  margin: 20px 0 0;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 240px;
}

form button:hover {
  background-color: var(--amber-dark-hover);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

form select {
  appearance: none;
}


form select option {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
}

label {
  font-family: "Lato";
  font-weight: 700;
  padding: 5px 0;
  font-size: 1rem;
}

.contact-preference label {
  display: grid;
  width: fit-content;
  margin-right: 15px;
  gap: 0 15px;
  grid-auto-flow: column;
  cursor: pointer;
  justify-content: flex-start;
  font-family: "Lato";
  font-weight: 400;
  align-items: center;
  font-size: 0.9rem;
}

input[type="radio"] {
  margin-right: 5px;
  margin-top: 0;
  grid-column: 1;
  grid-row: 1;
}

fieldset {
  border: none;
  margin: 6px 0;
  padding: 0;
}

legend {
  width: 100%;
  font-family: "Lato";
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1rem;
}

.optional-text {
  color: var(--slate-grey);
  font-weight: 400;
  font-size: 0.8rem;
}

.required-text {
  color: #d9534f;
}


@media screen and (max-height: 768px) and (max-width: 768px) and (hover: none) {
  .nav-amber {
    background-color: var(--amber-hover);
  }

  .nav-amber.active {
    background-color: var(--amber);
  }

  .golden-sand {
    background-color: var(--golden-sand);
  }

  .golden-sand.active {
    background-color: var(--golden-sand-light);
  }
}

@media screen and (min-width: 1201px) {
  .hide-desktop {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {

  header img:hover {
    filter: brightness(1.1);
  }

  .highlight-outline {
    font-size: 1rem;
    font-weight: 400;
    background: radial-gradient(circle at top left, #f8fbff, #eaf1f8);
    color: var(--steel-gray);
    border-left: 4px solid var(--amber);
    border-radius: 4px;
    padding: 1rem;
    line-height: 1.5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }

  .ian-bubble {
    gap: 1rem;
  }

  .ian-dialogue {
    font-size: 1rem !important;
    line-height: 1.8;
  }

  .golden-sand {
    color: var(--golden-sand) !important;
  }

  .nav-amber {
    color: var(--amber) !important;
  }

  .ian-photo img {
    width: 120px;
    height: 120px;
  }

  h2,
  h1 {
    font-size: 4.5rem;
    font-weight: 700;
  }

  h3 {
    font-size: 1.75rem;
  }

  header .logo a {
    padding: unset;
    border: none;
    grid-row: 1;
    grid-column: 1 / -1;
  }

  header {
    color: var(--service-card-white);
    display: flex;
    flex-direction: column;
  }

  .hero-offer-bar {
  background: var(--amber-hover);
  color: var(--rich-black);
  text-align: center;
  padding: 0.25rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-offer-bar p {
  margin: 0;
}

.cta-inline-link {
  margin-left: 1rem;
  color: var(--rich-black);
  font-weight: bold;
  text-decoration: underline;
}

  .dropdown.golden-sand a:not(.dropdown.golden-sand .dropdown-content a) {
    color: var(--golden-sand) !important;
  }

  .dropdown.nav-amber a:not(.dropdown.nav-amber .dropdown-content a) {
    color: var(--amber) !important;
  }


  .nav a:not(.logo a):not(.dropdown-content a):not(#hamburger)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--amber-hover);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .nav a:not(.logo a):not(.dropdown-content a):not(#hamburger):hover::before {
    width: 100%;
  }

  .nav .dropdown.golden-sand a::before {
    background-color: var(--golden-sand) !important;
  }

  .nav .dropdown.nav-amber a::before {
    background-color: var(--amber) !important;
  }


  .dropdown {
    position: relative;
    display: inline-block;
    height: min-content;
    line-height: 1.5;
  }

  .dropdown a:hover,
  .nav a:hover {
    color: var(--amber-hover)
  }

  .nav a:hover .dropdown-arrow,
  .dropdown a:hover .dropdown-arrow {
    border-top: 5px solid var(--amber-hover);
  }

  .dropdown.lavender a:not(.dropdown.lavender .dropdown-content a),
  .dropdown.nav-amber a:not(.dropdown.nav-amber .dropdown-content a) {
    position: relative;
    color: var(--deep-space-blue);
    border: none;
    display: inline-block;
    padding: 8px 16px;
  }

  .dropdown-content {
    display: block;
    position: absolute;
    top: calc(100%);
    left: 0;
    background-color: var(--deep-charcoal);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    min-width: 100%;
    z-index: 100;
    height: min-content;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in;
  }

  .dropdown a {
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    padding: 8px 16px;
    line-height: 1.5;
    width: 100%;
  }

  .new {
    background-color: var(--amber-hover-cta);
    color: var(--rich-black);
    font-size: 0.6375rem;
    padding: 2px 6px;
    border-radius: 4px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    align-self: baseline;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    margin-left: 12px;
  }

  .soon {
    background-color: var(--mist-blue);
  }

  header .dropdown-arrow {
    position: relative;
    top: 15px;
    right: 0;
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: border-top 0.2s ease;
  }

  .dropdown .dropdown-content a {
    display: flex;
    justify-content: space-between;
    font-family: "Lato";
    text-transform: capitalize;
    text-align: left;
    color: var(--service-card-white);
    font-size: 0.9375rem;
    border: none;
  }

  .dropdown-content a:hover,
  .dropdown.nav-amber .dropdown-content a:hover,
  .dropdown.golden-sand .dropdown-content a:hover {
    background-color: var(--steel-gray);
    color: var(--amber-hover)
  }

  .footer-logo {
    align-self: center;
    justify-self: center;
  }

  .footer-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    grid-row: 1;
    grid-column: 3;
  }

  .copyright {
    padding-top: 1.5rem;
  }

  .footer-logo,
  .footer-logo img {
        max-height: 60px;
  }

  .copyright-name-div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .copyright-name {
    font-size: 0.75rem;
    justify-content: center;
  }

  footer .accordion {
    display: none;
  }

  .footer-desktop-wrapper {
    align-items: start;
    width: 80%;
    display: grid;
    grid-template-columns: 0.50fr 0.50fr 1fr 0.50fr 0.50fr;
  }

  .footer-tagline {
    margin-top: 1rem;
    font-size: .875rem;
    color: var(--cool-light-blue);
  }

  #quick-links {
    grid-row: 1;
    grid-column: 1;
  }

  #resources {
    grid-row: 1;
    grid-column: 2;
  }

  #related-sites {
    grid-row: 1;
    grid-column: 4;
  }

  #contact-info {
    grid-row: 1;
    grid-column: 5;
    align-items: unset;
    padding: 0 20px;
  }

  #contact-info b {
    color: var(--service-card-white);
    width: 50%;
    line-height: 1;
    text-align: left
  }

  #contact-info a:not(.social-links a) {
    width: max-content;
    text-align: center;
    line-height: 1;
    margin-left: auto;
    margin-right: auto;
  }

  #contact-info p:nth-child(2):not(.social-links p),
  #contact-info p:nth-child(3):not(.social-links p) {
    font-size: 0.85rem;
    display: inline-grid;
    grid-template-columns: 1fr max-content;
    justify-content: start;
    line-height: 1;
  }

  #policies {
    margin-top: .5rem;
    padding: 20px;
    border-top: 1px solid var(--silver-glow);
    display: flex;
    flex-direction: row;
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 1rem;
    flex-wrap: wrap;
    align-content: center;
  }

  .footer-links .footer-title {
    margin: auto 0;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--service-card-white);
    text-decoration: underline;
    text-decoration-color: var(--cool-light-blue);
    text-underline-offset: 4px;
    font-size: 1rem;
  }

  .social-links {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
  }

  #mobile-social {
    display: none;
  }

}


@media screen and (max-width: 768px),
screen and (max-width: 1200px) {

  .highlight-outline {
    font-size: 1rem;
    font-weight: 400;
    background: radial-gradient(circle at top left, #f8fbff, #eaf1f8);
    color: var(--steel-gray);
    border-left: 4px solid var(--amber);
    padding: 1rem;
    line-height: 1.5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }

  .ian-dialogue {
    font-size: .9375rem !important;
  }

  .ian-dialogue::before {
    top: 2.25rem;
  }

  .ian-bubble {
    gap: 1rem
  }

  .guarantee-block {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .guarantee-block .badge-static {
    background-color: var(--deep-space-blue);
    color: var(--amber-hover);
    width: 100%;
  }

  .guarantee-block ul {
    padding: 1rem 0 0;
  }

  .guarantee-block ul li {
    padding-bottom: .75rem;
    line-height: 1.8;
  }

  .guarantee-block p {
    margin-top: 0;
    padding-top: 0;
  }

  main {
    padding-top: 65px;
  }


  html {
    scroll-behavior: smooth;
  }

      body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        pointer-events: none;
        background: radial-gradient(circle at 50% 50%, #1f3249 0%, #0e121a 80%);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: scroll;
        opacity: 1;

      }

          body {
        background: var(--rich-black);
        background-attachment: scroll !important;
          }


  .hide-mobile {
    display: none !important;
  }

  h1 {
    font-size: 3rem;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;

  }

  h2 {
    font-family: "Lato", sans-serif;
    font-size: 2.625rem;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  header {
    min-height: 65px;
    height: 65px;
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15;
    background-color: transparent;
    border-bottom: 1px solid transparent;
  }

  header.scrolled {
    border-bottom: 1px solid var(--silver-glow)
  }

  header .nav1,
  header .nav2,
  header .logo {
    display: none;
  }

  header .logo-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    grid-row: 1;
    justify-self: left;
    margin: auto 0;
  }

  header .logo-mobile img {
    width: 150px;
    height: 50px;
  }

  header .logo-mobile a {
    width: 150px;
    height: 50px;
  }

  nav a {
    display: none;
  }

  header .mobile-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    gap: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    align-items: center;
  }

  header .mobile-header {
    padding: 0 20px;
  }

  .nav {
    height: 100%;
    transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
    width: 100%;
  }

  #nav-mobile {
    display: block;
    grid-column: 1 / -1;
    position: fixed;
    top: 65px;
    right: -110%;
    width: 100vw;
    height: calc(100vh - 65px);
    background: radial-gradient(circle at 50% 50%, #1f3249 0%, #0e121a 80%);
    padding: 8px 20px 0;
    font-size: 1rem;
    gap: 12px;
    overflow-y: auto;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
  }

  #nav-mobile hr {
    border-color: var(--steel-gray);
    border-bottom: none;
    border-right: none;
    border-left: none;
    width: 100%;
    margin: 20px auto;
  }

  #nav-mobile.nav-open {
    transform: translateX(-110%);
  }

  #nav-mobile a {
    display: block;
    margin: 8px 0;
    padding: 8px 10px;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--silver-glow);
    border: none;
    width: 100%;
  }

  #nav-mobile a:hover,
  #nav-mobile a:active {
    background-color: transparent;
    color: var(--amber-hover) !important
  }

  .hamburger {
    grid-row: 1;
    grid-column: 3;
  }

  #mobileHamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 12px;
    width: 24px;
    transform: scale(1);
    transform-origin: center;
    margin: 8px 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    align-self: center;
    justify-self: end;
  }

  #mobileHamburger span {
    display: block;
    height: 2px;
    width: 100%;
    margin: 0;
    background-color: var(--cool-light-blue);
    transition: transform 0.3s ease, background-color 0.3s ease;
    transform-origin: center;
    justify-content: center;
  }

  #mobileHamburger span:nth-child(1) {
    background-color: var(--service-card-white);
  }

  #mobileHamburger span:nth-child(2) {
    opacity: 1;
    transition: opacity .1s ease;
  }

  #mobileHamburger span:nth-child(3) {
    background-color: var(--amber-hover);
  }

  #mobileHamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(3px) translateX(5px);
    background-color: var(--golden-sand);
  }

  #mobileHamburger.open span:nth-child(2) {
    opacity: 0;
  }

  #mobileHamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-2px) translateX(4px);
    background-color: var(--golden-sand);
  }

  #mobileHamburger.open span {
    background-color: var(--golden-sand);
  }

  .accordion-wrapper {
    margin: 20px auto 0;
    margin-inline: auto;
  }

  #nav-mobile .accordion-trigger  {
    color: var(--silver-glow)
  }

  #nav-mobile .accordion-trigger:hover,
  #nav-mobile .accordion-trigger.active {
    background-color: transparent;
    color: var(--deep-space-blue);
  }

  #nav-mobile .accordion-trigger.nav-amber {
    background-color: transparent;
    color: var(--amber)
  }

  #nav-mobile .accordion-trigger.nav-amber.active {
    background-color: var(--amber-hover);
  }

  #nav-mobile .accordion-trigger.golden-sand {
    background-color: transparent;
    color: var(--golden-sand)
  }

  #nav-mobile .accordion-trigger.golden-sand.active {
    /* background-color: var(--golden-sand-light); */
  }

  #nav-mobile .accordion-panel.active { 
    background: transparent; 
    box-shadow: none;
  }

  /* .golden-sand, .nav-amber {
    color: var(--deep-space-blue) !important;
} */

  .accordion-content {
    padding: 0 0 0 1rem;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
  }

  footer .accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
  }

  .accordion-content[aria-hidden="false"] {
    grid-template-rows: 1fr;
  }


  .accordion-content[aria-hidden="true"]>div {
    margin: 0;
  }

  footer .accordion-content[aria-hidden="false"] {
    padding-left: 10px;
  }

  #nav-mobile .accordion-content[aria-hidden="false"] {
    grid-template-rows: 1fr;
  }

  #nav-mobile .accordion-content {
    padding: 0 0 0 1rem;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
  }

  footer .accordion-content {
    padding-left: 10px;
    transition: grid-template-rows 0.5s ease, padding 0.5s ease, margin 0.5s;
  }

  footer #panel8-content a {
    text-transform: lowercase;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  footer .accordion-content[aria-hidden="true"]>div {
    margin: 0;
  }

  footer .accordion-content>div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .accordion-content>div {
    overflow: hidden;
    margin: 8px 0;
    transition: margin 0.5s ease;
  }

  #nav-mobile .accordion-content>div {
    overflow: hidden;
    transition: margin 0.5s ease;
    margin-top: 0;
    margin-bottom: 0;
  }

  #footer .accordion-panel.active {
    box-shadow: none;
    background-color: transparent;
  }

  #footer .accordion-trigger[aria-expanded="true"] {
        color: var(--amber-hover);
        transition: color 0.2s ease !important;
  }


  .accordion-content ul li {
    color: var(--deep-space-blue);
    display: grid;
    grid-template-columns: 95px auto;
    align-items: top;
  }

  .accordion-content ul li b {
    color: var(--service-card-white);
  }

  #nav-mobile .accordion button,
  footer .accordion button {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;
    box-shadow: none;
        background-color: transparent;
  }

    #nav-mobile .accordion button:hover,  #nav-mobile .accordion button.active, #nav-mobile .accordion h3 {
      color: var(--amber-hover)
    }

  .accordion {
    padding: 0;
    margin: 8px 0;
  }

  footer .accordion {
    width: 100%;
    padding: 0;
    margin: 0 0 .5rem;
  }

  #nav-mobile .accordion {
    padding: 0;
    margin: 8px 0;
  }

  .accordion-panel {
    padding: 0;
    margin: 0;
  }

  #nav-mobile .accordion-panel {
    padding: 0;
    margin: 0;
  }

  .accordion h3 {
    position: relative;
    font-size: 1.125rem;
    margin: 0;
  }

  .accordion-trigger {
    margin: 0;
    padding: 8px 3rem 8px 10px;
    position: relative;
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    background: var(--icy-blue);
    font: inherit;
    text-transform: uppercase;
    color: var(--deep-space-blue);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
  }

  footer .accordion-trigger {
    margin: 0;
    padding: 8px 10px;
    position: relative;
    display: block;
    background: transparent;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    font: inherit;
    text-transform: uppercase;
    color: var(--service-card-white);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.3s ease;
  }

  #nav-mobile .accordion-trigger {
    margin: 0;
    padding: 8px 10px;
    position: relative;
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
        /* background: transparent; */
    /* background: var(--soft-cloud); */
    font: inherit;
    text-transform: uppercase;
    /* color: var(--deep-space-blue); */
    color: var(--silver-glow);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .accordion-trigger::after {
    font-family: "Lato", sans-serif;
    font-weight: 200;
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg) scale(1);
    font-size: 1.25rem;
    color: currentColor;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .accordion-trigger[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(45deg) scale(1.2);
    color: var(--amber-dark-hover)
  }


  footer .accordion-trigger[aria-expanded="false"]::after {
    color: var(--amber-hover);
  }

  footer .accordion-trigger[aria-expanded="true"]::after {
    color: var(--amber-dark-hover);
  }

  .accordion-content a {
    font-family: "Lato", sans-serif;
    letter-spacing: unset;
    font-weight: 400;
    text-transform: capitalize;
  }

  footer .accordion-content a {
    text-align: left;
    font-family: "Lato", sans-serif;

    font-weight: 400;
    color: var(--silver-glow)
  }

  #nav-mobile .accordion-content a {
    display: flex;
    font-family: "Lato", sans-serif;

    letter-spacing: unset;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 0.9375rem;
    box-shadow: none;
  }

  .accordion-content a:last-of-type {
    margin: 0 0 4px;
  }

  #nav-mobile .accordion-content a:last-of-type {
    margin: 0 0 4px;
  }

  .new {
    background-color: var(--amber-hover-cta);
    color: var(--rich-black);
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
  }

  #nav-mobile p,
  .footer-copyright {
    text-align: center;
  }

  #nav-mobile p {
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
  }

  .footer-copyright {
    padding: .75rem 0;
    margin-bottom: 20vh;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.8;
    color: var(--silver-glow);
  }

  .lazyload {
    opacity: 0;
    transition: opacity 0.5s;
  }

  .lazyload.lazyloaded {
    opacity: 1;
  }

  .ian-photo img {
    width: 120px;
    height: 120px;
  }

  .cta-button,
  .secondary-button {
    /* width: 260px !important;
    height: 60px !important; */
        padding: .75em 1.4em;
    margin: 7.5px 0;
    align-content: center;
    font-size: 1rem;
    letter-spacing: .25px;
    justify-self: center;
  }

  .secondary-button {
    border-width: 1px !important;
  }

  .profile-image-wrapper {
    grid-column: 1;
    grid-row: 1;
    justify-content: right;
    display: flex;
    justify-self: center;
    padding: 0 0 1rem;
  }

  .contact-name-mobile {
    grid-row: 1;
    grid-column: 2;
    display: flex;
    flex-direction: column;
  }

  .contact-name-mobile {
    font-size: 0.85rem;
    font-family: "Lato", sans-serif;
  }

  .contact-grid-ian-title-2:last-of-type {
    color: var(--cool-light-blue);
  }

  .profile-image-wrapper img:hover {
    transform: scale(1.2);
    padding: 3px;
  }

  .profile-image-wrapper img {
    display: flex;
    height: 80px;
    width: 80px;
  }

  .contact-grid h3 {
    margin: 0 0 0.125rem;
    font-size: 1.625rem;
    padding: 0;
    text-align: left;
  }

  .contact-grid-ian-titles-2 {
    font-size: 0.875rem;
    padding: 4px 0 12px;
    text-align: left;
  }

  .contact-content,
  .contact-title {
    font-size: 0.85rem;
    padding: 0 12px;
  }

  .cell-phone {
    grid-row: 3;
    grid-column: 1;
  }

  .call-or-text {
    grid-row: 2;
    grid-column: 2;
  }

  .phone-number {
    grid-row: 2;
    grid-column: 2;
  }

  .envelope {
    grid-row: 4;
    grid-column: 1;
  }

  .email-title {
    grid-row: 4;
    grid-column: 2;
  }

  .email-address {
    grid-row: 3;
    grid-column: 2;
  }

  .pindrop {
    grid-row: 5;
    grid-column: 1;
  }

  .location-title {
    grid-row: 5;
    grid-column: 2;
  }

  .location-syracuse {
    grid-row: 4;
    grid-column: 2;
  }

  .contact-grid svg {
    margin: 0;
    padding: 0;
    height: 18px;
    width: 18px;
    vertical-align: text-top;
    justify-self: stretch;
  }

  .contact-grid {
    grid-column: unset;
    grid-row: 5;
    grid-template-columns: auto;
    max-height: unset;
    width: 100%;
    height: 100%;
    gap: 4px 0;
    margin: auto;
  }

  .footer-contact .contact-grid {
    max-width: 400px;
  }

  footer {
    padding: 20px 20px 40px;
    gap: 0;
    align-items: flex-start;
  }

  .footer-logo {
    margin-top: 20px;
  }

  .footer-logo,
  .footer-logo img {
max-height: 50px;
    align-self: center;
  }

  .footer-tagline {
    font-size: .875rem;
    margin-top: .75rem;
    color: var(--cool-light-blue);
    align-self: center;
    padding: .25rem 0 .75rem;
  }

  footer .footer-links {
    display: none;
  }

  .footer-info,
  .footer-desktop-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto;
  }

  .copyright-name-div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .copyright-name {
    font-size: 0.75rem;
  }

  .copyright {
    padding: 0;
  }

  #back-to-top {
    position: fixed;
    bottom: 50px;
    right: 25px;
    z-index: 10;
    background-color: rgba(207, 221, 231, 0.5);
    border: 1px solid var(--muted-charcoal);
    border-radius: 50%;
    padding: 8px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    font-family: "OpenSans-Regular", sans-serif;
    font-weight: 700;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #back-to-top img {
    width: 75%;
    height: auto;
  }

  #back-to-top.show {
    opacity: 1;
  }

  .social-links {
    margin-top: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--muted-charcoal);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }

  form {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    background: radial-gradient(circle at top left, #ffffff, #f1f4f8);
    padding: 40px 20px 40px;
    margin: 1rem auto 40px;
    gap: 8px;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  #phoneNumber,
  form input,
  form textarea {
    font-size: 1rem;
  }

  form button {
    margin: 20px auto 0;
    grid-column: unset;
    grid-row: unset;
    width: 100%;
  }

  
  .ian-dialogue {
    line-height: 1.8;
  }

}

@media screen and (min-width: 2060px) {

      main {
    padding-top: 121px;
    background: var(--cloud-grey);
  }

  header img,
  header .logo {
    width: auto;
    height: 100px;
  }

  header h2 {
    font-size: 3.2rem;
  }

  header h3 {
    font-size: 0.95rem;
  }

  nav {
    font-size: 0.95rem;
    letter-spacing: 0.25px;
  }
}

@media screen and (max-width: 393px) {

  main {
    padding-top: 65px
  }

  /* Styling for iPhone 12/13/14 */
  h1 {
    font-size: 2.75rem;
  }

  .cta-button,
  .secondary-button {
    /* width: 245px;
    height: 55px; */
  }

  .cta-buttons {
    gap: 4px;
  }

  footer {
    padding: 20px 20px 40px;
    gap: 0;
    align-items: flex-start;
  }

  .footer-logo {
    margin-top: 20px;
  }

  .footer-logo,
  .footer-logo img {
width: 100%;
        max-height: 50px;
        height: 100%;
        align-self: center;
        object-fit: cover;
        object-position: center;
  }

  .footer-tagline {
    font-size: .875rem;
    color: var(--cool-light-blue);
    align-self: center;
    padding: 4px 0 20px;
  }

  footer .footer-links {
    display: none;
  }

  .footer-info,
  .footer-desktop-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto;
  }

  .copyright-name-div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .copyright-name {
    font-size: 0.75rem;
    padding: 4px 0;
  }

  .copyright {
    padding: 0;
  }

  .social-links {
    margin-top: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--muted-charcoal);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }

  #back-to-top {
    position: fixed;
    bottom: 50px;
    right: 25px;
    z-index: 10;
    background-color: rgba(169, 183, 198, 0.5);
    border: 1px solid var(--muted-charcoal);
    border-radius: 50%;
    padding: 8px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    font-family: "OpenSans-Regular", sans-serif;
    font-weight: 600;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #back-to-top img {
    width: 75%;
    height: auto;
  }

  #back-to-top.show {
    opacity: 1;
  }

}

@media screen and (min-width: 769px) and (max-width: 1200px) and (orientation: portrait) {

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    height: 65px;
    width: 100%;
  }

  header .logo img,
  header .logo a,
  header .logo {
    width: 150px !important;
    height: 50px !important;
  }

  .footer-desktop-wrapper {
    width: 90%;
  }

  #contact-info b {
    font-size: 0.675rem !important;
  }


}


@media screen and (min-width: 1200px) {

  .nav {
    display: flex;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: clamp(0.875rem, .875rem + 0.5vw, 1.125rem);
    font-weight: 400;
    align-items: center;
    padding: 0 5%;
    width: 100%;
    position: relative;
    justify-content: space-between;
    transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
    opacity: 1;
  }

  .nav1 {
    width: auto;
    display: flex;
    justify-content: start;
    gap: .5rem;
    margin-left: 2rem;
    grid-row: 2;
  }

  .nav2 {
    width: auto;
    display: flex;
    justify-content: end;
    gap: .5rem;
    grid-row: 2;
  }

  .nav a:not(.logo a):not(.dropdown-content a) {
    position: relative;
    text-decoration: none;
    color: var(--service-card-white);
    padding: 8px 16px;
    display: inline-block;
    overflow: hidden;
    line-height: 1;
    text-align: center;
    height: min-content;
  }

}

@media screen and (min-width: 1201px) {

  #nav-mobile,
  .mobile-header {
    display: none;
  }

  main {
    padding-top: 96px;
    background: var(--cloud-grey);
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {



  h2 {
    font-size: 3rem;
  }

}