html,body{
	height:100%;
}

.logo-color-activate {
	color:#FF652F;
}
.logo-color-oklahoma {
	color:#0E7BB3;
}
.logo-color-state {
	color:#000000;
}
.logo-color-red {
	color:#d22d16;
}
.logo-color-green {
	color:#3bff69;
}
.logo-color-dark-green {
	color:#32b350;
}
.logo-color-link {
	color:#d22d16;
}
.logo-color-link:hover {
	color:#0E7BB3;
}

.border-color-orange {
	border-color:#FF652F!important;
}
.border-color-blue {
	border-color:#0E7BB3!important;
}

.footer-color, .footer-color a {
	background-color:#77bfe2;
	color:#ffffff;
}

.activate-orange .nav-link {
	color:#ffffff;
	background-color:#FF652F;
	border-radius: 5px;
	margin:8px 2px;
	padding:0px;
}
.activate-orange .nav-link:hover {
	background-color:#0E7BB3;
	color:#ffffff;
}

.btn-search {
	color:#ffffff;
	background-color:#FF652F;
	border-radius: 5px;

}
.btn-search:hover {
	background-color:#0E7BB3;
	color:#ffffff;
}

.btn-action {
	color:#ffffff;
	background-color:#0E7BB3;
	border-radius: 5px;

}
.btn-action:hover {
	background-color:#21B3FF;
	color:#000000;
}

.cover-container {
	background-size: cover;
	xxxmin-height: 100%;
	padding: 0;
	position:relative;
}
.cover-container .container {
	position:relative;
	z-index:2;
}
.cover-container .img {
    margin-bottom: 0px;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    background-size: cover;
	background-position: center;
    overflow: hidden;
	position:absolute;
	top:0;left:0;
	z-index:0;
}

.logo-container {
	background: rgba(255, 255, 255, .6);
	border-radius: 6px;
	padding: 15px;
	margin: 15px;
}

.hero-img {
    width: 100%;
    height: 100%;
    background-size: cover;
	background-position: center;
    overflow: hidden;
}	

.carousel-caption
{
    text-shadow:
    -1px -1px 0 #000000,
    1px -1px 0 #000000,
    -1px 1px 0 #000000,
    1px 1px 0 #000000;  
}

.animate-in {
    -webkit-animation: fadeIn .3s ease-in;
    animation: fadeIn .3s ease-in;
}
.animate-out {
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
    opacity: 0;
}
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sponsor-container {
	position: relative;
	height: 100%;
	width: 100%;
}
.sponsor-background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #008CBA;
}
.sponsor-image {
	position: relative;
	background-color: white;
}
.sponsor-background:hover {
	opacity: 1;
}
.sponsor-text {
	position: absolute;
	top: 50%;
	/*left: 50%;*/
	transform: translate(0%, -50%);
}
