html {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffff;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*
  NAVBAR STYLES
  */
.header {
  background: url("/assets/images/services/Black & White 2.png") center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgb(255, 255, 255)), to(transparent));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 95%, rgb(255, 255, 255) 100%, transparent);
}

.card-border-radius {
  border-radius: 15px;
}

.boxes-container ul li,
.boxes-container p {
  font-size: 14px !important;
}

p {
  font-size: 1rem;
}