/* ================================================= */
/* BLACK HERON                                       */
/*================================================== */
@font-face
  {
  font-family: RobotoRegular;
  src: url( /fonts/Roboto-Regular.woff );
  }

@font-face
  {
  font-family: RobotoCondensed;
  src: url( /fonts/Roboto-Condensed-Bold.woff );
  }

HTML
  {
  color: black;
  background: #F7F7F7;
  font-family: "Roboto Regular", RobotoRegular, Calibri, Arial, Helvetica;
  font-size: 12pt;
  line-height: 18pt;
  padding: 0;
  margin: 0;
  }

BODY
  {
  padding: 0;
  margin: 0;
  }

.smaller
  {
  font-size: smaller;
  }

:FOCUS
  {
  outline: none;
  }

/* ================================================= */
/* BASIC SCREEN LAYOUT                               */
/* ================================================= */
HEADER, MAIN, SECTION, FOOTER
  {
  display: block;
  }

DIV.header, DIV.main, DIV.footer
  {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  }

/* ================================================= */
/* HEADER BAR                                        */
/* ================================================= */
HEADER
  {
  position: -moz-sticky;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 95;
  padding: 0;
  height: 64px;
  overflow: hidden;
  color: white;
  background: linear-gradient( black, rgba( 0, 0, 0, 0.6 ) ) ;
  }

DIV.headermask
  {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 90;
  background: linear-gradient( black, rgba( 0, 0, 0, 0.6 ) );
  box-shadow: 0 4px 4px 4px rgba( 247, 247, 247, 0.5 ) ;
  }

HEADER IMG.logo
  {
  display: block;
  float: left;
  position: relative;
  z-index: 99;
  height: 32px;
  width: auto;
  padding: 16px 16px;
  }

/* ================================================= */
/* NAVIGATION AND TOGGLE                             */
/* ================================================= */
HEADER IMG.menu
  {
  display: none;
  float: right;
  position: relative;
  z-index: 99;
  height: 32px;
  padding: 16px;
  width: auto;
  }

NAV
  {
  display: block;
  float: right;
  padding: 0 ;
  }

NAV A, NAV A:VISITED
  {
  display: inline-block;
  padding: 16px 12px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: smaller;
  }

NAV A:ACTIVE, NAV A:HOVER
  {
  background: white;
  color: black;
  background: linear-gradient( white, #CCCCCC ) ;
  }

@media screen and ( min-width: 801px )
  {
  NAV { display: block !important; }
  }

@media screen and ( max-width: 800px )
  {
  HEADER IMG.menu
    {
    display: block;
    }

  NAV
    {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 98;
    padding: 64px 16px 0 16px;
    background: black ;
    }

  NAV A, NAV A:VISITED
    {
    display: block;
    border-bottom: solid white 1px;
    }

  NAV A:ACTIVE, NAV A:HOVER
    {
    background: #CC0000;
    color: white;
    }
  }

@media screen and ( max-width: 400px )
  {
  HEADER IMG.logo, HEADER IMG.menu { height: 24px; padding: 20px 16px; }
  HEADER IMG.logo { padding-right: 4px; }
  HEADER IMG.menu { padding-left: 4px; }
  }

@media screen and ( max-width: 800px ) and ( max-height: 480px )
  {
  NAV A, NAV A:VISITED
    {
    display: inline-block;
    width: 40%;
    margin-right: 1%;
    }
  }
  
/* ================================================= */
/* PAGE DIVISION BANNERS                             */
/* ================================================= */
DIV.banner
  {
  position: relative;
  margin-top: -64px;
  z-index: 91;
  overflow: hidden;
  }

DIV.banner IMG
  {
  width: 100%;
  height: auto;
  min-height: 128px;
  }

@media screen and ( max-width: 640px )
  {
  DIV.banner
    {
    margin-top: 0;
    }
  }

/* ================================================= */
/* MAIN BODY OF PAGE                                 */
/* ================================================= */
MAIN
  {
  color: black;
  background: #EEEEEE;
  line-height: 1.66em;
  }

DIV.main
  {
  min-height: 90vh;
  padding: 16px ;
  }

DIV.main H1
  {
  margin-top: 0;
  font-family: RobotoCondensed, Cambria, Calibri, Arial, Helvetica;
  font-size: 3rem;
  line-height: 125%;
  color: #70B3EC;
  }

P.intro
  {
  font-weight: bold;
  }

DIV.main H1 + P
  {
  margin-top: -16px;
  }

DIV.main H2
  {
  font-family: RobotoCondensed, Cambria, Calibri, Arial, Helvetica;
  font-weight: normal;
  font-size: 2rem;
  line-height: 125%;
  color: #70B3EC;
  }

@media screen and ( max-width: 640px )
  {
  DIV.main H1 { font-size: 2rem; }
  DIV.main H2 { font-size: 1.5rem; }
  }

DIV.main A, DIV.main A:VISITED
  {
  color: #515A75;
  }

DIV.main A:ACTIVE, DIV.main A:HOVER
  {
  color: #CC0000;
  }

DIV.main A.quiet, DIV.main A.quiet:VISITED 
  {
  color: inherit;
  text-decoration: none;
  }

DIV.main A.quiet:ACTIVE, DIV.main A.quiet:HOVER 
  {
  color: #CC0000;
  text-decoration: underline;
  }

DIV.main A.silent, DIV.main A.silent:VISITED, DIV.main A.silent:ACTIVE, DIV.main A.silent:HOVER 
  {
  color: inherit;
  text-decoration: none;
  }

DIV.main UL
  {
  padding-left: 0em;
  margin-left: 1em;
  }

SPAN.tab
  {
  display: inline-block;
  width: 100px;
  }

DIV.main P.phonenumber
  {
  font-family: RobotoCondensed;
  font-weight: bold;
  font-size: 5rem;
  line-height: 5.25rem;
  }

.counterpoint
  {
  color: #CC3333;
  }


/* ================================================= */
/* INFOGRAPHIC BOXES                                 */
/* ================================================= */
.infographic
  {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
  padding: 0;
  background: white;
  }

.infographic:BEFORE, .infographic:AFTER
  {
  position: absolute;
  z-index: -1;
  content: "";
  top: 80%;
  top: calc( 100% - 64px ) ;
  bottom: 12px;
  width: 50%;
  box-shadow: 0 16px 8px #666666;
  }

.infographic:before
  {
  left: 8px;
  right: auto;
  transform: rotate( -3deg );
  }

.infographic:after
  {
  right: 8px;
  left: auto;
  transform: rotate( 3deg );
  }

.infotext
  {
  position: relative;
  background: white;
  padding: 16px;
  }

.infotext P:FIRST-CHILD
  {
  margin-top: 0;
  }

.infoimg
  {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  box-shadow: 0 0 16px rgba( 0, 0, 0, 0.1 ) ;
  }

.infocaption
  {
  margin: -16px 0 44px 2px;
  } 

/* ================================================= */
/* TWO PART LAYOUT (MAIN BAR/SIDE BAR)               */
/* ================================================= */
.twopart
  {
  display: table;
  width: 100%;
  }

.mainbar, .sidebar
  {
  display: table-cell;
  vertical-align: top;
  }

.mainbar
  {
  width: 55%;
  padding-right: 12px;
   }

.sidebar
  {
  width: 43%;
  }

@media screen AND ( max-width: 800px )
  {
  .twopart
    {
    display: block;
    }

  .mainbar, .sidebar
    {
    display: block;
    width: 100%;
    padding: 0 0 24px 0;
    }
  }

.main .sidebar H2
  {
  padding: 8px 4px 8px 16px;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: bold;
  color: white;
  background: #515A75;
  background: radial-gradient( #747D98, #515A75 );
  margin-bottom: 0;
  }

.main .sidebar IMG
  {
  display: block;
  width: 100%;
  }


/* ================================================= */
/* MULTI-COLUMN LAYOUT                               */
/* ================================================= */
DIV.multicols
  {
  column-count: 3;
  column-gap: 2em;
  column-rule: solid #999999 1px;
  box-align: top;
  -moz-column-count: 3;
  -moz-column-gap: 2em;
  -moz-column-rule: solid #999999 1px;
  -moz-box-align: top;
  -webkit-column-count: 3;
  -webkit-column-gap: 2em;
  -webkit-column-rule: solid #999999 1px;
  -webkit-box-align: top;
  line-height: 1.66rem;
  }

DIV.multicols P:FIRST-CHILD
  {
  margin-top: 0;
  }

DIV.multicols .nosplit
  {
  overflow: hidden;
  }

@media screen AND ( max-width: 1024px )
  {
  DIV.multicols
    {
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    }
  }

@media screen AND ( orientation: portrait ), screen AND ( max-width: 600px )
  {
  DIV.multicols
    {
    column-count: 1;
    -moz-column-count: 1;
    -webkit-column-count: 1;
    }
  }

/* ================================================= */
/* PORTFOLIO ENTRIES                                 */
/* ================================================= */
DIV.foliocard
  {
  display: inline-block;
  width: 30%;
  min-width: 200px;
  max-width: 400px;
  border: 0;
  margin-right: 16px;
  }

DIV.foliocardimage
  {
  position: relative;
  z-index: 2;
  background: white;
  min-height: 120px;
  }

DIV.foliocardimage:BEFORE, DIV.foliocardimage:AFTER
  {
  position: absolute;
  z-index: 1;
  content: "";
  top: 80%;
  bottom: 12px;
  width: 50%;
  box-shadow: 0 8px 16px rgba( 0, 0, 0, 0.75 );
  }

DIV.foliocardimage:BEFORE
  {
  left: 8px;
  right: auto;
  transform: rotate( -4deg );
  -ms-transform: rotate( -4deg );
  }

DIV.foliocardimage:AFTER
  {
  right: 8px;
  left: auto;
  transform: rotate( 4deg );
  -ms-transform: rotate( 4deg );
  }

DIV.foliocard IMG
  {
  display: block;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border: solid #666666 1px;
  margin-bottom: 12px;
  background: white;
  }

DIV.foliocardtext
  {
  height: 64px;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: smaller;
  line-height: 1.5em;
  }

DIV.foliocols
  {
  column-count: 2;
  column-gap: 2em;
  column-rule: solid #999999 1px;
  box-align: top;
  -moz-column-count: 2;
  -moz-column-gap: 2em;
  -moz-column-rule: solid #999999 1px;
  -moz-box-align: top;
  -webkit-column-count: 2;
  -webkit-column-gap: 2em;
  -webkit-column-rule: solid #999999 1px;
  -webkit-box-align: top;
  line-height: 1.66rem;
  }

DIV.foliocols DIV.category
  {
  display: inline-block;
  width: 100%;
  }

DIV.foliocols H2
  {
  margin-top: 0;
  padding-top: 0;
  }

DIV.foliocols UL
  {
  padding-bottom: 26px;
  }

DIV.foliocols A, DIV.foliocols A:VISITED
  {
  text-decoration: none;
  }

DIV.foliocols A:ACTIVE, DIV.foliocols A:HOVER
  {
  text-decoration: underline;
  }

IMG.foliolargetile
  {
  display: block;
  box-sizing: border-box;
  max-width: 640px;
  border: solid #999999 1px;
  box-shadow: 0 4px 8px rgba( 127,127, 127, 0.5 ) ;
  }

IMG.foliothumb
  {
  display: inline-block;
  height: 100px;
  width: auto;
  border: solid #999999 1px;
  box-shadow: 0 4px 8px rgba( 127,127, 127, 0.5 ) ;
  }

@media screen AND ( max-width: 800px )
  {
  DIV.foliocard
    {
    width: 46%;
    }

  IMG.foliolargetile
    {
    max-width: 100%;
    }
  }

@media screen AND ( orientation: portrait ), screen AND ( max-width: 600px )
  {
  DIV.foliocard
    {
    width: 96%;
    max-width: 600px;
    }

  DIV.foliocols
    {
    column-count: 1;
    -moz-column-count: 1;
    -webkit-column-count: 1;
    }

  IMG.foliolargetile
    {
    max-width: 100%;
    }
  }

P.testimonial
  {
  font-family: Cambria, Candara, Georgia;
  font-size: 1.25rem;
  line-height: 1.625rem;
  }


/* ================================================= */
/* NEWSLETTER                                        */
/* ================================================= */
DIV.newsletter P.dateline
  {
  font-size: smaller;
  text-transform: uppercase;
  }

/* ================================================= */
/* EMBEDDED YUOTUBE IFRAMES                          */
/* ================================================= */
IFRAME.youtube
  {
  width: 480px;
  height: 270px;
  max-width: 100%;
  }

@media screen and ( min-width: 800px )
  {
  IFRAME.youtube
    {
    width: 576px;
    height: 324px;
    }
  }

@media screen and ( min-width: 1008px )
  {
  IFRAME.youtube
    {
    width: 640px;
    height: 360px;
    }
  }


/* ================================================= */
/* FORM DESIGN                                       */
/* ================================================= */
FORM.modern INPUT, INPUT.modern
  {
  box-sizing: border-box;
  width: 480px;
  max-width: 100%;
  border: solid #CCCCCC 1px;
  padding: 8px; 
  font-size: 100%;
  }

FORM.modern INPUT:FOCUS, INPUT.modern:FOCUS
  {
  background: white;
  }

FORM.modern BUTTON, BUTTON.modern
  {
  border: 0 ;
  padding: 8px ;
  font-size: 100%;
  font-weight: bold;
  color: white;
  background: black;
  box-shadow: 4px 4px 4px rgba( 0, 0, 0, 0.1 ) ;
  }

FORM.modern BUTTON:HOVER, BUTTON.modern:HOVER
  {
  background: #CC0000;
  } 


/* ================================================= */
/* PAGE FOOTER                                       */
/* ================================================= */
FOOTER
  {
  color: white;
  background: rgba( 0, 0, 0, 0.75 );
  background: linear-gradient( rgba( 0, 0, 0, 0.75 ), black ) ;
  font-family: RobotoCondensed ;
  font-size: 2rem;
  line-height: 2.5rem;
  }

DIV.footer
  {
  padding: 16px ;
  }

DIV.footer A, DIV.footer A:VISITED
  {
  color: inherit;
  text-decoration: none;
  }

DIV.footer A:ACTIVE, DIV.footer A:HOVER
  {
  color: inherit;
  text-decoration: underline;
  }
