html{
  font-size: 135%;
}

:root {
  --primary-color: #111E26;
}

body {
  background: #111E26;
  font-family: 'Poppins', sans-serif;
  color: #EBEEF2;
  font-weight: 300;
}

.btn-custom-lg {
  color: #A67E33;
  border: 1px solid #A67E33;
  padding: 1rem 2rem;
  border-radius: 45px;
  margin: 2rem 0;
  font-size: 1.3rem;
}

section {
  margin: 200px 0;
}

.heading {
  font-size: calc(2rem + 3vh);
  padding: 0 3rem 3rem 0;
  color: #A67E33;
}

.navbar {
  background: #111E26;
}

.navbar-brand img {
  width: 90px;
  margin-bottom: 2rem;
}

.nav-link {
  font-size: calc(.5rem + 1vh);
  margin: 0 2rem;
  color: #EBEEF2 !important;
}

.hero-text {
  margin: 10rem 0 8rem;
}

.hero-text h1 {
  font-size: calc(2rem + 2vw);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-text .lead {
  font-size: 1.5rem;
  margin: 2rem 0;
}

.project {
  display: flex;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #BFD1D9;
  margin: 2rem 0 4rem;
}

.project .car-buttons {
  position: absolute;
  width: 20%;
  height: 100%;
  right: 0;
}

.project .lead {
  font-size: 2rem;
  padding: 1rem 0;
}

.patera {
  margin-top: 200px;
}

.patera img {
  margin: 1rem;
  width: 30%;
}

#car2 {
  position: relative;
  min-height: 600px;
}

#car2 .card {
  background: transparent;
  border: 0;
}

#car2 .card p {
  font-size: 1.5rem;
}

#car2 img {
  width: 600px;
  height: 600px;
  margin: 0;
  object-fit: cover;
}

#car2 .project2 {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 40%;
  height: 20%;
  bottom: 0;
  right: 10%;
  height: 100px;
}

#car2 .project2 .lead {
  font-size: 2rem;
  padding: 1rem 0;
}

.hidden-text {
  transform: translateY(100%);
}

.hidden-image {
  transform: translateY(50%);
}

.show-text {
  animation-name: show-text;
  animation-duration: 1s;
  animation-timing-function: ease-in;
}

.show-image {
  animation-name: show-image;
  animation-duration: 1s;
  animation-timing-function: ease-in;
}

@keyframes show-text {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes show-image {
  from {
    transform: translateY(50%);
  }
  to {
    transform: translateY(0);
  }
}

#footer {
  font-size: .8rem;
  padding: 6rem 0 1rem;
  color: #BFD1D9;
}

#footer svg {
  fill: #BFD1D9;
}

#footer img {
  width: 100px;
}

#footer .footer-bottom {
  border-top: 1px solid #A67E33;
  margin-top: 100px;
  padding: .5rem 0;
  color: #606a6e;
}

.patera img {
  width: 30%;
}

#people {
  font-size: 1.2rem;
  position: relative;
  margin: 200px 0;
  padding: 4rem 0;
}

.people-overlay {
  position: absolute;
  top: 10%;
  right: 20%;
  width: 40%;
  background: var(--primary-color);
  padding: 3rem;
}
