@font-face {
    font-family: "FranklinGothicBook";
    src: url("../fonts/franklingothic-book-webfont.woff") format("woff");
}

@font-face {
    font-family: "FranklinGothicDemi";
    src: url("../fonts/franklingothic-demi-webfont.woff") format("woff");
}

 
 /* The Overlay (background) */
.intro-overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: #2C3B86;
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 1s; /* 1 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.intro-overlay-content {
    /* position: relative; */
    top: 5%; /* 5% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 0px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.intro-overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 16px;
    color: rgb(146, 175, 221);
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
	overflow-x: hidden;
	white-space: nowrap;
}

/* When you mouse over the navigation links, change their color */
.intro-overlay a:hover, .intro-overlay a:focus {
    color: white;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .intro-overlay a {font-size: 20px}
    .intro-overlay .intro-closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

.intro-overlay .intro-title {
	color: white;
	font-size: 20px;
}

.intro-ctcblurb {
	color: #E7DFC9;
	font-size: 3.3vh;
	transition: 1s;
	font-family: "FranklinGothicDemi", Verdana, sans-serif;
	position:relative;
	text-align: center;
	transition: 1s;
	margin:0px;
	padding:0.25%;
	right:100vw;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  max-height: 250px;
  position: absolute;
  top: 0;
  margin: auto;
  overflow: hidden;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}