body {
  font-family: 'Montserrat', sans-serif;
}

.navbar {
  background: white;
  border-bottom: solid #d4d4d4 2px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand { /* Override Boostrap nav logo */
  padding-top: 0;
  padding-bottom: 0;
}

.btn {
  padding: .6em 1.8em;
  border-radius: 5px;
  transition: all .3s ease-in-out;
  border: 1px solid #005ae6;;
  font-family: 'Montserrat';
  box-shadow:
    0 16px 16px rgba(103,110,144,.05),
    0 8px 8px rgba(103,110,144,.05),
    0 4px 4px rgba(103,110,144,.05),
    0 2px 2px rgba(103,110,144,.05);
}

.btn:hover {
  box-shadow: none;
  color: #fff;
  background-color: #005ae6;;
  border: 1px solid #005ae6;;
}

.btn-primary {
  color: #fff;
  background-color: #005ae6;;
}

.btn--round {
  color: #0056ef;
  border-radius: 999px;
  background: #afcdfc;
  height: 2rem;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: flex;
  align-items: flex-start;
  height: 120vh;
  background:
    linear-gradient(
      209deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.8785889355742297) 40%,
      rgba(255,255,255,1) 58%,
      rgba(255,255,255,1) 100%
    ),
    url('../img/home.jpg') no-repeat center center;
  background-size: cover;
  margin-bottom: -10rem;
}

.hero__inner {
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero__fixed-footer {
  position: absolute;
  bottom: 3rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

h1 { /* Overide bootstrap typography */
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
}

.hero__text {
  font-size: 5rem;
  text-transform: uppercase;
}

.hero__subtitle {
  font-weight: 100;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 768px) {
  .hero__text {
    font-size: 3rem;
  }

  .btn {
    width: 100%;
  }
}

.infographic {
  position: relative;
}

.closer {
  background: rgb(230, 230, 230);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.closer__text {
  margin: 0;
  font-weight: 100;
}

@media only screen and (max-width: 768px) {
  .closer {
    flex-direction: column;
  }
  .closer__text {
    margin-bottom: 1rem;
  }
}

.page-header { /* Overide bootstrap page-header */
  font-family: 'Montserrat';
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 10rem;
  margin-top: 3rem; /* Assume NavBar */
}

@media only screen and (max-width: 768px) {
  .page-header {
    padding: 2rem 0;
    /* height: 10rem; */
  }
}

.page-header__sub-text {
  font-weight: 300;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.about {
  font-weight: 300;
  font-size: 1.4rem;
  text-align: center;
  padding: 2rem;
  min-height: calc(100vh - 216px - 4rem);
}

.about__image {
    display: block;
    max-width: 100%;
    margin-bottom: 2rem;
}

.service {
  color: white;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 30px 60px -12px rgba(50,50,93,.25), 0 18px 36px -18px rgba(0,0,0,.3), 0 -12px 36px -8px rgba(0,0,0,.025);
  transition: all .3s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .service {
    margin-bottom: 1rem;
  }
}

.service:hover {
  box-shadow: none;
}

.service__bg {
  width: 100%;
}

.service__overlay {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service::after {
  z-index: 1;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: 0.45;
  background: linear-gradient(to right, #6FB1FC, #4364F7, #0052D4); 
}

@media only screen and (min-width: 768px) {
  .row { /* Override bootstarp row */
    margin-bottom: 2rem;
  }
}

/* .contact {
  max-width: 100%;
} */

.contact-details__link {
  color: black;
}

.contact-details__icon {
  margin-right: 10px;
}

.contact-details__link:hover {
  color: #4CD61E;
	border-color: #4CD61E;
}

@media only screen and (max-width: 768px) {
  .contact {
    max-width: 100%;
  }
  .contact .row {
    flex-direction: column-reverse;
  }
}

/**
 Notes: Investigate best way to handle typeography
*/