/* DOCTYPE css */

/*-- 

Broncos Orange:
HEX: #f05223

White Smoke
HEX: #E5E5E5

Gray:
HEX: #c8c8c8

Demi-Gray:
HEX: #696969

Black
HEX: #191919

--*/
 
/*---------- Body ----------*/

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

p {
    color: #696969;
    font-family: 'Open Sans', sans-serif;
    font-size: 12pt;
    line-height: 26px;
    margin: 50px 0px 20px 0px;
    padding: 0px 0px 0px 0px;
}

.title {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    text-decoration: none;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.title{
    font-size: 18pt;
    text-align: center;
    line-height: 34pt;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.title {
    font-size: 20pt;
    text-align: left;
    line-height: 30pt;
    margin-left: 15px;
}
}

.sub_title {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    text-decoration: none;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.sub_title{
    font-size: 16pt;
    text-align: center;
    line-height: 18pt;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.sub_title {
    font-size: 18pt;
    text-align: left;
    line-height: 24pt;
    margin-left: 15px;
}
}

.hidden {
    display: none;
}


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

.background_black {
    background-color: black;
}

.background_white {
    background-color: white;
}

.background_grey {
    background-color: #E5E5E5;
}

.color {
    background-color: coral;
}


/*---------- Brand Mark ----------*/

.logo {
    position: absolute;
    display: inline;
    position: relative;
    height: 50px;
    width: auto;
    margin-top: 5px;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.logo {
	margin-left: 22px;
}
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) {
.logo {
	margin-left: 82px;
}
}



/*---------- Header / Global Navigation ----------*/

header {
    background: white;
    position: fixed;
    z-index: 10;
    height: 40px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

nav ul {
    display: inline;
    margin: 0px 0px 0px 20px;
    padding: 0px 0px 0px 0px;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0px 0px 18px 0px;
    padding: 0px 40px 0px 0px;
}

nav ul li a {
    color: white;
    display: table;
}


/*---------- Footer ----------*/

.footer {
    position:fixed;
    bottom: 0px;
    width: 100%;
    height: 40px; 
    background:#fff;
}

.grid_footer {
    font-size: 20pt;  
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    bottom: 0px;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.grid_footer {  
    grid-template-rows: repeat(auto, 50px);
    padding: 0px 10px;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.grid_footer {  
    grid-template-rows: repeat(auto, 100px);
    padding: 0px 50px;
}
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) {
.grid_footer {  
    grid-template-rows: repeat(auto, 200px);
    padding: 0px 200px;
}
}

.footer_buff {
    margin-bottom: 80px;
}


/*---------- Button States ----------*/

/* resting*/
.button_states {
    font-family: 'Open Sans', sans-serif;
    font-size: 12pt;
    font-weight: normal;
    color: #696969;
    letter-spacing: 6px;
}

/* unvisited link */
.button_states:link {
    color: #696969;
    text-decoration: none;
}

/* visited link */
.button_states:visited {
    color: #696969;
     text-decoration: none;
}

/* mouse over link */
.button_states:hover {
    color: #f05223;
    text-decoration: none;
}

/* selected link */
.button_states:active {
    color: white;
    /*background: #f05223;*/
}


/*---------- Rollover State ----------*/

ul.img-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    letter-spacing: 4px;
    font-weight: bold;
}

ul.img-list li {
    display: inline-block;
    height: 250px;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

span.text-content {
    font-size: 20pt;
    line-height: 150%;
    background: rgba(0,0,0,0.5);
    color: white;
    cursor: pointer;
    display: table;
    height: 250px;
    width: 100%;
    left: 0;
    position: absolute;
    top: 0;
}

span.text-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

span.text-content {
  background: rgba(0,0,0,0.5);
  color: white;
  cursor: pointer;
  display: table;
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
  opacity: 0;
}

ul.img-list li:hover span.text-content {
  opacity: 1;
}

span.text-content {
    background: rgba(0,0,0,0.5);
    background-image: radial-gradient(rgba(255,255,255,0.1), rgba(0,0,0,.8));
    color: white;
    text-shadow: 2px 2px #FF4713;
    cursor: pointer;
    display: table;
    height: 250px;
    width: 100%;
    left: 0;
    position: absolute;
    top: 0;
    opacity: 0;
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    -o-transition: opacity 500ms;
    transition: opacity 500ms;
}


/*---------- Grids & Columns ----------*/

.row {
	width:100%;
	box-sizing: border-box;
}

.row:after {
	clear: both;
	display: block;
}

.col {
	float: left;
	padding: 0%;
}

.col:first-child {
	margin-left: 0%;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.col {
	width: 100%;
	margin-left: 0%;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.col {
	width: 50%;
}
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) {
 .col {
	margin-left: 1.5%;
}
}
    
.col-1-of-12 {
	width: 6.958333333333334%;
}
.col-2-of-12 {
	width: 15.416666666666668%;
}
.col-3-of-12 {
	width: 23.875%;
}
.col-4-of-12 {
	width: 32.333333333333336%;
}
.col-5-of-12 {
	width: 40.79166666666667%;
}
.col-6-of-12 {
	width: 49.25000000000001%;
}
.col-7-of-12 {
	width: 57.70833333333334%;
}
.col-8-of-12 {
	width: 66.16666666666667%;
}
.col-9-of-12 {
	width: 74.625%;
}
.col-10-of-12 {
	width: 83.08333333333333%;
}
.col-11-of-12 {
	width: 91.54166666666666%;
}
.col-12-of-12 {
	width: 99.99999999999999%;
}


/*---------- Grids & Columns (thumbnail) ----------*/

.thumbnail_container {  
    display: grid;  
    grid-gap: 5px 10px;
}

.thumbnail_container > div > img {
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.thumbnail_container {
	margin: 0px 40px;
    grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
    grid-template-rows: repeat(auto, 150px);
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.thumbnail_container {
	margin: 0px 40px;
    grid-template-columns: repeat(auto-fit, minmax(247px, 1fr));
    grid-template-rows: repeat(auto, 200px);
}
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) {
.thumbnail_container {
	margin: 0px 100px;
    grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
    grid-template-rows: repeat(auto, 200px);
}
}

.thumbnail_container_free {  
    display: grid;  
    grid-template-columns: 1fr;  
    grid-template-rows: 100%;
	margin: auto;
    padding: 0px 0px 0px 0px;
}

.thumbnail_container_free > div > img {
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
}

/*-- Grids & Columns (divisible by 2) --*/



.grid {  
    display: grid;
}

.grid > div > img {
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.grid {  
    grid-gap: 10px 10px;  
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(auto, 250px);
	margin: 0px 0px;
    padding: 0px 100px;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.grid {  
    grid-gap: 10px 10px;  
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: repeat(auto, 300px);
	margin: 0px 0px;
    padding: 0px 50px;
}
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) {
.grid {  
    grid-gap: 10px 10px;  
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(auto, 300px);
	margin: 0px 0px;
    padding: 0px 200px;
}
}


/*-- Grids & Columns (3 columns) --*/

.grid_container { 
    max-width:  800px;
    margin: 0 auto;
}

.grid3 {  
    display: grid;
}

.grid3 > div > img {
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.grid3 {  
    grid-gap: 5px 10px;  
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto, 150px);
    padding: 0px 10px;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.grid3 {  
    grid-gap: 5px 10px;  
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(auto, 200px);
    padding: 0px 10px;
    max-width: 820px;
    margin: 0 auto;
}
}


/*---------- Positioning ----------*/

#buffer_1 {
    z-index: -1;
    position: static;
    margin: 0px auto 0px auto;
    padding: 60px 0px 0px 0px;
    width: 100%;
}

#buffer_2 {
    z-index: -1;
    position: static;
    margin: 0px auto 0px auto;
    padding: 50px 0px 40px 0px;
    width: 100%;
    text-align: center;
}

.buffer_text {
    margin: auto;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.buffer_text {
    padding-top: 15px;
    margin-bottom: -5px;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.buffer_text {
    padding-top: 30px;
    margin-bottom: -10px;
    margin-left: -40px;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:1025px) {
.buffer_text {
    padding-top: 30px;
    margin-bottom: -10px;
    margin-left: -204px;
}
}

.buffer_running_text {
    padding: 0 15px;
}

.buffer_full {
    margin: auto;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.buffer_full {
    padding-top: 20px;
    padding-bottom: 0px;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.buffer_full {
    padding-top: 40px;
    padding-bottom: 0px;
}
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) {
 .buffer_full {
    padding-top: 80px;
    padding-bottom: 0px;
}
}

.buffer_images {
    padding: 0 0 0 0:
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.buffer_images {
    padding-top: 15px;
    padding-bottom: 0px;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.buffer_images {
    padding-top: 30px;
    padding-bottom: 0px;
}
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) {
 .buffer_images {
    padding-top: 30px;
    padding-bottom: 0px;
}
}

.fit {
    min-width: 100%;
    height: auto;
    margin: 0 auto;
}

.fit2 {
    max-width: 600px;
    margin: -36px auto -80px auto;
}

.fit22 {
    max-width: 1200px;
    margin: auto;
}

.fit3 {
    margin: 0px auto 0px auto;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.fit3 {
    display: none;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.fit3 {
    display: block;
}
}

.fit4 {
    margin: 40px auto 40px auto;
}

.closer {
    margin-bottom: -6px;
}

.more_close {
    margin-bottom: -44px;
}


/*---------- Videos ----------*/

.vid {
    max-width: 1000px;
    height: 600px;
    display: block;
    overflow: auto;
    margin: auto;

}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.vid {
    width: 100%;
    height: 300px;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.vid {
    width: 100%;
    height: 500px;
}
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) {
 .vid {
    width: 100%;
    height: 500px;
}
}

.buffer_content_vid {
    height: auto;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.buffer_content_vid {
    margin:0px 0px;
    padding: 10px 20px;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:641px) {
.buffer_content_vid {
    margin: 0px 0px;
    padding: 10px 20px;
}
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) {
 .buffer_content_vid {
    margin: 0px 0px;
    padding: 10px 20px;
}
}


/*---------- Rollover Thumbnails ----------*/

#thumbnail_tkb {
    height: 250px;
    width: 100%;
    background-image: url(images/01_tkb/tkb_thumbnail.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 40%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_cnl {
    height: 250px;
    width: 100%;
    background-image: url(images/02_c&l/c&l_thumbnail.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_bsa {
    height: 250px;
    width: 100%;
    background-image: url(images/03_bsa1920/bsa_thumbnail-01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_harlowe {
    height: 250px;
    width: 100%;
    background-image: url(images/04_harlow/harlowe_thumbnail.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_billo {
    height: 250px;
    width: 100%;
    background-image: url(images/05_billo/billo_thumbnail.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_cornwell {
    height: 250px;
    width: 100%;
    background-image: url(images/07_cornwell/cornwell_thumbnail.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_cpw {
    height: 250px;
    width: 100%;
    background-image: url(images/06_cpw/cpw_thumbnail.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_garage {
    height: 250px;
    width: 100%;
    background-image: url(images/08_garage/garage_thumbnail.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_campus {
    height: 250px;
    width: 100%;
    background-image: url(images/09_campus/campus_thumbnail.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_bike {
    height: 250px;
    width: 100%;
    background-image: url(images/10_bike/bike_thumbnail.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_other {
    height: 250px;
    width: 100%;
    background-image: url(images/other/cyberpunk_thumbnail.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}

#thumbnail_more {
    height: 250px;
    width: 100%;
    background-image: url(images/more.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    outline-color: none;
}


/*---------- About ----------*/

.text_container {  
    display: grid;  
    grid-gap: 5px 10px;  
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-rows: repeat(auto, 250px);
    max-width: 600px;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (min-width:320px) { 
.text_container {
	margin: 0px 20px;
    padding: 0px 0px;
}
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:660px) {
.text_container{
	margin: 0px auto;
    padding: 0px 0px 0px 0px;
}
}

#introduction_title_1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24pt;
    font-weight: bold;
    text-align: center;
    margin: 20px 0px 0px 0px;
    padding: 0px 0px 2px 0px;
    color: #696969;
}

#introduction_title_2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 16.3pt;
    font-weight: bold;
    text-align: center;
    margin: 0px 0px -2px 0px;
    padding: 0px 0px 0px 0px;
    color: #696969;
}

#introduction_title_3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 47pt;
    font-weight: bold;
    text-align: center;
    margin: 10px 0px;
    padding: 10px 0px;
    color: #f05223;
}

#introduction_line {
    height: 8px;
    color: #f05223;
    background-color: #f05223;
    border: none;
    max-width: 210px;
}

