html {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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/pngtree-photography-studio-with-several-light-stands-and-spotlights-in-a-dark-picture-image_3177609.png") center/cover no-repeat;
  background-position-y: top;
  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(90%, rgba(255, 255, 255, 0.5)), color-stop(100%, rgb(255, 255, 255)), to(transparent));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 90%, rgb(255, 255, 255) 100%, transparent);
}

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