/* CORE STYLES */
:root {
  /* --primary-color: rgba(13, 110, 139, 0.75);*/
 /* --overlay-color: rgba(24, 39, 51 , 0.85); */
 
   --primary-color: rgba(0, 0, 0, 0.55);
   --overlay-color: rgba(0, 0, 0 , 0.85);
  --menu-speed: 0.75s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
  font-size: 1.1rem;
}


.container2 {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 0 3rem;
}

.showcase {
  background: var(--primary-color);
  color: #fff;
  height: 100vh;
  position: relative;
}

.showcase:before {
  content: '';
  background: url('images/showcase.jpg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260') no-repeat center center/cover; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.showcase .showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.showcase h1 {
  font-size: 4rem;
}

.showcase p {
  font-size: 1.3rem;
}

.btn {
  display: inline-block;
  border: none;
  background: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  transition: opacity 1s ease-in-out;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.7;
}

/* MENU STYLES */
.menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.menu-wrap .togglertwo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .togglertwo:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .togglertwo:checked + .hamburger > div:before,
.menu-wrap .togglertwo:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .togglertwo:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .togglertwo:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .togglertwo:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .togglertwo:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

.fixedfooter {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: black;
   color: white;
   text-align: center;
}

h1, h2, h3, h6, h7 {
   text-align: center;
}

h6
{text-align: center;
font-size: 1.2em;
font-style: italic;
font-weight: normal;

}
.fullwidth,
.bookcoversize,
.sitebanner{width:100%;margin-top:20px;}
.halfwidth{width:50%;margin-top:20px;float:left;}
.halfwidthleft{width:50%;margin:10px;float:left;}
.halfwidthright{width:50%;margin:10px;float:right;}
.quarterwidthleft{width:25%;margin:10px;float:left;}
.quarterwidthright{width:25%;margin:10px;float:right;}

.roundedicon {border-radius:6px;}

.numberview{display: inline-block; width:20%;background-color:#3366ff;color:#ffffff; font-size:14px;letter-spacing:4px;text-align:center;text-transform:uppercase;border-radius:6px;margin-top:5px;border-bottom:3px solid #2f9697;box-shadow:none;padding:10px;}

.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}
* html .clearfix{zoom:1;}

.fullwidth,
.bookcoversize,
.sitebanner{width:100%;margin-top:20px;}
.sitebanner{width:100%;margin-top:20px;}
.halfwidth{width:50%;margin-top:20px;float:left;}
.halfwidthleft{width:50%;margin:10px;float:left;}
.halfwidthright{width:50%;margin:10px;float:right;}
.quarterwidthleft{width:25%;margin:10px;float:left;}
.quarterwidthright{width:25%;margin:10px;float:right;}

.twothirdswidthleft{width:66%;margin:10px;float:left;}
.twothirdswidthright{width:66%;margin:10px;float:right;}

.halfwidthcenter{width:50%;margin-top:20px;text-align:center}

.para {margin-top: 0px ; text-indent:3em; padding: 0px 0px 0px 0px;}

.hh4 {
margin-top: 20px;
margin-bottom: 5px;
font-size:1.0rem;
font-style: italic;
}

h2,h3 {
	margin-bottom: 10px;
}

span.apptitle {text-align:center; font-size: 1.9rem; font-family:arial black;}
.quote {margin-left:10%; margin-right:10%; margin-top: 20px; margin-bottom:20px; font-style:italic;text-align:center; }

.align-right{text-align:right;}

.align-left {text-align:left; !important;}
.bullets {font-size: 1.4rem; font-weight:bold; text-align:left;}

.noitalic{font-style:normal; font-weight:bold; !important;}
.islandicon{width:50px;float:left;margin:5px;}
.heading {font-weight: bold; font-size:1.2rem;}
span.small {font-size:.75rem;}
.centerit {text-align:center;}

.preventcopy { 
      -webkit-user-select: none; 
      -webkit-touch-callout: none; 
      -moz-user-select: none; 
      -ms-user-select: none; 
      user-select: none;    
      color: #black;
      } 
	  
.divider{height:80px;padding-bottom:10px;width:50%;margin:20px auto;float:center;border-bottom:10px dotted blue;margin-bottom:10px;}
span.maroonbold {font-size: 1.5rem; color: maroon;}
span.colored {color: blue;}