.cin-event-container{
max-width:900px;
margin:auto;
padding:40px 20px;
}

.cin-event-image img{
width:100%;
border-radius:12px;
margin-bottom:30px;
}

.cin-event-title{
font-size:42px;
margin-bottom:20px;
}

.cin-event-meta{
margin-bottom:30px;
font-size:18px;
}

.cin-event-content{
font-size:18px;
line-height:1.7;
}

.cin-event-register a{
display:inline-block;
margin-top:30px;
padding:14px 28px;
background:#40499c;
color:white;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.events-container{
    width:100%;
}

.event {
    margin: 1.3%;
    float: left;
    width: 17%;
    border: none;
    border-radius: 20px;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
    text-align: left;
    font-family: Montserrat;
    min-height: 400px;
    background-color: white;
    padding-bottom: 20px;
    transition: transform .3s ease-in-out;
}

.event:hover{
    transform: scale(1.05);
}

.image img{
    width:100%;
    height:200px;
    object-fit:cover;
    object-position:center;
    border-radius:20px 20px 0 0;
}

.event-text{
    float:left;
    width:100%;
    font-weight:bold;
    font-family:Montserrat;
    padding-top:5%;
    text-align:center;
}

.event-info{
    font-weight:650;
    font-size:1.1em;
    color:black;
    line-height:1.5;
}

.event-name{
    font-size:1.7em;
    font-weight:750;
    color:#000;
}

@media screen and (max-width:600px){

    .events-container{
        height:auto;
        clear:both;
    }

    .event{
        width:100%;
        margin:0 auto 20px;
        float:none;
        height:auto;
    }

    .event-name{
        font-size:2.2em !important;
    }

    .event-info{
        font-size:1.2em;
    }

}

