
html {
    /* zoom: 1; edge default 75% zoom ignores this setting */
    /* -moz-transform: scale(1); edge default 75% zoom ignores this setting */
    /* -webkit-transform: scale(1); edge default 75% zoom ignores this setting */
    /* transform: scale(1); edge default 75% zoom ignores this setting */
    width:100%;
    height:100vh;			/* html height100vh - all other classes min-height:100vh - body, pagewidth, outerbox, innerbox, topbox */
    margin-right:auto;
    margin-left:auto;
    padding:0;
    line-height: 135%;

    /* BACKGROUND IMAGE IS DEFINED IN HTML SELECTOR IN ORDER TO BE COMPATIBLE WITH EDGE AND FIREFOX WHEN USING FIXED, NO REPEAT AND COVER */
    background-image: url("images/wallpaper.png"); /* Flickr Public Domain Large - 1920x1080 maximum - 500kb or smaller */
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;

    /* do not use overflow:hidden because of apple ios */
}


.box-standard-menu-custom {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    padding-top: 24px;
    padding-bottom: 20px;
    background-color: rgba(255, 255, 255);
    border: 2px solid #FFA500;
	border-radius: 4px;
    box-shadow: 9px 9px 9px rgba(255, 165, 0, 0.15);	
}

.page-index-pic-one {
   background-image: url("images/page-index-pic-1.png");
   background-position: center center;
   background-repeat: no-repeat;
   height: 1095px;
   padding-left: 15px;
   margin-bottom: 15px;
}

.page-about-us-pic-one {
   background-image: url("images/page-about-us-pic-1.png");
   background-position: center center;
   background-repeat: no-repeat;
   height: 598px;
   padding-left: 15px;
   margin-bottom: 15px;
   border: 1px solid #dbdbdb;
}

.page-two-pic-one {
  background-image: url("images/page-2-pic-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  height: 430px;
  padding-left: 15px;
  margin-bottom: 15px;
  border: 1px solid #dbdbdb;
}

.page-three-pic-one {
  background-image: url("images/page-3-pic-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  height: 430px;
  padding-left: 15px;
  margin-bottom: 15px;
  border: 1px solid #dbdbdb;
}

.page-four-pic-one {
  background-image: url("images/page-4-pic-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  height: 430px;
  padding-left: 15px;
  margin-bottom: 15px;
  border: 1px solid #dbdbdb;
}

.page-five-pic-one {
  background-image: url("images/page-5-pic-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  height: 430px;
  padding-left: 15px;
  margin-bottom: 15px;
  border: 1px solid #dbdbdb;
}

.page-six-pic-one {
  background-image: url("images/page-6-pic-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  height: 430px;
  padding-left: 15px;
  margin-bottom: 15px;
  border: 1px solid #dbdbdb;
}

.button_container {
  position: absolute;			/* Position Fixed = Sticky - Stays in Place When Scrolling - Position Absolute - Does Not Stay in Place */
  cursor: pointer;
  z-index: 9999;
  transition: opacity .25s ease;
}
.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}
.button_container.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
          transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.button_container span {
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}

.overlay {
  /* overflow: hidden;  Overflow Hidden prevents scrolling */
  overflow: auto !important;							/* Allows for scrolling without adding right margin */					
  -webkit-overflow-scrolling: touch !important;			/* Allows for scrolling without adding right margin */	
  margin:0;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
}

.overlay.open {
  margin:0;
  opacity: 1;
  visibility: visible;
  height: 100%;
  z-index: 9998;
  background-color: rgba(255, 255, 255, 0.5);
}

.overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
          animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
          animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
          animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
          animation-delay: .50s;
}
.overlay nav {
  position: relative;

}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 4);
  min-height: 50px;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  transition: .35s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.fa {
    color: #FFA500 !important;
	text-shadow: 2px 2px 6px rgba(255, 165, 0, 0.15);
    z-index: 9999 !important;			/* Hamburger Menu Above Mobile-Nav */
    /* visibility: hidden;  Not Consistent/Not Reliable - scotchPanelsVisible.js */
}

.fa.fa-bars {
    color: #d44e13 !important;
	text-shadow: 2px 2px 6px rgba(255, 165, 0, 0.65);
    /* visibility: hidden;  Not Consistent/Not Reliable - scotchPanelsVisible.js */
}

.fa.fa-bars:hover {
	color: #ff9600 !important;
   	text-shadow: 2px 2px 6px rgba(255, 165, 0, 0.65);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.fa-times {
	color:#fff !important;
}

.standard-page-header {
    background-color: rgba(245, 245, 245, 0.8);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 13px;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 100%;
    border: 2px solid #FFA500;
    box-shadow: 9px 9px 9px rgba(255, 165, 0, 0.15);
}

.standard-page-header-h1 {
    font-family: 'Boogaloo', cursive;
    font-size: 1.8rem !important;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    color: #d44e13;
	text-shadow: 3px 3px 0 #f3d9c6;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: table;
    table-layout: fixed;
    width: 95%;					/* THIS INSURES TEXT DOESN'T RUB UP AGAINST CONTAINER WIDTH */
    word-wrap: break-word;
}

.standard-page-header-h1-author-name {
    color: #984421;
	text-shadow: 3px 3px 0 #eddbca;
}

.standard-page-header-h1-margin-top-none {
    font-family: 'Boogaloo', cursive;
    font-size: 1.4rem !important;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    color: #4a7bbe !important;
    text-shadow: 3px 2px 0 #cccfd3;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: table;
    table-layout: fixed;
    width: 95%;					/* THIS INSURES TEXT DOESN'T RUB UP AGAINST CONTAINER WIDTH */
    word-wrap: break-word;
}

.standard-page-header-h2-margin-top-none {
    font-family: 'Boogaloo', cursive;
    font-size: 1.4rem !important;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    color: #4a7bbe !important;
    text-shadow: 3px 2px 0 #cccfd3;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: table;
    table-layout: fixed;
    width: 95%;                                                                    /* THIS INSURES TEXT DOESN'T RUB UP AGAINST CONTAINER WIDTH */
    word-wrap: break-word;
}

button.button-standard {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  border:2px solid #ffed88;
  border-radius:4px;  
  background-color:#d44e13;
  color:#fbf8e2 !important;
  font-family:'Boogaloo', cursive;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  min-width:46%;
  margin-right:4px;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-standard:hover {
  background-color: #ff9600;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-standard a:link,
button.button-standard a:visited,
button.button-standard a:hover,
button.button-standard a:active {
  color:#fbf5cb !important;
  text-decoration: none !important;
}

button.social-media-button {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  border:none;
}

button.social-media-button:active {
	top: 4px;													/* Required for Button Click Effect */
}

button.button-sitemap {
  display:inline-block;
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  -webkit-appearance: none;
  background-color:#FFA500;
  border:1px solid #B5A1B5;
  border-radius:4px;
  color:#F2F1F1 !important;
  font-family:'Boogaloo', cursive;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  width:40%;
  cursor: pointer;
  margin-left:4px;
  margin-bottom:8px;
}

button.button-sitemap:hover {
  background-color:#3b55a4;
}

button.button-sitemap a:link,
button.button-sitemap a:visited,
button.button-sitemap a:hover,
button.button-sitemap a:active {
  color:#F2F1F1 !important;
  text-decoration: none !important;
}

button.button-send-message {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  border:2px solid #ffed88;
  border-radius:4px;  
  background-color:#d44e13;
  color:#f2efe1 !important;
  font-family:'Boogaloo', cursive;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  width:100%;
  margin-right:4px;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-send-message:hover {
  background-color: #ff9600;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-send-message a:link,
button.button-send-message a:visited,
button.button-send-message a:hover,
button.button-send-message a:active {
  color:#f2efe1 !important;
  text-decoration: none !important;
}

input.button-mobile {
  -webkit-appearance:none;
  background-color:#D4D8DE;
  border: 1px solid #FFA500;
  color:#4e4f51;
  cursor:pointer;
  display:inline-block;
  font-family:Roboto, sans-serif;
  font-size:21px;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:32px;
  line-height:normal;
  margin-top:0;
  text-align:center;
  text-decoration:none;
  width:100%;
}

button.button-mobile {
  box-shadow: none !important;
  padding-bottom: 3px;
  border-style: none !important;			
  background-color:#d44e13 !important;
  border-bottom: 2px solid #fcf5d1 !important;
  color:#f2efe1 !important;
  cursor:pointer;
  font-family:'Boogaloo', cursive;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:39px;
  line-height:normal;
  margin-top:0;
  text-align:center;
  text-decoration:none;
  -webkit-appearance:none;
  position: relative;											/* Required for Button Click Effect */
  display:inline-block;  
  width:100%;
}

button.button-mobile:hover {
  background-color:#ff9600 !important;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-mobile a:link,
button.button-mobile a:visited,
button.button-mobile a:hover,
button.button-mobile a:active {
  color:#f2efe1 !important;
  text-decoration: none !important;
}

input.button-search {
  -webkit-appearance: none;
  background-color:#FFA500;
  border:1px solid #B5A1B5;
  border-radius:4px;
  color:#F2F1F1;
  display:inline-block;
  font-family:'Boogaloo', cursive;
  font-size:21px;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  margin-top:0;
  text-align:center;
  text-decoration:none;
  width:192px;
  cursor: pointer;
}

.button-search:hover {
  color:#000;
  font-weight:normal;
  text-shadow: none;
  background:-moz-linear-gradient( center top, #d1d1d1 5%, #ffffff 100% );
  background:-ms-linear-gradient( top, #d1d1d1 5%, #ffffff 100% );
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d1d1d1', endColorstr='#ffffff');
  background:-webkit-gradient( linear, left top, left bottom, color-stop(5%, #d1d1d1), color-stop(100%, #ffffff) );
  background-color:#d1d1d1;
}

button.button-demo {
  display:inline-block;											/* Two Column */
  position: relative;											/* Required for Button Click Effect */
  padding-bottom:3px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border:1px solid #B5A1B5;
  border-radius:4px;
  color:#F2F1F1 !important;
  font-family:'Boogaloo', cursive;
  font-size:1em;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  height:40px;
  line-height:normal;
  text-align:center;
  text-decoration:none;
  text-shadow: 3px 3px 0 #464747;
  min-width:95%;
  margin-right:auto;
  margin-left:auto;
  margin-bottom:8px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color:#FFA500;
  
  /* Eases out effect */
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

button.button-demo:hover {
  background-color:#000;
  box-shadow: 0 0 30px 5px rgba(59, 85, 164, 0.3);				/* CHANGE BOX SHADOW COLOR TO MATCH STANDARD HOVER COLOR */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button.button-demo a:link,
button.button-demo a:visited,
button.button-demo a:hover,
button.button-demo a:active {
  color:#F2F1F1 !important;
  text-decoration: none !important;
}

.body-background-center {
  padding-top:2rem;
  padding-bottom:2rem;
  padding-right:1rem;
  padding-left:1rem;
  margin-bottom:15px;
  background-color: rgba(255, 255, 255);
  border: 2px solid #FFA500;
  box-shadow: 9px 9px 9px rgba(255, 165, 0, 0.15);
}

.company-address-desktop {
  color: #d44e13 !important;
  text-shadow: 3px 2px 0 #f3d9c6;
  font-size:1.8rem;
  font-weight:700;
  line-height:1.2;
  text-align:center;
  word-spacing:2px;
  display: table;								/* WRAPS TEXT WITHOUT SETTING DIV WIDTH */
  table-layout: fixed;                          /* WRAPS TEXT WITHOUT SETTING DIV WIDTH */
  width: 100%;                                  /* WRAPS TEXT WITHOUT SETTING DIV WIDTH */
  word-wrap: break-word;                        /* WRAPS TEXT WITHOUT SETTING DIV WIDTH */
}

.company-address-mobile {
  color: #d44e13 !important;
  text-shadow: 3px 2px 0 #f3d9c6;
  display: none;
  font-size:1.2rem;
  font-weight:700;
  line-height:1.3;
  text-align:center;
  word-spacing:2px;
}

h1 {
	font-family: 'Boogaloo', cursive;
    font-size:1.2rem;
    font-weight:700;
    line-height:1.06;
	text-align:left;
	margin-right:auto;
	margin-left:auto;
	margin-top:9px;
	margin-bottom:9px;
    color: #AF23A5;
    text-shadow: 4px 4px 4px rgba(255, 165, 0, 0.15);
}

.footer-background-center-margin-top {
	background-color: rgba(245, 245, 245, 0.8);
    padding-top:20px;
    padding-bottom:20px;
    margin-right:auto;
    margin-left:auto;
    margin-top:10px;
    margin-bottom:15px;
    border: 2px solid #FFA500;
    box-shadow: 9px 9px 9px rgba(255, 165, 0, 0.15);
}

/* To work properly hyperlinks must be styled individually and use !important */

a.footer-hyperlink:link {
	color: #d44e13 !important;
    text-shadow: 3px 3px 0 #f3d9c6 !important;
	text-decoration: none !important;
}

a.footer-hyperlink:visited {
	color: #d44e13 !important;
    text-shadow: 3px 3px 0 #f3d9c6 !important;
	text-decoration: none !important;
}

a.footer-hyperlink:active {
    color: #d44e13 !important;
    text-shadow: 3px 3px 0 #f3d9c6 !important;
	text-decoration: none !important;
}  

a.footer-hyperlink:hover {
  color: #ff9600 !important;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}