.form-group label {
	color: #000;
	font-weight: 600;
}

.slider {
	position: relative;
	margin: 0 auto;
	overflow: hidden;
	height: 700px;
}

.slide {
	position: absolute;
	top: 0;
	width: 100%;
	
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 1s;
}

.slide>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

button {
	background: none;
	border: none;
}

button .fas {
	color: rgba(255, 255, 255, 0.5);
}

.btn-slide {
	position: absolute;
	top: 50%;
	z-index: 10;
	height: 5.5rem;
	width: 5.5rem;
	cursor: pointer;
}

.prev {
	left: 3rem;
	transform: translate(-50%, -50%);
}

.next {
	right: 3rem;
	transform: translate(50%, -50%);
}

.dots-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.dot {
	width: 25px;
	height: 5px;
	margin: 15px 5px;
	border-radius: 0.5rem;
	background: rgba(39, 39, 39, 0.5);
	cursor: pointer;
}

.dot.active {
	background: #272727;
}

.wrapper5 {
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 1;
}

.carousel {
	width: 100%;
	margin: 0px auto;
}

.slick-slide {
	margin: 10px;
}

.slick-slide img {
	width: 100%;
}

.slick-prev, .slick-next {
	background: #000;
	border-radius: 15px;
	border-color: transparent;
}


.news-slider-section .slick-slider .slick-next {
    right: 0;
}

.card {
	box-shadow: -3px 2px 8px 5px rgb(0 0 0/ 6%);
	background: #fff;
	border-radius: 25px;
}

.card-body {
	background: #fff;
	width: 100%;
	vertical-align: top;
}

.card-content {
	text-align: left;
	color: #333;
	padding: 15px;
}

.card-text {
	font-size: 14px;
	font-weight: 300;
}

.news-slider-section .slick-dots {
	width: auto;
	bottom: -60px !important;
}

ul.slick-dots .slick-active {
	background-color: #000;
	width: 25px;
	height: 5px;
}

.slick-dots li button {
	display: block;
	width: 26px;
	height: 5px;
	padding: 2px;
	cursor: pointer;
	color: transparent;
	border: 0;
	background: rgba(39, 39, 39, .5);
}

.slick-dots li button:before {
	font-size: 0 !important;
}

.slick-dots li:nth-child(4) {
	display: none;
}

.slick-dots li:nth-child(5) {
	display: none;
}

.slick-dots li:nth-child(6) {
	display: none;
}

.animatable {
  
  /* initially hide animatable objects */
  visibility: hidden;
  
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;   
  -moz-animation-play-state: paused;     
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;   
  animation-play-state: paused; 
}

/* show objects being animated */
.animated {
  visibility: visible;
  
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;

  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-40px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-40px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-40px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}




@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}
	50% {
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}

	50% {
		-moz-transform: scale(1.05);
	}

	70% {
		-moz-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}

	50% {
		-o-transform: scale(1.05);
	}

	70% {
		-o-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.animated.animationDelay{
	animation-delay:.1s;
	-webkit-animation-delay:.1s;
}
.animated.animationDelayMed{
	animation-delay:.1s;
	-webkit-animation-delay:.1s;
}
.animated.animationDelayLong{
	animation-delay:.1s;
	-webkit-animation-delay:.1s;
}

.animated.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}

.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}


/*  .navbar .active {
	color: #000000 !important;
	font-weight: bold !important;
} */