

.jumbotrontext {
	margin-top: 230px;
}

.jumbotrontext h4 {
  font-family: "BadScript-Regular";
}

a {
  font-family: comic sans ms;
}

section {
	padding-top: 20px;
}

h2 {
	font-family: Raleway;
  letter-spacing: 9px;
}

* {
  transition: all 250ms ease-in-out;
}

.block {
  font-family: "BadScript-Regular", serif;
}
.block .citation {
  font-size: 40px;
  line-height: 40px;
}
.block .author {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 35px;
  transform: translateY(-50px);
  opacity: 0;
}

.second {
  position: relative;
}
.second .author {
  border-top: 1px solid;
  border-bottom: 1px solid;
  width: 150px;
  margin: 0 auto;
  position: absolute;
  transform: translateX(30%);
  left: 30%;
  right: 30%;
  top: 0;
}
.second:hover .citation {
  transform: scale(1.2);
  letter-spacing: 1px;
  opacity: 0.1;
}
.second:hover .author {
  opacity: 1;
  font-weight: bold;
  transform: translateX(-30%);
  width: 180px;
}

.third {
  position: relative;
}
.third .citation {
  transform: translateX(0);
}
.third .author {
  position: relative;
  right: 0;
  opacity: 0;
}
.third:hover .citation {
  transform: translateX(-200px);
}
.third:hover .author {
  right: -200px;
  opacity: 1;
}

.fourth {
  position: relative;
}
.fourth .author {
  opacity: 0;
  transform: translateY(-50px);
}
.fourth:hover .citation {
  opacity: 0;
  transform: translateY(10px);
}
.fourth:hover .author {
  opacity: 1;
  transform: translateY(-30px);
}

.card-img {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #1A1922;
}
.card-img:hover .overlay {
  opacity: 0.6;
}

.text {
  color: white;
  font-size: 25px;
  font-family: "BadScript-Regular";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

body {
	background-color: #eee;
}

.contacts hr {
	width: 100px;
	padding-bottom: 50px;
}

input[type=text] {
  border: 3px solid white;
  border-radius: 4px;
  background:none;
}

.select select {
  border: 3px solid white;
  background:none;
}

.form textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 3px solid white;
  background:none;
}

.btn {
  background-color: #444;
  border: none;
  width: 92%;
  border-radius: 8px;
  font-family: 'Cinzel';
  color: white;
  padding: 8px 20px;
  text-align: center;
  font-size: 16px;
  margin-left: 100px;
  text-decoration:none;
}

.btn:hover {
  background-color: #ededed;
  color: #564B6A;
}

footer {
	background-color: #556987;
}

footer p {
	padding-top: 40px;
	font-family: Helvetica;
	color: white;
	text-align:center;
}

/* width */
::-webkit-scrollbar {
  width: 13px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #A8A7B4; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #1E1C39; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #E6E7ED; 
}