@charset "UTF-8";

/* ---------------------------------------------------------------------------------------

Notes

flex set:
----------------------------------
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
 
	display: -webkit-flex; 
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;

--------------------------------------------------------------------------------------- */

/*
   Animation for spinners
*/
.spinner {
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  display: inline-block;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}


/* ---------------------------------------------------------------------------------------
    Colors
--------------------------------------------------------------------------------------- */

.turquoise {
  color: #1abc9c;
}
.green-sea {
  color: #16a085;
}
.emerald {
  color: #2ecc71;
}
.nephritis {
  color: #27ae60;
}
.peter-river {
  color: #3498db;
}
.belize-hole {
  color: #2980b9;
}
.amethyst {
  color: #9b59b6;
}
.wisteria {
  color: #8e44ad;
}
.wet-asphalt {
  color: #34495e;
}
.midnight-blue {
  color: #2c3e50;
}
.sun-flower {
  color: #f1c40f;
}
.orange {
  color: #f39c12;
}
.carrot {
  color: #e67e22;
}
.pumpkin {
  color: #d35400;
}
.alizarin {
  color: #e74c3c;
}
.pomegranate {
  color: #c0392b;
}
.clouds {
  color: #ecf0f1;
}
.silver {
  color: #bdc3c7;
}
.concrete {
  color: #95a5a6;
}
.asbestos {
  color: #7f8c8d;
}
.clouds {
  color: #bdc3c7;
}

 

/* ---------------------------------------------------------------------------------------
   Containers
--------------------------------------------------------------------------------------- */

#mobilescreen {
  display: -webkit-flex; 
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
}

#mobilescreen > div {
  width: 50%;
  text-align: center;
}

#mobilescreen > div p {
  text-align: center;
}


html {
	scroll-behavior: smooth; 
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}


body {
  padding-top: 110px; /* match header height */
  overflow-x: hidden; /* horiz animations */
  font-family: "Lato", tahoma, sans-serif; 
  font-size: 16px;
  color: #CDD2D6;
  background: #2c3e50;  /*  url(../img/grain.png) 0 0 repeat;  */
}

header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px; /* 90px; */
  z-index: 999;
  font-family: "Michroma", sans-serif;
  background: #2c3e50;
}

.hdr-sdw { 
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

hgroup {  
	display: -webkit-flex; 
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: space-between;
  align-items: space-between;
  flex-wrap: nowrap;

  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1240px;
  height: 110px; /* 90px; */
  z-index: 999; 
  zoom: 1; 

  background: #2c3e50;

  /* border-bottom: 1px solid #E74C3C;
  background: #34495e; /*  url(../img/bg-footer.png) 100% 100% no-repeat; */ /* 9E9A8F; */
}

#header {
  width: 30%; 
  display: -webkit-flex; 
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: nowrap;
}

#header #title {
  display: -webkit-flex; 
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;

  height: 55%;
  padding: 0 18px 0 0;
}

#title a {
  font-size: 1rem;
  color: #e67e22;
}

#title p {
  font-size: 0.8rem;
  color: #e67e22;
}


#header #meta {
  display: -webkit-flex; 
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;

  padding: 0 0 0 18px;
  height: 55%;
  border-left: 4px solid #3498db;
  font-size: 0.5rem;
  color: #ecf0f1;
}

#chainav {
  display: -webkit-flex; 
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: nowrap;

  width: 66%;
}

#chainav li {
  width: 22%;
}

#chainav li a {
  display: block;
  padding: 24px 7px 7px 7px;
  text-align: right;
  border: 2px solid #3498db;
  background: rgba(52, 152, 219, 0.3);
  border-radius: 4px;
  font-size: 0.8rem;
  color: #ecf0f1;
  -webkit-transition: 0.2s ease-in-out; 
  transition: 0.2s ease-in-out;
}

#chainav li a:hover {
  background: rgba(52, 152, 219, 0.4);
  -webkit-box-shadow: 0 0 12px #3498db;
  box-shadow: 0 0 12px #3498db;
}

hgroup h1 {
  display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;

  margin: 0;
  
  width: 100%;
  height: auto;  
  font-size: 4rem;
}

hgroup p {
  margin: 0;
  font-size: 0.9rem;
  text-indent: 0;
}

#main {  
  display: none;
  position: relative;
  z-index: 99;
  padding-bottom: 40px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.submain {  
  position: relative;
  z-index: 99;
  margin: 0;
  padding: 0;
  min-height: 520px;
  background: #2c3e50; 
}

.submain > div {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 100%;
  z-index: 99;

  max-width: 1240px; 
  min-height: 520px; 
  border: 2px solid #e67e22;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

#bgon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999;
}

.submain > div > section {
  position: relative;
  z-index: 99;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  /*
  max-width: 1240px; 
  min-height: 480px; 
  border: 2px solid #e67e22;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  */
  background: #2c3e50; 
}

.pointer { display: none;
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -16px;
  width: 32px;
  height: 32px;
  z-index: 9;
  background: #2c3e50; 
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5); 
  -webkit-transform: rotate(45deg); 
  transform: rotate(45deg);
}


article {
  position: relative;
  margin: 0 auto;
  padding: 22px 90px; 
  width: 100%;
  max-width: 1240px; /* 1020px; */
  min-height: 544px;
  background: #000 url(../img/tt/graphy-dark.png) -20px -10px repeat; /* #34495e #2c3e50; /* #0C3349; */

	display: -webkit-flex;  
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;

  /*
  -webkit-transition: 0.4s ease-in-out; 
  transition: 0.4s ease-in-out;   
  */
}

article.bgimgon {
  background: #34495e url(../img/uibg-forest.png) 50% 50% no-repeat; /* uibg-forest.png */
  background-size: cover;  
}

#ss3 article {
  padding: 16px 90px 12px; 
}

article h3 {
  /* position: absolute;
  top: 0;
  left: 0; */
  margin-bottom: 12px;
  padding-bottom: 7px;
  width: 100%;
  height: auto;
  text-align: left;
  font-family: "Michroma", sans-serif;
  font-size: 1.5rem;
  border-bottom: 1px solid #e67e22;
  color: #e67e22;
}



article > div {
  margin: 0 0 22px;
}



/* ---------------------------------------------------------------------------------------
   Typography
--------------------------------------------------------------------------------------- */



/* ---------------------------------------------------------------------------------------
   Navigation
--------------------------------------------------------------------------------------- */

#navicon {
	position: fixed;
	top: 27px;
	right: 27px;
	z-index: 99999;
  cursor: pointer;
  display: block;
  padding: 17px 4px 4px 12px;
  text-align: right;
  border: 2px solid #e74c3c; /* 3498db; */
  background: #c0392b; /* rgba(231, 76, 60, 0.3); /* rgba(52, 152, 219, 0.3); */
  border-radius: 4px;
  font-size: 0.7rem;
  color: #ecf0f1;
  -webkit-transition: 0.2s ease-in-out; 
  transition: 0.2s ease-in-out;
}

#navicon:hover {
  box-shadow: 0 0 12px red;
}

#navicon.iconon {
  border: 2px solid #2ecc71;
  background: #27ae60;
}

#navicon.iconon:hover {
  box-shadow: 0 0 12px lime;
}



#navicon2 {
	position: fixed;
	top: 27px;
	left: 27px;
	z-index: 99999;
  cursor: pointer;
  display: block;
  padding: 7px;
  width: 60px;
  height: 60px;
  text-align: right;
  border: 2px solid #e74c3c; /* 3498db; */
  background: #c0392b; /* rgba(231, 76, 60, 0.3); /* rgba(52, 152, 219, 0.3); */
  border-radius: 4px;
  font-size: 0.7rem;
  color: #ecf0f1;
  -webkit-transition: 0.2s ease-in-out; 
  transition: 0.2s ease-in-out;

  display: -webkit-flex;  
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
}

#navicon2:hover {
  box-shadow: 0 0 12px red;
}

#navicon2.iconon {
  border: 2px solid #2ecc71;
  background: #27ae60;
}

#navicon2.iconon:hover {
  box-shadow: 0 0 12px lime;
}

#navicon2 img {
  width: 98%;
  height: auto;
}





.hamburger {
  padding: 15px 15px;
  display: inline-block; 
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }


  .hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after {
    background-color: #f1c40f; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #f39c12;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

		.hamburger--spin .hamburger-inner {
			transition-duration: 0.22s;
			transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
			.hamburger--spin .hamburger-inner::before {
				transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
			.hamburger--spin .hamburger-inner::after {
				transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
		
		.hamburger--spin.is-active .hamburger-inner {
			transform: rotate(225deg);
			transition-delay: 0.12s;
			transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
			.hamburger--spin.is-active .hamburger-inner::before {
				top: 0;
				opacity: 0;
				transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
			.hamburger--spin.is-active .hamburger-inner::after {
				bottom: 0;
				transform: rotate(-90deg);
				transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }



body nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	padding: 20px 0;
	height: auto;
	background: rgba(155, 89, 182, 0.8);
	box-shadow: 0 3px 7px rgba(0,0,0,0.7);
}

nav > div {
	padding: 110px 32px;
}

nav ul { 
  /*
  display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  */
  height: 100%;
}

nav ul li {
  position: relative;
  display: block;
  height: 100%;
}

nav ul li a {
  display: block;
  padding: 10px;
  min-width: 90px;
  height: 100%;
  line-height: 1.5em;
  color: #fff; /* bdc3c7; */
  background: transparent;
  border: 1px solid transparent;
  
}

nav ul li a:hover {
  color: #F1C40F; /* #34495E; /* ecf0f1; */
  border-color: #F1C40F; /* #1abc9c; */
}




/* ---------------------------------------------------------------------------------------
   Content
--------------------------------------------------------------------------------------- */

.section-content {
  padding: 20px;
}

p {
  margin: 0 0 20px;
  font-size: 1.1rem; 
  text-align: justify;
}

p.droppara, #notes p, .noindent {
	text-indent: 0;
}

p.droppara:first-letter {
  padding: 0;
  margin: 0 7px 0 0;
  
	font-family: 'Josefin Slab', serif;
  font-size: 4rem;

  font-size: 3rem;
  float: left;
  line-height: 1;
  color: #f1c40f;
}

a {
  color: #3498DB;
  text-decoration: none;
}

.center {
  text-align: center;
}

hr {
  margin: 44px 0;
  padding: 0;
  width: 100%;
  height: 1px;
  border: none;
  border-top: 1px dashed #f39c12;
}

blockquote {
  width: 1030px; 
  height: 440px; 
  overflow: hidden; 
  position: relative; 
  margin: 0 auto 7px; 
  padding: 32px;
    border: 2px solid #3498db;
    background: rgba(52, 152, 219, 0.3); /* #36597C */
    border-radius: 4px;
    font-size: 0.8rem;
    color: #ecf0f1;
}

blockquote.dark {
  background: rgba(52, 152, 219, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px)
}


blockquote p {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.2em;
  text-indent: 0;
}

blockquote p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
  color: #F39C12;
}

em {
  color: #3498DB;
}

.note, #devlink {
  font-size: 0.8rem;
  text-align: center;
}

.date {
  font-size: 0.8rem;
  text-align: right;
  color: #3498DB;
}

.right {
  text-align: right;
}



/* ---------------------------------------------------------------------------------------
   Gallery Images
--------------------------------------------------------------------------------------- */

#submain ul {
  display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
}

#submain ul li {
  margin-bottom: 32px;
  width: 320px;
  height: 380px;

}

figure {
	display: block;
	margin: 0 auto 32px;
	padding: 4px;
	height: auto;
  width: auto;
  max-width: 620px;
}

figure.max240 { max-width: 240px; }

figcaption {
  padding-top: 4px;
	font-size: 0.9rem;
	text-align: center;
}

figure img {
	display: block;
  margin: 0 auto;
	padding: 4px;
	width: auto;
  max-width: 100%;
	height: auto;
  border: 2px solid #16a085;
}

figure.noborder img, img.noborder {
  border: none;
}

figure.right {
	display: block;
	float: right;
	margin: 0 0 12px 20px;
	padding: 0;
	width: 100%;
	max-width: 240px;
}

figure.right img {
  border: none;
}

figure.portrait {
  position: relative;
  display: block;
  float: right;
  margin: 0 0 12px 20px;
	padding: 0;
	width: 100%;
	max-width: 240px;
  border: 2px solid #16a085;
  background: transparent url(../img/cosmos-bg-sm.jpg) 50% 50% no-repeat;
}

figure.portrait img {
  padding: 0;
  width: 100%;
  border: none;
}

figure.icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

figure.icon img {
  border: none;
}

figure.icon-lg {
  margin: 0 auto;
  width: 240px;
  height: 240px;
}

figure.icon-lg img {
  border: none;
}

h4 {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
}

h4 span {
  font-size: 1.2rem;
}

.imgbullet {
  width: 55px;
  height: auto;
}



/* ---------------------------------------------------------------------------------------
   Footer    display:none;
--------------------------------------------------------------------------------------- */
footer { 
  margin: 0;
  padding: 44px 20px;

  height: 598px;

  text-align: center;
  line-height: 1.2em;
  font-size: 1.2rem;
  color: #ECF0F1;
  background: #34495e url(../img/cosmos-bg.jpg) 50% 50% no-repeat;
  background-size: cover;

  border-top: 1px solid #f1c40f;
}

footer blockquote {
  display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;

  width: 90%; 
  height: 520px; 

  
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.3);  
}

footer blockquote::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(1px);
  box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1), inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
  opacity: 0.6;
  z-index: -1;
  filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
}

footer p {
  text-indent: 0;
  text-align: center;
}

.submain#footer {
  position: relative;
  padding: 100px 0 0 0;
  min-height: 144px;
  background: #34495e;
  
  -moz-box-shadow: 0 0px 12px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0px 12px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 7px 12px rgba(0, 0, 0, 0.2);
}

footer ul {
  margin: 0 auto;
  width: 88%;
}

footer a {
  color: #ECF0F1; 
}

footer a:hover {
  text-decoration: underline;
}


/*
#footer article {
  min-height: 144px;
}

#footer #footerLogo {
  position: absolute;
  top: -40px;
  left: 50%;
  display: block;
  margin-left: -40px;
  width: 80px;
  height: 80px;
  z-index: 9999;
  font-size: 190%;
  line-height: 2.6em;
  text-align: center;
  color: #f9f9f9;
  background: transparent url(../img/bpp-logo-wt.png) 0 0 no-repeat;
  background-size: contain;
}

#footer-nav li {
  display: block;
  margin-bottom: 20px;
}

#footer-nav .btn-lg {
  padding: 0;
}

#footer-nav .fa {
  margin-right: 12px;
}

#footer-nav a {
  display: block;
  padding: 10px 16px;
  color: #484848;
}

#footer-mkt {
  color: #484848;
  background: #bdc3c7;
  
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
*/





/* ---------------------------------------------------------------------------------------
   
--------------------------------------------------------------------------------------- */

@media (min-width: 1180px) {
  #main, header { 
    display: block;
	}
	
	#mobilescreen {
		display: none;
	}
}












