.events {
    width: 100%;
    min-width: 320px;
    padding: 1rem;
    margin: 0 auto;
    /* background-color: cadetblue; */
    margin-bottom: 2rem;


}

.events__inner {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: scroll;
    justify-content: left;
    margin-bottom: 2rem;
}

.events__title {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 150%;
    /* identical to box height, or 36px */

    letter-spacing: 0.05rem;
    margin: 1.5rem 1rem;
}

.calendar {
    width: 50%;
    min-width: 200px;
    min-height: 250px;
    /* background-color: cornflowerblue; */
    padding: 0.5rem;
}

.event {
    width: 25%;
    min-width: 12rem;
    min-height: 250px;
    /* background-color: crimson; */
    padding: 0; 
    margin: 0 1rem;
    background: #FFffFF;
    position: relative;

background: #FFFFFF;
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
border-radius: 8px;

}

.event__img {
    width: 100%;
    height: 5rem;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.event__img img {
    width: 100%;
}

.event__txt {
    padding: 0.25rem;
    margin-bottom: 2rem;
}

.event__tags {
    margin-top: 0.25rem; 
    margin-bottom: 0.3rem;   
}

.event__tags a {
    font-family: Noto Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 150%;
    /* or 18px */
    color: #FF8C4B;
    text-decoration: none;
    
    transition: all 0.25s linear;
}

.event__tags a:hover{
   color:  #2B5B6C;
}

.event__date {
    font-family: Noto Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 150%;
    /* or 24px */
    color: #000000;
}

.event__type, .event__type a {
    font-family: Noto Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 150%;
    /* or 24px */
    color: #000000;
    margin: 0.5rem 0;
}
.event__title {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 150%;
    /* or 30px */    
    color: #000000;
    word-break: break-word;
    margin-top: 0.5rem;
}
.event__link {
    display: block;
    margin: 1rem 0;
    font-family: Noto Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 150%;
    /* or 18px */
    color: #FF8C4B;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    
    transition: all 0.25s linear;
}

.event__link:hover {
    color:  #2B5B6C;
}

.partners {

}