
@font-face {
    font-family: 'BlackChancery';
    src: url('./fonts/BlackChancery.woff2') format('woff2'),
        url('./fonts/BlackChancery.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto Th';
    src: url('./fonts/Roboto-Thin.woff2') format('woff2'),
        url('./fonts/Roboto-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto Light';
    src: url('./fonts/Roboto-Light.woff2') format('woff2'),
        url('./fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed Light";
  src: url("./fonts/RobotoCondensed-Light.woff2") format("woff2"),
    url("./fonts/RobotoCondensed-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* BASE STYLES */
* {
  box-sizing: border-box;
}
html {
  font-family: "Roboto Condensed Light";
  color: whitesmoke;
}
body {
	background-color: #171414;
  height: 100%;
  margin: 0;
  padding: 0;

}
svg {
    fill: white;
    vertical-align: middle;
}
a {
  color: #ff5b52;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  text-decoration: underline;
  font-weight: bold;
  color: #fc6d65;
}
.row::after {
  content: "";
  clear: both;
  display: table;
}
[class*="col-"] {
  float: left;
  padding: 15px;
}
h4 {
  margin: 0em 0em;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 95.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #171414; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #FF3D3D;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ff5b52; 
}

/*#*/

/* CONTENT STYLES */
.content {
  color: #d4d4d4 !important;
/*	background-color: #1a1818;*/
  overflow: hidden;
  padding: 3em 0em;
  margin: auto auto;
  /* z-index: 100; */
}
.contain {
  /*margin: 0em 20%;*/
  /*width: 100%;*/
  float: none;
  overflow-wrap: anywhere;
}
.contain h1 {
  font-size: 1.5em;
  color: white;
}
.contain #headtitle {
  font-size: 2em;
  color: white;
  margin: -0.2em 0em;
  /*font-family: BlackChancery;*/
}
@media only screen and (max-width: 400px) {
  .contain {margin: 0em 0em !important;}
}
@media only screen and (max-width: 700px) {
  .contain {margin: 0em 1em !important;}
}
@media only screen and (min-width: 700px) {
  .contain {margin: 0em 5% !important;}
}
@media only screen and (min-width: 1000px) {
  .contain {margin: 0em 20% !important;}
}
.hr-bar hr {
    background-color: #1F1817;
  border: none;
  height: 0.1em;
}
.nav-contain h1 {
  margin: 5px 0px
}
.nav-contain p {
  margin: 5px 0px
}




/* HEADER STYLES */
.header {
  width: 100%;
  padding-top:10%;
  padding-bottom: 20%;
  text-align: center;
  position: relative;
}
.header .header-imgs {
  background-color: #171414;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.header .header-imgs img {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
    z-index: -10;
}
.header-imgs img {
  transition: 0.5s;
}
.header h1, .header h3, .header button {
  transition: 0.7s;
}
.header-imgs::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}
.header h1 {
	font-size: 4.7em;
	font-family: BlackChancery;
  color: white;
	text-shadow: 3px 3px 13px #1c1c1c;
  /* z-index: 10; */
  position: relative;
}
.header h3 {
  color: whitesmoke;
  font-family: "Roboto Condensed Light";
  font-size: 1.2em;
	text-shadow: 3px 3px 13px #1c1c1c;
  margin-top: -2.3em;
   position: relative;
}
#navbar {
  overflow: hidden;
  background-color: #171414;
  margin: auto;
}
#navbar a {
  margin: auto;
  display: block;
  color: #938f8f;
  text-align: center;
  padding: 0.2em 1.3em;
  text-decoration: none;
  font-size: 1.3em;
}
#navbar .left {
  float: left;
}
#navbar .right {
  float: right;
}
#navbar a:hover {
  background-color: #2E1F1B;
  color: white;
}
#navbar a.active {
  background-color: #FF572E;
  color: white;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.sticky + .content {
  padding-top: 60px;
}
@media only screen and (max-width: 500px)  {
  .header h1 {
    font-size: 2.1em;
  }
  .header h3 {
    font-size: 0.7em;
    margin-top: -2em;
  }

}@media only screen and (min-width: 2000px)  {
  .header h1 {
    font-size: 9em;
  }
  .header h3 {
    font-size: 3em;
    margin-top: -2em;

  }
}
#dailyDescription p{
  margin: 0.8em 0em;
}
#dailyDescription button {
  /*padding: 0.2em 0.2em;*/
}
#caption h1{
  margin: 0.5em 0em;
}






/* FOOTER SYLES */
.footer {
  padding-top: 5em;
  padding-bottom: 3em;
  position: relative;
}
.footer p {
  color: #938f8f;
  font-size: 0.8em;
  line-height: 0.5em;
}
.footer svg {
  fill: #F33F35;
}








/*BUTTON STYLES*/
.btn {
  font: "Roboto Condensed Light";
  background-color: #2E1F1B;
  border: none;
  color: white;
  padding: 0.5em 0.5em;
  cursor: pointer;
  font-size: 0.8em;
  border-radius: 0.25rem;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;  
  position: relative;
}
.btn:hover {
  -webkit-box-shadow:inset 0px 0px 0px 1px #fff;
  -moz-box-shadow:inset 0px 0px 0px 1px #fff;
  box-shadow:inset 0px 0px 0px 1px #fff;
}
.btn:active {
  background-color: #4a312b;
}
.btn-side {
  background-color: #F33F35;
  width: 100%;
}
.btn-side:active {
  background-color: #F33F35;
}
.btn-red {
  background-color: #F33F35;
  font-size: 0.6em !important;
}
.btn-red2 {
  background-color: #F33F35;
  font-size: 0.8em !important;
  padding: 0.5em 2em;
}
.btn-darker {
	background-color: #C81D3D;
}
.btn-darker:active {
	background-color: #C81D3D;
}
.svgIcon {
  margin-right: 0.3em;
}
.link-a {
  cursor: pointer;
}



/* # CLOCK STYLE */
.clock span{
  text-decoration: none;
  font-size: 0.8em !important;
  font-family: "Roboto Condensed Light" !important;
}


/* IMAGE STYLES */
.image-fit {
  object-fit: contain;
  width: 100%;
  height: auto;
}
.image-fit2 {
  object-fit: contain;
  width: auto;
  height: 100%;
}

/* TOOLS STYLES */
.font-chancery {
  font-family: "BlackChancery" !important;
}
.margin-y-mini {
  margin: 0.5em 0;
}
.margin-y-mini2 {
  margin: 0.2em 0;
}
.margin-y-medium {
  margin: 5em 0;
}
.center {
  text-align: center;
  margin: auto;
}
.left {
  text-align:  left;
}
.right {
  text-align:  right;
}
.overlay-red {
  background-color: #f33e35; /* Black w/ opacity */
  border-radius: 0.25rem;
}
.overlay-red .image-fit {
  top: 0;
  left: 0;
  opacity: 0.7;
  transition: 0.4s;
  border-radius: 0.25rem;
}
.overlay-red:hover .image-fit {
  background-color: transparent;
  /*background-color: #F33F35;*/
  opacity: 1;
  cursor: pointer;
}
.smallfont {
  font-size: 0.8em !important;
}




/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}