.nav-events{
	border-bottom:none;
	margin-bottom:30px;
}

.nav-events .nav-link{
	background:#BBAFA3;
	color:#fff;
	line-height:1.0;
	margin-right:10px;
	font-size:16px;
	border-top-left-radius:0px;
	border-top-right-radius:0px;
	min-width: 260px;
    text-align: center;
	margin-bottom: 5px;
}

.nav-events .nav-item:nth-child(2) a{
	background: #db7979;
}
.nav-events .nav-item:nth-child(3) a{
	background: #BADA55;
}
.nav-events .nav-item:nth-child(4) a{
	background: #FCC065;
}
.nav-events .nav-link:hover{
	background:#AE9962;
	color:#fff;
}


.nav-events .nav-link.active{
	background:#AE9962;
	color:#fff;
	min-width: 260px;
    text-align: center;
	margin-bottom: 5px;
}

.event-card{
	position:relative;
	
}

.event-content{
	position:relative;
	height:100%;
	border:1px solid #BBAFA3;
	padding-left:10px;
	padding-top:10px;
	padding-right:10px;
	padding-bottom:68px;
	background:#BBAFA3;
	color:#fff;
}

.event-content h3{
	color:#fff;
	text-align:center;
}

.group-events{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	padding-left:10px;
	padding-bottom:10px;
}

.group-events button:nth-child(1){
	margin-right:5px;
}

.btn-event{
	background:transparent;
	transition:all .3s;
	border:2px solid #fff;
	color:#fff;
	text-transform:uppercase;
	font-size:16px;
	border-radius:0px;
}

.btn-event:hover{
	background:#fff;
	color:#BBAFA3;
}

/* new event style */
.event {
  width: 300px;
  height: 250px;
  background: #fff;
  border: 1px solid #CCC;
  border-radius: 2px;
  margin: 30px 25px;
}
.event:before {
    content: '';
    display: block;
    width: 295px;
    height: 240px;
    background: #fff;
    border: 1px solid #CCC;
    border-radius: 2px;
    transform: rotate(2deg);
    position: relative;
    top: 12px;
    left: 2px;
    z-index: -1;
}
.event:after {
    content: '';
    display: block;
    width: 295px;
    height: 75px;
    background: #fff;
    border: 1px solid #CCC;
    border-radius: 2px;
    transform: rotate(-2deg);
    position: relative;
    top: -335px;
    z-index: -2;
}
.event > span {
  display: block;
  width: 30px;
  background: #232323;  
  position: relative;
    top: -220px;
  left: -15px;
  
  /* Text */
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  text-align: right;
}
.event > .info {
  display: inline-block;
  position: relative;
    top: -240px;
  left: 40px;
  
  /* Text */
  color: #9f7d02;
  font-weight: 600;
  line-height: 25px;
}

.event > .info-text {
display: inline-block;
    position: relative;
    top: -234px;
    left: 25px;
    padding-right: 50px;
    text-align: justify;
}

.event > .info:first-line {
  text-transform: uppercase;
  font-size: 12px;
  margin: 10px 0 0 0;
  font-weight: 700;
  color: #333;
}

.event > .price {
  display: inline-block;
  width: 60px;
  position: relative;
  top: -85px;
  left: 115px; 
  
  /* Text */
  color: #E35354;
  text-align: center;
  font-weight: 700;
}

@media(max-width: 1000px){
	.event {
    width: 85%;
	}
	.event:before {
    width: 100%;
	}
	.event:after {
    width: 100%;
	}
	
}

