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

@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Cormorant+Garamond&display=swap');

html,body {
	height: 100%;
}
body {
	font-family: 'Cormorant Garamond', serif;
	color: #000;
	display: flex;
	flex-direction: column;
}
a:link {
	color: #df7003;
}
a:visted {
	color: #666;
}
a:hover {
	color: #666;
}
.header {
	
}
.menu-bar {
	background-color: #df7003;
	font-family: 'Cinzel', serif;
	padding: 5px 0;
}
.logo {
	max-width: 200px;
	padding: 10px 0;
}
.header-img {
	min-height: 700px;
	background-image: url("../images/team-header.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	
}
.content {
	flex-grow: 1;
}
.headline {
	font-family: 'Cinzel', serif;
	font-size: 25px;
	color: #df7003;
	text-transform: uppercase;
}
.rep-list {
	margin-bottom: 20px;
}



/* Slideshow */
.img-container {
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-bottom: 40px;
}

.img-container img {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.img-container img.next {
  opacity: 1;
  z-index: 1;
}

.img-container img.prev {
  opacity: 1;
  z-index: 2;
}

.img-container img.fade-out {
  opacity: 0;
  transition: visibility 0s .5s, opacity .5s linear;
  visibility: hidden;
}


/* Contact Form */
#contact-form label {
	font-family: 'Cinzel', serif !important;
	font-size: 13px;
	text-transform: uppercase;
}
.help-block {
	color: #333;
	font-size: 14px;
	font-style: italic;
}


/* Staff */
.directory-photo {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	min-height: 400px;
	margin-bottom: 10px;
}
.directory-name {
	font-family: 'Cinzel', serif;
	font-size: 20px;
	color: #df7003;
}
.directory-title {
	color: #666;
	font-style: italic;
	font-size: 15px;
	margin-top: -5px;
}
.modal-contact span {
	color: #df7003;
	font-size: 12px;
}
.modal-cv {
	border-top: solid 1px #df7003;
	border-left: none;
}

/* Footer */
.footer {
	font-family: 'Cinzel', serif;
	font-size: 12px;
	background-color: #333;
	color: #fff;
	margin-top: 40px;
	padding-top: 10px;
}
.footer a {
	color: #fff;
}
.bottombar {
	background-color: #000;
	padding: 3px 0;
	color: #fff;
	font-size: 12px;
	margin-top: 10px;
}

/* Bootstrap Overrides */
.navbar {
	padding: 0;
}
.nav-item {
	margin-right: auto;
}
.nav-item:last-of-type {
	margin-right: 0;
}
.nav-link {
	color: #fff !important;
}
.btn-primary {
	background-color: #df7003;
	color: #fff !important;
	font-family: 'Cinzel', serif;
	font-size: 14px;
	border: none;
	border-radius: 0px;
	padding: 3px 25px;
}
.btn-primary:hover {
	background-color: #000;
}
.btn-primary.disabled, .btn-primary:disabled {
	background-color: #df7003 !important;
}
.btn-secondary {
	background-color: #000;
	color: #fff !important;
	font-family: 'Cinzel', serif;
	font-size: 14px;
	border: none;
	border-radius: 0px;
	padding: 3px 25px;
}
.navbar-toggler {
	border-color: #df7003;
}
.navbar-toggler-icon {
            background-image: url(
"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(223, 112, 3, 1.0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        }

.modal-header {
	background-color: #df7003;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Cinzel', serif;
}
button.close {
	color: #fff;
	text-shadow: none;
}
.close:hover {
	color: #fff;
}


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	.logo {
	max-width: 350px;
}
	.img-container {
  height: 300px;
}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.img-container {
  height: 400px;
}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.navbar-toggler {
		display: none;
	}
		.img-container {
  height: 500px;
}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	.modal-cv {
	border-left: solid 1px #df7003;
		border-top: none;
}
		.img-container {
  height: 600px;
}
}