/*
font-family: 'Open Sans', sans-serif;
font-family: 'Dosis', sans-serif;
font-family: 'Montserrat', sans-serif;
*/

* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

a, h1, h2, h3, h4, h5, h6 {
    font-family: 'Dosis', sans-serif;
}

nav {
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2f4364;
}

#logo {
    display: inline-block;
    font-size: 24px;
    color: #fff;
    margin-left: 15px;
    padding: 7px;
    border: 3px solid #fff;
}


.showTime{
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

#topSocial{
    margin-right: 15px;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
}

a:active {
    
}

a:visited {
    
}

h1 {
    font-size: 72px;
    font-weight: bolder;
}

/*
.sectionHeader {
    margin: 75px 0px;
    text-align: center;
    color: #13519C;
    letter-spacing: .5em;
    
}
*/

#about {
    width: 100%;
    margin: auto;
}

p {
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
    font-size: 18px;
}

.timeline {
    white-space:nowrap;
    overflow-x: scroll;
    padding:30px 0 25px 0;
    position:relative;
    margin-bottom: 25px;
}

.entry {
    display:inline-block;
    vertical-align:top;
    background:#2f4364;
    color:#fff;
    padding:10px;
    font-size:12px;
    text-align:center;
    position:relative;
    border-top:4px solid #06182E;
    border-radius:3px;
    min-width:200px;
    max-width:500px;
}

.entry img {
    display:block;
    max-width:100%;
    height:auto;
    margin-bottom:10px;
}

.entry:after {
    content:'';
    display:block;
    background:#eee;
    width:7px;
    height:7px;
    border-radius:6px;
    border:3px solid #06182E;
    position:absolute;
    left:50%;
    top:-30px;
    margin-left:-6px;
}

.entry:before {
    content:'';
    display:block;
    background:#06182E;
    width:5px;
    height:20px;
    position:absolute;
    left:50%;
    top:-20px;
    margin-left:-2px;
}

.entry h1 {
    color:#fff;
    font-size:18px;
    font-family: 'Dosis', sans-serif;
    font-weight:bold;
    margin-bottom:10px;
}

.entry h2 {
    letter-spacing:.2em;
    margin-bottom:10px;
    font-size:14px;
}

.bar {
    height:4px;
    background:#eee;
    width:100%;
    position:relative;
    top:13px;
    left:0;
}









/*     CONTESTANT STYLES     */
#contestants, #judges {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 90%;
    margin: auto;
}

.profile h3 {
    text-align: center;
    margin: 10px 0px;
}

small {
    font-variant: small-caps;
}



/*     SPONSOR STYLES     */
#sponsors {
    width: 100%;
    overflow: hidden;
    margin: 50px 0px;
}

#sponsors img {
    height: 150px;
}

.photobanner {
 height: 150px;
 width: 5700px;
}

/*keyframe animations*/
.first {
    -webkit-animation: bannermove 60s linear infinite;
    -moz-animation: bannermove 60s linear infinite;
    -ms-animation: bannermove 60s linear infinite;
    -o-animation: bannermove 60s linear infinite;
    animation: bannermove 60s linear infinite;
}
 
@keyframes "bannermove" {
 0% {
    margin-left: 0px;
 }
 100% {
    margin-left: -5690px;
 }
 
}
 
@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -5690px;
 }
 
}
 
@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -5690px;
 }
 
}
 
@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -5690px;
 }
 
}
 
@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -5690px;
 }
 
}

footer {
    width: 100%;
    background-color: #2f4364;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
}

footer div {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer h4 {
    color: white;
    margin-bottom: 5px;
}

.fa {
  padding: 10px;
  font-size: 30px;
  width: 35px;
  height: 35px;
  text-align: center;
  text-decoration: none;
  margin: 5px 5px;
  color: #2f4364;
  background-color: #fff;
}

.fa:hover {
    opacity: 0.7;
}

#developed{
    width: 100%;
    display: flex;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #fff;
    font-variant: small-caps;
}

#developed img{
    width: 80px;
}



/* STYLES FOR COMING SOON PAGES */

.placeholder{
    height: 100vh;
    background-image: url('images/teeTime/blueSky.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.soon{
    width: 100%;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    /*mix-blend-mode: multiply;*/
}

