body{
	background-color: #000;
	color: white;
	/*max-width: 100vw;
	overflow-x: hidden;*/
}

img.animation{
	position: relative;
	animation-name: float;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
}

.c-link{
	position: relative;
	  top: 0;
	  transition: top ease 0.5s;
}

.c-link:hover{
	top: -10px;
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

@keyframes float{
	0%{
		left: 0px;
		top: 15px;
	}
	100%{
		left: 0px;
		top: -15px;
	}
}

.banner{
	background-image: url('../../images/Kerfin7-NEA-2214.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 100vh;
}

.text-banner{
	display: flex;
	justify-content: center;
	align-items: center;
/*	min-height: 100vh;*/
}

.c-font-one{
	font-family: Bahnschrift Condensed;
}

.c-font-two{
	font-family: Times New Roman;
	font-size: 60px;
}

/*.cont-1{
	background-image: url('../../../uploads/15185976_5581901.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cont-2{
	background-image: url('../../images/15694137_5619852.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cont-3{
	background-image: url('../../images/15517705_5630949.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cont-4{
	background-image: url('../../images/recovert.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}*/

.cont-5{
	background-image: url('../../images/15185976_5581901.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cont-1:hover, .cont-2:hover, .cont-3:hover, .cont-4:hover, .cont-5:hover{
	transform: scale(1.1);
}

.cover{
	background-color: rgba(0, 0, 0, 0.5);
	height: 100%;
}

.custom-title-cont{
	border-radius: 25px 25px 0px 0px;
	background-color: rgba(255, 255, 255, 0.2);
}

.custom-body-cont{
	border-radius: 0px 0px 25px 25px;
	background-color: rgba(255, 255, 255, 0.4);
	overflow-y: scroll;
/*	overflow-x: hidden;*/
	height: 300px;
}

ul{
	margin: 0;
	padding: 0;
}

ul.custom-list li{
/*	list-style-position: inside;*/
	color: green;
}

ul.custom-list span{
	color: white;
}

.c-border, .c-border:focus{
	border-radius: 10px;
	border: 1px solid grey;
}

input[type=search] {
	width: 130px;
	/*box-sizing: border-box;
	border: 2px solid #ccc;*/
	border-radius: 50px;
/*	font-size: 16px;*/
	background-color: white;
	background-image: url('../../images/searchh.png');
	background-size: 20px;
	background-position: 10px 10px; 
	background-repeat: no-repeat;
	padding: 5px 20px 5px 40px;
	-webkit-transition: width 0.4s ease-in-out;
	transition: width 1s ease-in-out;
}

	/* When the input field gets focus, change its width to 100% */
input[type=search]:focus {
	width: 100%;
}

.c-align{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.flip-box {
  background-color: transparent;
  /*width: 300px;
  height: 200px;*/
  border: 1px solid #f1f1f1;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-box-inner {
  position: relative;
  /*width: 100%;
  height: 100%;*/
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-front, .flip-box-back {
  position: absolute;
  /*width: 100%;
  height: 100%;*/
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-box-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-box-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}