/*  font-family: "Urbanist", sans-serif;
  font-family: "Bodoni Moda", serif;*/

body {
  background-color: white;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

:root {
  --branding-color: #f5f5f5;
  --secondary-color: #fbfbfb;
  --heading-font-family: "Urbanist", sans-serif;
  --default-font-family: "Urbanist", sans-serif;
}

.logo {
  max-width: 20px;
}
.navbar {
  background-color: #fbfbfba6;
  box-shadow: none;
}

.active {
  font-weight: 300;
}
.navbar-greyish {
  background-color: #fbfbfb;
}

.nav-item {
  font-size: 25px;
  font-family: var(--default-font-family);
  font-weight: 200;
  padding: 0 7px;
}

body {
  font-family: var(--default-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
  font-family: var(--heading-font-family);
  font-weight: 100;
}

h1 {
  font-size: 35px;
}

h2 {
  font-size: 64px;
}

h4 {
  font-family: "Bodoni Moda", serif;
  font-weight: regular;
  font-size: 50px;
  letter-spacing: -5px;
  font-optical-sizing: none;
}

p {
  font-weight: thin;
  font-size: 18px;
  line-height: 1.5;
}

.about {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 10px;
}

.about p {
  max-width: 25%;
  margin: 0 5px;
}

.hero {
  background: white;
  text-align: center;
  padding: 110px 20px;
}

.hero p {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-size: clamp(40px, 15vw, 165px);
  margin: 0;
  letter-spacing: -0.09em;
  font-optical-sizing: none;
}

.hero h2 {
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 6vw, 35px);
  font-weight: 100;
  margin: 0;
  text-align: center;
}

.port {
  background: #ffffff;
  text-align: center;
  padding: 110px 20px;
}

.port p {
  font-family: "Bodoni Moda", serif;
  font-size: 165px;
  margin: 0;
  letter-spacing: -15px;
  font-optical-sizing: none;
}
.port h2 {
  font-family: var(--heading-font-family);
  font-size: 35px;
  font-weight: 100;
  text-align: left;
}

.title p {
  font-family: "Bodoni Moda", serif;
  font-size: 70px;
  margin: 0;
  letter-spacing: -7px;
  font-optical-sizing: none;
}

.card h1 {
  font-family: var(--heading-font-family);
  font-size: 35px;
  font-weight: 900;
  text-align: left;
  letter-spacing: -1px;
}

.btn-branding {
  background: var(--branding-color);
  border-radius: 4px;
  color: #000000;
  font-size: 18px;
  line-height: 27px;
  padding: 12px 20px;
}

.btn-branding-outline {
  background: var(--branding-color);
  border: 1px solid var(--branding-color);
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  padding: 12px 20px;
}

.project-description {
  padding: 120px 60px 0;
}

footer {
  padding-bottom: 20px; /* Adds some space to the bottom */
}

footer .contact-box {
  background: var(--secondary-color);
  padding: 30px 40px;
  border-radius: 10px;
  margin: 0 auto; /* Center it */
  width: 95%; /* Define width as a percentage */
}

footer .contact-box p {
  margin: 0;
}

@media (max-width: 900px) {
  h1 {
    font-size: 37.5px;
    line-height: 1.5;
  }

  h2 {
    font-size: 45px;
  }

  h4 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .hero {
    background: #ffffff;
    text-align: center;
    padding: 80px 20px;
  }

  .project-description {
    padding: 0;
    text-align: center;
  }

  footer .contact-box {
    padding: 30px;
  }
}

.timeline-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.timeline-steps .timeline-step {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 1rem;
  min-height: 2rem; /* ensures we have enough height for lines to sit cleanly */
}

.timeline-steps .timeline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 10rem;
  position: relative;
}

.timeline-steps .inner-circle {
  height: 1rem;
  width: 1rem;
  background-image: url("../images/roundstar.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* This draws the lines and centers them vertically with the star */
.timeline-steps .inner-circle::before,
.timeline-steps .inner-circle::after {
  content: "";
  position: absolute;
  top: 50%; /* vertical center of the star */
  transform: translateY(-50%);
  border-top: 0.25rem dotted #000;
  width: 3.5rem;
}

.timeline-steps .inner-circle::before {
  right: 100%; /* to the left of the star */
  margin-right: 0.5rem;
}

.timeline-steps .inner-circle::after {
  left: 100%; /* to the right of the star */
  margin-left: 0.5rem;
}

.timeline-steps .timeline-content {
  width: 10rem;
  text-align: center;
}

.timeline-steps .timeline-content .inner-circle {
  height: 1rem;
  width: 1rem;
  background-image: url("../images/roundstar.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.timeline-wrapper p.h6.mt-3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #000;
  letter-spacing: -1px;
  margin-bottom: 5px;
  text-align: center;
}

.timeline-wrapper p.text-muted {
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #000000;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
