@charset "UTF-8";
/* CSS Document */

.featured-prop-title {
	text-align: center;
}

.btn-outline-success {
  color: #fff;/*text color*/
  border-color: #00305b;
	background-color: #00305b;
}

.btn-outline-success:hover {
    color: #FFFFFF;
    background-color: #01539D;
    border-color: #00305B;
}
/*code below changes color of box shadow AFTER clicking button*/
.btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem #a28b77;
    -webkit-box-shadow: 0 0 0 0.2rem #a28b77;
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #FFFFFF;
    background-color: transparent;
}
/*code below changes colors in ACTIVE CLICK STATE*/
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
    color: #fff;/*white text*/
    background-color: #A28B77;
    border-color: #A28B77;
}
/*code below changes color of box shadow in CLICK STATE*/
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #00305B;
    -webkit-box-shadow: 0 0 0 0.2rem #00305B;
}
/*See notes for btn-success-outline, which apply to btn-primary below also*/
.btn-primary {
  color: #fff;
  background-color: #00305b;
  border-color: #00305b;
}

.btn-primary:hover {
  	color: #FFFFFF;
    background-color: #01539D;
    border-color: #00305B;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem #a28b77;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #00305B;
  border-color: #00305B;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;/*white text*/
    background-color: #A28B77;
    border-color: #A28B77;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem #00305B;
}

@media screen and (max-width: 360px) { /*this code prevents hamburger icon from stacking below logo on viewports over 300 px wide. IPhone 5 is 320 px wide*/
  .navlogo {
    max-width:200px;
    max-height:41px;
    width: auto;
    height: auto;
	}
}

.carousel-caption {
	text-shadow: 2px 2px 8px #000000;
}

.carousel-no-padding-left-right {
	padding-left: 0px;
	padding-right: 0px;
}


@media screen and (min-width: 1057px) { /*increases horiz. margins on nav buttons to fill space on larger viewports*/
	.nav-link {
    margin: 0rem 1rem; 
}
}

.bottom-nav-link { /*same as nav-link in bootstrap css file*/
	padding: 0.5rem 1rem;
}

.bluetext {
	color: #00305B;
	font-weight: 700;
}
.nav-link {
	color: #00305B;
	font-weight: 700;
}
/*code below changes HOVER color of nav link text*/
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item:hover .nav-link {
    color: #a28b77;
}
.navbar-light .navbar-nav .nav-link {
    color: #00305B;
	font-weight: 700;
}
.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
    color: #00305B;
	font-weight: 900;
}
.google-searchbar-width {
	width: 300px;
}
@media screen and (min-width: 500px) { /*makes other news div hidden on bigger viewports*/
	.other-news {
		display: none;
	}
}

@media screen and (max-width: 768px) { /*hides jump here text  on viewports 768w and under*/
	.click-here-to-jump {
		display: none;
	}
}

