/*********************************************************************************
/*
/* full screen images
/*
/********************************************************************************/

.full-screen-image-container {
  height: calc(100vh - 60px);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.error404 .full-screen-image-container {
  height: calc(100vh);
}

@media (min-width: 768px) {  

  body .full-screen-image-container {
    margin-top: 60px;
  }
}

/*********************************************************************************
/*
/* title and sub title
/*
/********************************************************************************/

.full-screen-image-container .text-wrapper {
  height: calc(100% - 30px);
  margin-left: 5%;
  width: 90%;
  top: 10%;
  max-height: 90%;
  position: absolute;
  z-index: 2;
}

.full-screen-image-container .text {
  padding: 25px;
  text-align: center;
  font-weight: 300;
}

.full-screen-image-container .text h1,
.full-screen-image-container .text .home-page-title {
  font-size: 28px;
  color: var(--header-text);
  display: block;
  text-transform: uppercase;
  font-weight: 400;
}

.full-screen-image-container .text .home-page-title {
  margin-top: 30px;
}

.full-screen-image-container .text p {
  font-size: 16px;
  color: var(--header-text);
  display: block;
  text-align: center;
}

.error404 .full-screen-image-container .text h1 {
  font-size: 22px;
}

.error404 .full-screen-image-container .text p {
  font-size: 22px;
}

.full-screen-image-container .home-page-button {
  text-align: center;
  cursor: pointer;
}

.full-screen-image-container .home-page-button span {
  font-weight: 400;
  padding: 14px;
  font-size: 20px;
  background-color: var(--header-text);
  color: Black;
  border-radius: 8px;

  -moz-box-shadow: 0 0 .5em rgba(128, 128, 128, .8);
  -webkit-box-shadow: 0 0 .5em rgba(128, 128, 128, .8);
  box-shadow: 0 0 .5em rgba(128, 128, 128, .8);
}

.full-screen-image-container .home-page-button a {
  color: Ivory;
  text-decoration: none;
}

.full-screen-image-container .home-page-button a:hover span {
  text-decoration: none;
}

@media (min-width: 500px) {
  .full-screen-image-container .text-wrapper {
    top: 20%;
    max-height: 80%;
  }

  .full-screen-image-container .text h1, 
  .full-screen-image-container .text .home-page-title {
    font-size: 34px;
  }
}

@media (min-width: 650px) {

  .full-screen-image-container .text h1,
  .full-screen-image-container .text .home-page-title {
    font-size: 40px;
  }

  .full-screen-image-container .text p {
    font-size: 20px;
    max-width: 100%;
  }
}

@media (min-width: 800px) {
  .full-screen-image-container .text h1,
  .full-screen-image-container .text .home-page-title {
    font-size: 50px;
  }
}
