:root {
  --bg: #FBFBFB;
  --text: #222222;
  --primary: #7fb0d0;
  --accent: #c29345;
  --third: #F5F5F5;

  --font-heading: "Simonetta", serif;
  --font-body: "Karla", sans-serif;
}

/* Global */

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.3rem;
}

.site-container {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

p {
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.3;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 400;
}

h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
}

h4,
h5,
h6 {
  font-family: var(--font-heading);
}

.accent {
  color: var(--primary);
}

.accent-gold {
  color: var(--accent);
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(0.5rem, 1.4vw, 1.8rem);
  font-weight: 200;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 35rem;
  margin: 1rem auto;
}

/* Navbar */

nav {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
}

.site-title {
  font-family: var(--font-heading);
  color: var(--text);
  font-size: 1.1rem;
}

.nav-link-custom {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: opacity 0.2s ease;
}

.nav-link-custom:hover {
  opacity: 0.65;
}

/* Hero */

.hero {
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 3.3vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-intro {
  max-width: 980px;
  font-size: 1rem;
  line-height: 1.3;
}

/* Projects */

.projects {
  margin-top: 3rem;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.project-card {
  display: flex;
  max-width: 1100px;
  align-items: flex-start;
  gap: 4rem;
  padding: 1.5rem 3rem;
  border-radius: 0.35rem;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 2rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

.project-card-blue {
  background: var(--primary);
  color: white;
}

.project-card-gold {
  background: var(--accent);
  color: white;
}

.project-card-white {
  background: #f0f0ee;
  color: var(--text);
}

.project-card-white h2,
.project-card-white p,
.project-card-white .project-tags span {
  color: var(--text);
}

.project-card-white .project-tags span {
  border-color: var(--text);
}

.project-card img {
  width: 240px;
  height: 150px;
  object-fit: contain;
  border-radius: 0.35rem;
  background: #000;
}

.project-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.project-card-content h2 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.project-card-content p {
  margin-bottom: 1rem;
  line-height: 1.3;
  opacity: 0.9;
  max-width: 55ch;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-tags span {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.75rem;
  line-height: 1;
  opacity: 0.75;
}

/* About */

.about-hero {
  margin-top: 4rem;
  margin-bottom: 5rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-copy h1 {
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  margin-bottom: 2rem;
}

.about-copy p {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.about-cards {
  margin: 5rem 0;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 150px;
  padding: 1.75rem;
  border-radius: 0.35rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

.about-card img {
  width: 110px;
  height: 90px;
  object-fit: cover;
  border-radius: 0.25rem;
  background: #000;
}

.about-card h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.about-card p {
  margin: 0;
  line-height: 1.3;
}

.about-card-blue {
  background: var(--primary);
  color: white;
}

.about-card-gold {
  background: var(--accent);
  color: white;
}

.about-card-light {
  background: var(--third);
  color: var(--text);
}

/* Case Study */

.case-study-page nav {
  margin-bottom: 0;
}

.case-hero {
  margin-bottom: 2rem;
}

.case-hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.case-intro {
  margin-bottom: 0rem;
}

.case-intro h1 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.case-subtitle {
  text-align: center;
  font-size: 1.2rem;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}

.case-study {
  position: relative;
}

.case-content {
  width: 100%;
}

.case-toc {
  position: absolute;
  top: 4rem;
  left: calc((100vw - 980px) / 2 - 150px);
  width: 130px;
  height: 100%;
  z-index: 10;
}

.case-toc-inner {
  position: sticky;
  top: 2rem;
}

.case-toc h3 {
  margin-bottom: 1rem;
}

.case-toc a {
  display: block;
  text-decoration: none;
  color: rgba(34, 34, 34, 0.45);
  margin-bottom: 0.4rem;
  transition: color 0.2s ease;
}

.case-toc a.active,
.case-toc a:hover {
  color: var(--text);
}

.case-main {
  max-width: 980px;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.case-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.case-summary,
.case-meta {
  max-width: 50rem;
}

.meta-heading {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.case-meta h2 {
  margin-top: 0;
}

.case-meta h2:not(:first-child) {
  margin-top: 3rem;
}

.meta-role {
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.meta-disciplines {
  font-style: italic;
  margin-bottom: 0.6rem;
  line-height: 1.45;
  max-width: 40ch;
  color: rgba(34, 34, 34, 0.8);
}

.meta-date {
  margin-bottom: 0;
}

.case-meta ul {
  margin: 0;
  padding-left: 1.2rem;
}

.case-meta li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.case-band {
  margin: 0;
  padding: 3rem 0;
}

.case-band-light {
  background: var(--third);
}

.case-text-block {
  max-width: 980px;
}

.case-text-block p {
  max-width: 980px;
}

.case-text-block .pull-quote {
  margin-top: 2rem;
 max-width: 35rem;
}

/* Footer */

.site-footer {
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-text {
  font-size: 1rem;
}

.footer-content a {
  color: var(--text);
  font-size: 1.25rem;
  transition: opacity 0.2s ease;
}

.footer-content a:hover {
  opacity: 0.65;
}

/* Responsive */

@media (max-width: 1200px) {
  .case-toc {
    display: none;
  }
}

@media (max-width: 900px) {
  .case-intro-grid {
    display: block;
  }
}

@media (max-width: 768px) {
  .project-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
  }

  .project-card img {
    width: 100%;
    height: auto;
  }

  .about-hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }

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

  .case-main {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .case-band {
    padding: 3rem 0;
  }
}

.case-section-heading {
  
   font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 0rem;
}

.case-section-heading-center {
  text-align: center;
   font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 0rem;
}

.constraint-card {
  background: var(--primary);
  border-radius: .35rem;
  color: white;

  max-width: 530px;
  margin: 2rem auto 0;

  padding: 1.5rem 2rem;

  position: relative;
}
.constraint-slide {
  padding: 0 5rem;
}

.constraint-card-content {
  text-align: center;
}


.constraint-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  margin: 0;
}

.constraint-prev,
.constraint-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border: none;
  background: none;

  color: rgba(255,255,255,.75);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

.constraint-prev {
  left: 1.5rem;
}

.constraint-next {
  right: 1.5rem;
}

.constraint-prev:hover,
.constraint-next:hover {
  color: white;
}

.constraint-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
}

.constraint-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.constraint-dots span.active {
  background: rgba(0,0,0,.35);
}

.constraint-slide {
  display: none;
  text-align: center;
}

.constraint-slide p {
  margin: 0;
  color: white;
}

.constraint-slide.active {
  display: block;
}


.insight-carousel  {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
}

.insight-slide {
  display: none;
  padding: 0.5rem;
}



.insight-slide.active {
  display: block;
}

.insight-slide img {
  width: 100%;
  height: auto;
  
  display: block;
}

.insight-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.insight-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(34, 34, 34, 0.18);
}

.insight-dots span.active {
  background: rgba(34, 34, 34, 0.45);
}

.carousel-caption {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(34, 34, 34, 0.6);
}


.insight-carousel {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
  position: relative;
}

.insight-slide {
  display: none;
}

.insight-slide.active {
  display: block;
}

.insight-carousel .insight-slide img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  position: static;
  border-radius: .35rem;

}

.insight-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.carousel-caption {
  display: block;
  width: 100%;
  margin: 0.75rem auto 0;
  text-align: center;
  position: relative;
  left: 0;
}


.insight-next {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);

  border: none;
  background: none;

  color: rgba(255,255,255,.75);   /* or darker depending on image */
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

.insight-next:hover {
  color: white;
}

.insight-carousel {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
  position: relative;
}

.insight-stage {
  position: relative;
}

.insight-slide {
  display: none;
}

.insight-slide.active {
  display: block;
  
}

.insight-slide img {
  width: 100%;
  height: 380px; /* or your preferred height */
  object-fit: cover;
  display: block;
}

.insight-next {
  position: absolute;
  right: 3rem; /* Adjust if needed, but stays inside image area */
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: rgba(255,255,255,0.75);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

.insight-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.insight-slide {
  display: none;
  padding: 0.5rem;
}


.carousel-caption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(34, 34, 34, 0.6);
}



.insight-prev,
.insight-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: rgba(255,255,255,.75);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

.insight-prev {
  left: 1.5rem;
}

.insight-next {
  right: 1.5rem;
}

.insight-prev:hover,
.insight-next:hover {
  color: white;
}

/* Insight carousel videos */

.insight-carousel .insight-slide video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.principle-card {
  background: var(--accent);
  border-radius: .35rem;
  color: white;

  max-width: 530px;
  margin: 2rem auto 0;

  padding: 1.5rem 2rem;

  position: relative;
}

.principle-card-content {
  text-align: center;
}

.principle-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  margin: 0;
}



.principle-prev,
.principle-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border: none;
  background: none;

  color: rgba(255,255,255,.75);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

.principle-prev {
  left: .5rem;
}

.principle-next {
  right: .5rem;
}

.principle-prev:hover,
.principle-next:hover {
  color: white;
}

.principle-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
}

.principle-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.principle-dots span.active {
  background: rgba(0,0,0,.35);
}





.principle-slide p {
  margin: 0;
  color: white;
}

.principle-slide.active {
  display: block;
}

.principle-slide {
  display: none;
  text-align: center;
  padding: 1rem;
  
}

.stable-image {
  max-width: 700px;
  margin: 2.5rem auto;
  text-align: center;
}

.stable-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: .35rem ;
}

.stable-image-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(34, 34, 34, 0.6);
}

.insight-subsection {
  margin-top: 3rem;
}




.decision-card {
  background: var(--primary);
  border-radius: .35rem;
  color: white;

  max-width: 530px;
  margin: 2rem auto 0;

  padding: 1.5rem 4rem;

  position: relative;
}

.decision-card-content {
  text-align: center;
}

.decision-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  margin: 0;
}

.decision-prev,
.decision-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border: none;
  background: none;

  color: rgba(255,255,255,.75);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

.decision-prev {
  left: .5rem;
}

.decision-next {
  right: .5rem;
}

.decision-prev:hover,
.decision-next:hover {
  color: white;
}

.decision-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
}

.decision-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.decision-dots span.active {
  background: rgba(0,0,0,.35);
}

.decision-slide {
  display: none;
  text-align: center;
}

.decision-slide p {
  margin: 0;
  color: white;
}

.decision-slide.active {
  display: block;
}


.more-projects {
    margin: 0rem auto;
}

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

.mini-project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;
    text-decoration: none;
    color: inherit;

    padding: 2rem 1.5rem;
    border-radius: .35rem;

    transition: transform .2s ease, opacity .2s ease;
}

.mini-project-card:hover {
    transform: translateY(-3px);
    opacity: .92;
}

.mini-project-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: .25rem;
    margin: 1.25rem 0;
    background: #000;
}

.mini-project-card h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 400;
    color: inherit;
    margin: 0;
}

.mini-project-card p {
    font-size: .95rem;
    line-height: 1.35;
    max-width: 22ch;
    margin: 0;
    opacity: .9;
}

/* Colours */

.mini-project-card-blue {
    background: var(--primary);
    color: white;
}

.mini-project-card-gold {
    background: var(--accent);
    color: white;
}

.mini-project-card-light {
    background: var(--third);
    color: var(--text);
}


.insight-carousel-compact {
  margin-bottom: 0rem;
}

.insight-carousel-compact + .pull-quote {
  margin-top: 0rem;
}

.decision-card {
  position: relative;

  background: var(--primary);
  color: white;

  max-width: 700px;
  margin: 2rem auto 0;

  padding: 2rem;
  border-radius: .35rem;
}

.decision-slide {
  display: none;
}

.decision-slide.active {
  display: block;
}

.decision-slide p {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.decision-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;

  margin-top: 2rem;
}

.decision-comparison figure {
  margin: 0;
}

.decision-comparison img {
  width: 100%;
  display: block;
  border-radius: .35rem;
}

.decision-comparison figcaption {
  margin-top: .5rem;

  font-size: .85rem;
  text-align: center;
  color: rgba(255,255,255,.75);
}

/* Navigation */

.decision-prev,
.decision-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: none;
  border: none;

  font-size: 2rem;
  color: rgba(255,255,255,.7);

  cursor: pointer;
}

.decision-prev {
  left: 1.5rem;
}

.decision-next {
  right: 1.5rem;
}

.decision-prev:hover,
.decision-next:hover {
  color: white;
}


/* Width modifier */

.decision-card-wide {
  max-width: 920px;
  padding: 2.5rem;
}

/* Slides */

.decision-slide {
  display: none;
}

.decision-slide.active {
  display: block;
}

/* Text */

.decision-copy {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.decision-copy p {
  margin: 0;
  text-align: center;
}

/* Before / After */

.decision-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;

  margin-top: 2rem;
}

.decision-comparison figure {
  margin: 0;
}

.decision-comparison img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: .35rem;
}

.decision-comparison figcaption {
  margin-top: .75rem;

  text-align: center;
  font-size: .85rem;

  color: rgba(255,255,255,.75);
}

/* Navigation */

.decision-prev,
.decision-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border: none;
  background: none;

  font-size: 2rem;
  color: rgba(255,255,255,.75);

  cursor: pointer;
}

.decision-prev {
  left: 1rem;
}

.decision-next {
  right: 1rem;
}

.decision-prev:hover,
.decision-next:hover {
  color: white;
}

/* Mobile */

@media (max-width:768px) {

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

  .decision-card-wide {
    padding: 2rem;
  }

}



.decision-card-wide {
  max-width: 920px;
  padding: 3rem 4rem;
}

.decision-card-wide .decision-copy {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.decision-card-wide .decision-copy p {
  margin: 0 auto;
  max-width: 42rem;
  text-align: center;
}

.decision-card-wide .decision-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.decision-card-wide .decision-comparison img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 0.35rem;
}

.decision-card-wide .decision-prev,
.decision-card-wide .decision-next {
  top: 50%;
}

.decision-card-wide .decision-prev {
  left: .4em;
}

.decision-card-wide .decision-next {
  right: .4rem;
}

.decision-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.decision-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.decision-dots span.active {
  background: white;
}





.decision-copy-ul {
  width: fit-content;
  margin: 1rem auto;
  text-align: left;
  padding-left: 1.25rem;
}

.decision-copy-ul li {
  margin-bottom: 0.1rem;
}
.project-card .sub-imgs {
 
 object-fit: cover;
  display: block;
  border-radius: 0.35rem;
}

.inline-link,
.inline-link:visited {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.inline-link:hover,
.inline-link:focus {
  color: inherit;
  opacity: 0.6;
}

.ui-shot {
  height: auto !important;
  object-fit: contain !important;
  max-height: 600px;   /* adjust as needed */
  width: 100%;
 
}

.lightbox-trigger {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  border: 0;
  background: transparent;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

/* Phone carousel */

.insight-carousel-phone .insight-stage{
    min-height:auto;
}

.insight-carousel-phone .insight-slide video,
.insight-carousel-phone .insight-slide img{
    display:block;
    width:auto;
    height:460px;
    margin:0 auto;
    object-fit:contain;
    border-radius:28px;
}

#ui {
  margin-top: 80px;
}


.dark-arrows {
  color: #6e6e6e;
  opacity: 1;

}
.dark-arrows:hover {
  color: #111;
}