:root{
  --cotmhgold:#FFC40C;  /*rgb();  (--cotmhgold)*/
  --cotmhred:#EC1C24;   /*rgb();  (--cotmhred)*/
  --cotmhlime:#8BC53F;  /*rgb();  (--cotmhlime)*/
  --cotmhgreen:#006838; /*rgb();  (--cotmhgreen)*/
  --cotmhorange:#FF8000;/*rgb();  (--cotmhorange)*/
  --mainfont:'Lato', sans-serif;
  --headingfont:'Cinzel', serif;
}
*{
  box-sizing:border-box;
}
html.ccm-toolbar-visible{
  margin-top:47px;
}
body{
  box-sizing:border-box;
  font-family:var(--mainfont);
  line-height:1.82em;
  background-color:#000;
}
#page{
  background-color:var(--cotmhgold);
}
/*#page img{
  width:100%;
  height:auto;
  -ms-interpolation-mode:bicubic;
}*/
#page svg{
  -ms-interpolation-mode:bicubic;
}
#page input{
  padding:20px;
}
#page input[type="submit"]{
  cursor:pointer;
}


/* TYPOGRAPHY */
/* CSS-TRICKS FLUID FONT SIZING ***********************************************/
html {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1000px) {
  html {
    font-size: 22px;
  }
}

#page button, input, optgroup, select, textarea {
  font-family:var(--mainfont);
}
#page h1,h2,h3,h4,h5{
  margin:1.82rem 0 0.455em;
  /*padding-top:80px;*/
  line-height:1;
}
#page h1,
#page .h1,
#page h2,
#page .h2,
#page main .overview p,
#page .serifd,
#page .bannertext,
#page blockquote:before,
#page blockquote:after{
  font-family:var(--headingfont);
  letter-spacing:-0.5px;
}
#page h1,
#page .h1{
  font-size:3.5rem;
  font-weight:normal;
  line-height:3.5rem;
}
.page-title{
  text-shadow:-2px 2px 0px rgba(255,255,255,0.65);
}

#page h2,
#page .h2{
  margin:0rem 0 0.35rem;
  font-size:1.4rem;
  text-transform:uppercase;
  font-weight:normal;
  clear:both;
}
.cotmh-content h2,
.cotmh-content .h2{
  padding-top:10px;
}
body:not(#home) .cotmh-content h2,
body:not(#home) .cotmh-content .h2{
  color:var(--cotmhgreen);
}
#page h3,
#page .h3{
  font-size:1rem;
}
#page h3,
#page .h3{
  margin-bottom:0px;
}
#page blockquote{
  position:relative;
}
#page blockquote p{
  font-family:var(--mainfont);
  font-style:italic;
  font-weight:900;
}
/*#page blockquote::before,
#page blockquote::after{
  font-size:2rem;
  opacity:0.35;
}
#page blockquote::before{
  content:'“';
  position:absolute;
  left:-20px;
}
#page blockquote::after{
  content:'”';  “”
  top:95%;
  right:-20px;
}*/

.glow {
  color:#000;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px var(--cotmhgold), 0 0 10px var(--cotmhgold), 0 0 15px var(--cotmhgold), 0 0 20px var(--cotmhgold), 0 0 25px var(--cotmhgold);
  }
  to {
    text-shadow: 0 0 10px var(--cotmhgold), 0 0 15px var(--cotmhred), 0 0 20px var(--cotmhred), 0 0 25px var(--cotmhred), 0 0 30px var(--cotmhred);
  }
}

.glow:hover{
  -webkit-animation: glow2 0.7s ease-in-out infinite alternate;
  -moz-animation: glow2 0.7s ease-in-out infinite alternate;
  animation: glow2 0.7s ease-in-out infinite alternate;
}
@keyframes glow2 {
  from {
    text-shadow: 0 0 5px var(--cotmhlime), 0 0 10px var(--cotmhlime), 0 0 15px var(--cotmhlime), 0 0 20px var(--cotmhlime), 0 0 25px var(--cotmhlime);
  }
  to {
    text-shadow: 0 0 10px var(--cotmhlime), 0 0 15px var(--cotmhgreen), 0 0 20px var(--cotmhgreen), 0 0 25px var(--cotmhgreen), 0 0 30px var(--cotmhgreen);
  }
}

/* --- STRUCTURE (MOBILE 1ST) ---------------------------------------- */
.hero,
.home-pg-content-container,
footer{

}
/* --- HOME PAGE ----------------------------------- */
#home #main{
  padding-top:0px;
}
.hero,
.greetings/*,
#page footer*/{
  display:flex;
  flex-direction:column;
  /*justify-content:center;*/
  align-items:center;
  padding:40px;
}
.home-pg-content-container{
  color:var(--cotmhgold);
  background-color:var(--cotmhgreen);
}
#page .home-pg-content-container h2{
  color:var(--cotmhgold);
}

/* --- MAIN SECTION PARAGRAPHS AND LISTS ---------------- */
body:not(#home) main{
  margin:0px 15%;
}
main p,
main ul,
main ol,
main details{
  margin-top:0px;
  margin-bottom:1.3em;
}
main p + ul,
main p + ol{
  margin-top:-0.65rem;
}
main .fvsuag-custom-file + p{
  margin-top:1.3em;
}
main ul{
  list-style-type:none;
}
main ol:not(.breadcrumb),
main ul:not(.nav){
  padding-left:1rem;
}
main ol:not(.breadcrumb) li,
main ul:not(.nav) li{
  margin-bottom:0.65rem;
  padding-left:1em;
  /*list-style-position:inside;
  text-indent:-1em;*/
}
main ul:not(.nav) li{
  list-style-type:square;
}

main ol:not(.breadcrumb) li::marker,
main ul:not(.nav) li::marker{
  color:var(--cotmhgreen);
}
main ol:not(.breadcrumb) li::marker{
  font-weight:bold;
}
main ul:not(.nav) ul li{
  list-style-type:circle;
}
main ul:not(.nav) ul li::marker{
  content:'– ';
}

main .cycle-slideshow + p{
  margin-top:1.3em;
}
strong{
  font-weight:900;
}
main table{
  width:100%;
  line-height:1.2em;
}

/* LINKS */
a.skip{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
a.skip:active,
a.skip:focus,
a.skip:hover{
  position:static;
  width:auto;
  height:auto;
}
a{
  color:var(--cotmhgreen);
  text-decoration:none;
}
a:hover{
  color:var(--cotmhlime);
  text-decoration:underline;
}

/* --- HEADER & NAV-MAIN -----------------------------------------------------*/
#page header{
  position:relative;
}
.cotmh-header-image{
  width:100%;
  height:100%;
}

.headerlogo a{
  display:block;
  padding:0px;
}
.headerlogo img,
.headerlogo svg{
  display:block;
  margin:0px auto;
}
.headerlogo .cotmh-logo{
  height:150px;
  width:auto;
}
.headerlogo .cotmh-logo-type{
  width:75%;
}
.headerlogo .cotmh-logo-type path{
  fill:var(--cotmhgold);
}


.nav-toggle{
  position:absolute;
  display:flex;
  flex-direction:column;
  justify-content:space-around;
  align-items:flex-end;
  top:20px;
  right: calc(0% + 20px);
  height:50px;
  width:50px;
  background-color:transparent;
  border:0px solid transparent;
  cursor:pointer;
}
.nav-toggle-bar{
  height:10px;
  width:10px;
  background-color:var(--cotmhgold);
  border-radius:10px;
  box-shadow:0px 0px 5px 5px #000;
  transition:width 0.2s ease, border-radius 0.2s ease;
}
.nav-toggle:hover .nav-toggle-bar,
.nav-toggle-active .nav-toggle-bar{
  width:50px;
  background-color:var(--cotmhlime);
  border-radius:0px;
}
.nav-toggle-active .nav-toggle-bar{

}
nav.main-navigation{
  display:none;
  background-color:#000;
  padding:20px;
  padding-bottom:0px;
}
nav.main-navigation > ul{
  width:90%;
  margin:0 auto;
  padding:0 0 40px;
  list-style-type:none;
  text-align:center;
  line-height:1;
}
nav.main-navigation > ul > li{
  margin-bottom:5px;
}
nav.main-navigation > ul > li > a{
  display:block;
  padding:10px;
  font-family:var(--headingfont);
  font-weight:900;
  text-transform:capitalize;
  color:var(--cotmhlime);
}
nav.main-navigation > ul > li.nav-link-drop-active > a{
	color:var(--cotmhgreen);
  background-color:var(--cotmhlime);
}
.nav-link-drop-active > a:hover{
  text-decoration:none;
}
nav.main-navigation ul li .drop{
  display:none;
  margin:0 auto;
  padding-bottom:10px;
  text-align:center;
  color:#000;
  background-color:var(--cotmhlime);
}
nav.main-navigation ul li .drop ul{
  padding:0 0 0 0;
  list-style:none;
}
nav.main-navigation ul li .drop li{
  /*margin-bottom:5px;*/
}
nav.main-navigation ul li .drop li a{
  display:block;
  padding:10px;
  font-size:0.75rem;
  letter-spacing:-0.5px;
  font-weight:bold;
  line-height:1.25;
}

nav.main-navigation ul li .drop li a:hover{
  color:inherit;
}


/* --- IMAGES --------------------------------------------------------------- */
.responsive-img-div{
  max-width:600px;
  margin:0px auto;
}
.responsive-img-div img,
.img-div img{
  display:block;
}
.responsive-img-div img{
  width:100%;
  height:auto;
}
.page-title + .img-div{
  margin-bottom:40px;
}

/* --- BLOCKQUOTE STYLES ---------------------------------------------------- */
blockquote{

}

/* --- BUY BUTTONS -----------------------------------------------------------*/
.buy-links{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}
.home-page-buy-btn{
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 40%;
  margin: 0px auto;
  background-color:
  #FFF;
  border-radius: 6px;
  transition: box-shadow 0.1s ease-in-out;
}
.home-page-buy-btn a{
  padding: 10px;
}
.home-page-buy-btn a img{
  position:relative;
  top:0;
  width:70%;
  height:auto;
  margin:0px auto;
  transition: top 0.1s ease-in-out;
}
.home-page-buy-btn:hover{
  box-shadow: inset 0px 3px 0px #AAA;
}
.home-page-buy-btn:hover a img{
  top:4px;
}
/*--FOOTER STYLES ------------------------------------------------------------*/
#page footer{
  color:var(--cotmhgold);
  background-color:#000;
}
#page footer > div{

}
#page .footer-content{
  color:var(--cotmhgold);
  font-size:75%;
  line-height:1.35;
}
#page .footer-content .cotmh-content h2{
  padding-top:0px;
}
#page .footer-logo{
  margin:20px auto;
}
#page .footer-logo img{
  display:block;
  width:100%;
  height:auto;
  max-width:300px;
  margin:0px auto;
}
#page .footer-logo > p{
  text-align:center;
  line-height:1;
  font-size:75%;
  text-transform:uppercase;
}

/* MEDIA QUERIES -------------------------------------------------------------*/
/* --- Smaller Screens --- */

/* --- Medium and Up --- */
@media (min-width:768px) {
  body:not(#home) main{
    width:85%;
    max-width:900px;
    margin:0px auto;
  }
  #page header{
    /*position:fixed;
    top:0;
    left:0;*/
    width:100%;
    z-index:9;
  }

  .headerlogo a{
    display:flex;
    justify-content:center;
    margin:0px;
  }
  .headerlogo img,
  .headerlogo svg{
    margin:0 0 0 0;
  }
  .headerlogo .cotmh-logo{
    padding:0;
    /*width:auto;*/
  }
  .headerlogo .cotmh-logo-type{
    width:500px;
  }
  .nav-toggle{
    display:none;
  }
  nav.main-navigation{
    display:block !important;
  }
  nav.main-navigation > ul{
    position:relative;
    width:95%;
    padding:0 0 0 0;
    font-size:0.65rem;
    line-height:1;
  }
  nav.main-navigation > ul > li{
    display:inline-block;
    width:24%;
    margin-bottom:0px;
    vertical-align:top;
  }
  nav.main-navigation > ul > li > a{
    /*background-color:rgba(0,0,0,0.3);*/
  }
  .nav-link-drop{
    border-bottom:10px solid transparent;
  }
  .nav-link-drop.nav-link-drop-active{
    border-bottom-color:var(--cotmhlime);
  }

  nav.main-navigation ul li .drop{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    padding:25px 25px 40px;
    list-style:none;
    text-align:left;
  }
  nav.main-navigation ul li .drop ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  nav.main-navigation ul li .drop li{

  }

  nav.main-navigation ul li .drop li a:hover{
    color:var(--cotmhlime);
    background-color:var(--cotmhgreen);
  }

  .nav-link-home{
    /*display:none;*/
  }

  .hero > h2,
  .hero > p{
    margin:0px auto;
    text-align:center;
  }

  #page footer{
    position:relative;
    /*
    flex-direction:row;
    justify-content:space-around;
    align-items:flex-start;
    */
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(31%, 1fr));
    grid-gap: 1%;
    padding: 40px;
  }

  #page .footer-logo > p{
    pposition:absolute;
    margin:0px auto;
    left:0;
    bottom:20px;
    width:100%;
  }

  .float-left,
  .float-left-w{
    float:left;
  }
  .float-right{
    float:right;
  }
  .float-left.img-div{
    width:50%;
    margin-right:20px;
  }
  .float-right.img-div{
    width:50%;
    margin-left:20px;
  }
  .float-left-w.img-div{
    width:auto;
    margin-right:20px;
    margin-bottom:20px;
  }
}
@media (min-width:1000px) {
  #home #main{
    display:flex;
    justify-content:space-between;
    /*align-items:flex-start;*/
    max-width:1400px;
    margin:0px auto;
  }
  .hero,
  .greetings{
    /*display:inline-block;*/
    width:50vw;
    vertical-align:top;
  }
  #page .footer-contact{
    margin:0px 0px 0px 20px;
    order:1;
  }
}
/* ----- UTILITY ---------------------------------------------- */
/* .hidden class for hidden objects that still need to be accessible for
screen readers, etc. */
#page .hidden{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
/* .bkgnd utility class to style elements that need uniform background color
and reverse type styles, including :hover state */
#page a.bkgnd,
#page .bkgnd,
#page a.file-download{
  display:block;
  color:#FFF;
  line-height:1.1;
  background-color:var(--cotmhlime);
}
#page a.bkgnd:hover,
#page .bkgnd:hover,
#page a.file-download:hover{
  color:#FFF;
  background-color:var(--cotmhgreen);
  border-bottom:none;
}
#page a.file-download{
  padding:14px;
  border-radius:4px;
}

#page a.bkgnd::after,
#page .bkgnd::after{

}
#page a.bkgnd::before,
#page .bkgnd::before{

}
#page a.bkgnd:hover::after,
#page .bkgnd:hover::after{

}
#page a.bkgnd:hover::before,
#page .bkgnd:hover::before{

}

/* .round-all class for consistent, cross-browser round corners across site */
#page .round-all{
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
}
/* Bootstrap-style ALERT box styles */
#page .alert{
  margin-top:20px;
  padding:20px;
  color:rgba(0,0,0,0.75);
}
#page .alert-info{
  background-color:var(--cotmhgold);
}
#page .alert-warning{
  color:#382C00;
  background-color:var(--cotmhorange);
}
#page .alert-danger{
  color:#330000;
  background-color:var(--cotmhred);
}
#page div.alert-success{
  color:rgba(255,255,255,0.75);
  background-color:var(--cotmhgreen) !important;
}
/* center block level elements */
.centering{
  margin-left:auto;
  margin-right:auto;
}
.centering img{
  text-align:center;
}
/* center text/inline elements in container */
.centerd{
  text-align:center !important;
}

/* Text classes */
.bigger-bold-text{
  font-weight:900;
  font-size:bigger;
}
.red-letter-text{
  color:var(--cotmhred);
}

 /* IMAGE-DIV POSITIONING */
