html {
    line-height: 1.3; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    min-height: 100%;
    }
body {
    margin: 0;
    display: grid;
    font-size: 18px;
    font-family: ui-rounded, 'Hiragino Maru Gothic ProN', Quicksand, Comfortaa, Manjari, 'Arial Rounded MT Bold', Calibri, source-sans-pro, sans-serif;
    color: #fff;
    background-color: #1b1c25;
    }
h1 {
    font-size: 1.4em;
    margin: 0.67em 0;
    }
a {
    background-color: transparent;
    text-decoration: none;
    color: #333;
    }
b,strong {
    font-weight: bolder;
    }
img {
    border-style: none;
    max-width: 100%;
    height: auto;
    }

/* Logo */
.logo{
    position: relative;
    z-index: 2;
    max-width: 280px;
    display: inline-block;
    padding: 20px 0 20px 0;
    }

/* Header Nav */
header{
    position: sticky;
	top: 0;
    z-index: 3;
    background: #1c1a1b;
    background-image: radial-gradient(#00000021 1px, transparent 0);
    background-size: 5px 5px;
    background-position: -13px -3px;
    text-align: center;
    }

/* Main Menu */
#menu ul {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1;
    font-size: 1rem;
    }
#menu .main-menu {
    display: none;
    }

#tm:checked ~ label span{
    background-color: #DCA911;
    background-image: radial-gradient(#35353521 1px, transparent 0);
    background-size: 5px 5px;
    background-position: -13px -3px;
    }
#tm:checked ~ .main-menu {
    display: block;
    }
#menu input[type="checkbox"], 
#menu ul span.drop-icon {
    display: none;
    }
#menu li, 
#toggle-menu, 
#menu .sub-menu {
    border-style: solid;
    border-color: rgba(0, 0, 0, .05);
    }
#menu li, 
#toggle-menu {
    border-width: 0 0 1px;
    margin: 0;
    }
#menu .sub-menu {
    background-color: #444;
    border: 0;
    z-index: 3;
    }
#menu .sub-menu .sub-menu{
    background-color: #555;
    }
#menu .sub-menu li:last-child {
    border-width: 0;
    }
#menu li, 
#toggle-menu, 
#menu a {
    position: relative;
    display: block;
    color: #fff;
    }
#toggle-menu{
    padding: 1.65em 1.5em;
    user-select: none;
    }
#menu li.current-menu-item > a, #menu li.current-menu-parent > a, #menu li.current-menu-ancestor > a{
    color: #ffd900;
    }
#menu a {
    padding: 1em 1.5em;
    }
#menu a:hover {
    background-color: #ffd900;
    color: #ff2d97 !important;
    background-image: radial-gradient(#35353521 1px, transparent 0);
    background-size: 5px 5px;
    background-position: -13px -3px;
    }
#menu .sub-menu {
    display: none;
    }
#menu input[type="checkbox"]:checked ~ .sub-menu {
    display: block;
    }
#menu input[type="checkbox"]:checked + a label{
    color: #333;
    }
#toggle-menu .drop-icon, 
#menu li label.drop-icon {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    }
#menu label.drop-icon, #toggle-menu span.drop-icon {
    padding: 1em;
    font-size: 1em;
    text-align: center;
    text-shadow: 0 0 0 transparent;
    color: rgba(255, 255, 255, .75);
    }



/* General Containers */
.section{
    padding: 0 1rem;
    }
.container {
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  max-width: 55rem;
  position: relative;
  }
.narrow-page{
    max-width: 50rem;
    text-align: center;
    }
.homepage-container{
    font-size: 25px;
    }
.homepage-container a{
    color: #ff2d97;
    text-decoration: underline;
    }
.homepage-container h2.wp-block-heading{
    color: #0efeff;
    }


/* Hero Heading + Content */
.hero{
    background-size: cover;
    background-position: center;
    padding: 4rem 1rem;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 3px #333;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    }
.hero.has-overlay::before{
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: #33333363;
    z-index: 2;
    }

.hero .container{
    z-index: 2;
    }

/* Breadcrumbs */
.breadcrumbs{
    text-align: center;
    color: #DCA911;
    font-size: 1rem;
    padding: 10px 0 10px 0;
    margin-bottom: 50px;
    }

/* Archive Blog */
.list-blog{
    display: grid;
    gap: 1rem;
    }
.list-blog article{
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0.5em 1em -0.125em rgba(10,10,10,.1), 0 0 0 1px rgba(10,10,10,.02);
    line-height: 0.8;
    }
.list-blog article a{
    display: inline-block;
    position: relative;
    text-align: center;
    }
.list-blog article a span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #3333338a;
    line-height: 1.7rem;
    font-size: 1.2rem;
    }
.list-blog article a:hover span{
    background: #ff5101af;
    width: 100%;
    height: 100%;
    }

/* Inline Post Nav */
.inline-post-nav{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    }
.inline-post-nav div:first-child{
    margin-right: auto;
    }

/* Header Top Bar */
.header-top{
    background-color: #ffd900;
    padding: 0.6rem;
    color: #222;
    order: -1;
    z-index: 2;
    text-align: center;
    font-size: 20px;
    background-image: radial-gradient(#35353521 1px, transparent 0);
    background-size: 5px 5px;
    background-position: -13px -3px;
    }
.header-top a{
    color: #ff2d97;
    text-decoration: underline;
    }

/* Header Top SM */
.header-top-sm  a{
    margin: 0 7px 0 7px;
    }
.header-top-sm{
    display: none;
    }

/* Home Heading */
.home-heading{
    padding: 5rem 1rem;
    }
.home-heading h1{
    text-transform: uppercase;
    }

/* Footer */
footer{
    margin-top: 3rem;
    text-align: center;
    background: #131418;
    position: relative;
    padding: 20px 0 20px 0 !important;
    font-size: 13px;
    line-height: 140%;
    color: #ccc;
    }   


/* Larger than mobile screen */
@media (min-width: 40.0rem) {
.logo{
    margin-top: 10px;
    }
.header-top-contact a {
    margin-left: 10px;
    }
h1 {
    font-size: 2em;
    }
}

/* Larger than tablet screen */
@media (min-width: 68.0rem) {
#menu .main-menu {
    display: block;
    float: right;
  }
  #menu a {
    font-weight: bold;
    padding: 1.2em;
    }
    #menu ul li ul li a{
    padding: 1.2em 1.5em;
    }
  #toggle-menu, 
  #menu label.drop-icon {
    display: none;
  }
  #menu ul span.drop-icon {
    display: inline-block;
    color: #DCA911;
  }
  #menu li {
    float: left;
    border-width: 0 1px 0 0;
  }
  #menu .sub-menu li {
    float: none;
  }
  #menu .sub-menu {
    border-width: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 13em;
    z-index: 3000;
    background-color: #333 !important;
  }
  #menu .sub-menu, 
  #menu input[type="checkbox"]:checked + .sub-menu {
    display: none;
  }
  #menu .sub-menu li {
    border-width: 0 0 1px;
  }
  #menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
  }
 #menu .sub-menu .drop-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
  }
  #menu li:hover > input[type="checkbox"] + .sub-menu {
    display: block;
  }
  .footer-credits{
    display: flex;
  }
  .hero{
    padding: 18rem 1rem;
    }
}
