/******** banner ********/
.slider-banner {
	position: relative;
}

/* .overlay {
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 45%, rgba(0, 0, 0, 1));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
} */

.slider-banner .carousel-inner {
	position: relative;
	padding: 0;
	margin: 0;
	z-index: 1;
	overflow: hidden;
}

.slider-banner .carousel-inner .carousel-item {
	display: block;
	height: 100%;
	min-height: 1px;
}

.slider-banner .carousel-inner .carousel-item img {
	display: block;
	object-fit: cover;
	object-position: center center;
	height: 800px;
}

.slider-caption {
	position: absolute;
	bottom: 38%;
	left: 0;
	right: 0;
	z-index: 4;
}

.carousel-caption-info {
	color: #ffffff;
	text-align: left;
    /*font-family: "Bebas Neue", sans-serif;*/
    font-family: "Merriweather", serif;
	z-index: 1;

}

.carousel-caption-info h3 {
	display: block;
	color: #fff;
	font-size: 60px;
    line-height: 4rem;
	font-weight: 400;
    /*font-family: "Bebas Neue", sans-serif;*/
    font-family: "Merriweather", serif;
	text-shadow: 2px 2px #727C8F;
	text-align: center;
	font-style: italic;
}

.animated {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100px, 0, 0);
		transform: translate3d(100px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100px, 0, 0);
		transform: translate3d(100px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

.carousel-control-next {
	right: 0;
}

.carousel-control-prev {
	left: 0;
}

.carousel-control-next, .carousel-control-prev {
	position: absolute;
	top: 45%;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: #fff;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.8);
	width: 50px;
	height: 60px;
	border-radius: 0;
	border: 0;
	transition: opacity .15s ease;
	z-index: 9;
}

.callout {
	position: relative;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: inherit;
	height: 100%;
	text-align: start;
	z-index: 2;
} 

.search-container {
  width: 450px;
  display: block;
  margin: 0 auto;
}

input#search-bar {
  margin: 0 auto;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  font-size: 1.125rem;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  outline: none;
}
input#search-bar:focus {
  border: 1px solid #fff;
  transition: 0.35s ease;
  color: #505050;
}
input#search-bar:focus::-webkit-input-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}
input#search-bar:focus::-moz-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}
input#search-bar:focus:-ms-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}

.search-icon {
  position: relative;
  float: right;
  width: 24px;
  height: 24px;
  top: -40px;
  right: 20px;
  color: #3E4756;
  font-size: 24px;
}

.search-icon span {
  color: #3E4756;
  font-size: 24px;
}


