:root {
  --color-blue: #3c98cd;
}

#home,
#home .container,
#home .row {
  height: calc(40vh - 80px);
}

#home {
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/company/hero.webp"); */
  background-image: url("../img/company/hero.webp");
}

#home h1,
#home p {
  font-family: "Lato" !important;
}

#home p {
  opacity: 0.8;
}

#home h1 {
  position: relative;
  margin-bottom: 40px;
}

#home h1::before {
  content: "";
  background: var(--color-blue);
  width: 50px;
  height: 4px;
  border-radius: 10px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.radius-10 {
  border-radius: 10px;
}

.white-card {
  text-align: center;
  padding: 40px;
  box-shadow: 0 5px 20px -10px;
  border-radius: 20px;
}

.white-card img {
  height: 70px;
  margin-bottom: 15px;
}

.white-card a {
  margin-bottom: 10px;
  display: block;
}

.white-card h4 {
  color: black;
}

.page-content {
  margin-top: 0;
  padding-bottom: 0px;
}

ul.checklist>li {
  position: relative;
  list-style: none;
}

ul.checklist>li::before {
  content: "";
  background: url(../img/check.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  position: absolute;
  left: -25px;
  top: 3px;
}

.blue-color {
  color: var(--color-blue);
  font-weight: 700;
}

#leadership h3 {
  margin-bottom: 5px;
}

ul.checklist li {
  font-size: 18px;
}

@media screen and (max-width: 600px) {

  #home,
  #home .container,
  #home .row {
    height: calc(55vh - 80px);
  }
}