/*hero*/
.event_hero {
    position: relative;
    margin-bottom: 100px;
    padding-top: 154px;
}

.event_hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 570px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56.05%, #000000 95.97%), url('../assets/img/events/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: 0;
}

.event_hero .container {
    height: 100%;
}

.event_hero .text-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event_hero h1 {
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    text-transform: uppercase;
}

.event_hero .list {
    display: flex;
}

.event_hero .list span {
    display: block;
    width: 190px;
    height: 40px;
    /* margin-right: 23px; */
    color: rgba(255, 255, 255, .5);
    text-align: center;
    font-weight: bold;
    border-bottom: 3px solid rgba(255, 255, 255, .5);
    cursor: pointer;
}

.list_active {
    color: #fff !important;
    border-bottom: 3px solid rgba(255, 255, 255, 1) !important;
}

.event_hero .list a:last-child {
    margin-right: 0;
}

.event_list {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.event_list_item {
    width: calc(50% - 15px);
    height: auto;
    overflow: hidden;
    float: left;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    margin-right: 30px;
}

.event_list_item:nth-child(2n) {
    margin-right: 0;
}

.event_list_item .item_left {
    width: 182px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.event_list_item .item_left .day {
    font-weight: 700;
    font-size: 40px;
}

.event_list_item .item_left .month {
    font-weight: 600;
    font-size: 24px;
    margin: 16px 0;
}

.event_list_item .item_left .time {
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 16px;
    position: relative;
}

.event_list_item .item_left .time::after {
    position: absolute;
    content: '';
    width: 37px;
    height: 0px;
    opacity: 0.5;
    border: 1px solid #FFFFFF;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}

.event_list_item .item_left .loc {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.event_list_item .item_left .loc img {
    margin-right: 10px;
}

.event_list_item .item_left .loc span {
    font-weight: 600;
    font-size: 16px;
}

.event_list_item .item_right {
    width: calc(100% - 182px);
    height: 415px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 30px 40px 50px;
    box-sizing: border-box;
    color: #FFFFFF;
    background-repeat: no-repeat;
    position: relative;
}
.event_list_item .item_right::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    left: 0;
    top: 0;
    z-index: 0;
}
.event_list_item .item_right .state {
    width: 127px;
    height: 39px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 39px;
    z-index: 1;
}

.event_list_item .item_right .state0 {
    background: #0033E6;
}

.event_list_item .item_right .state1 {
    background: #FF0000;
}

.event_list_item .item_right .title {
    font-weight: 800;
    font-size: 24px;
    margin: 20px 0;
    z-index: 1;
}

.event_list_item .item_right .sub_title {
    font-weight: 600;
    font-size: 16px;
    z-index: 1;
}

.event_more {
    margin: 60px 0 170px 0;
}

.event_more_btn {
    width: 220px;
    height: 57px;
    border: 1px solid #FFFFFF;
    border-radius: 999px;
    text-align: center;
    line-height: 57px;
    margin: 0 auto;
    cursor: pointer;
}

@media (max-width: 480px) {
    .event_hero {
        margin-bottom: 50px;
    }

    .event_hero .text-block {
        flex-direction: column;
    }

    .event_hero .list {
        margin-top: 60px;
        width: 100%;
    }

    .event_list_item {
        width: 100%;
        margin-right: 0;
        flex-direction: column;
    }

    .event_list_item .item_left {
        width: 100%;
        flex-direction: row;
        /* justify-content: space-between; */
        padding: 18px 30px 20px 30px;
        /* align-items: flex-end; */
    }

    .event_list_item .item_left .day {
        font-size: 32px;
    }

    .event_list_item .item_left .month {
        font-size: 18px;
        margin: 0;
        margin-top: 10px;
        margin-left: 4px;
    }

    .event_list_item .item_left .time {
        font-size: 14px;
        padding-bottom: 0;
        padding: 0 50px;
        margin-top: 10px;
    }

    .event_list_item .item_left .time::after {
        transform: rotate(-90deg);
        left: -0px;
        right: auto;
        bottom: 12px;
        opacity: 0.2;
    }

    .event_list_item .item_left .time::before {
        transform: rotate(-90deg);
        right: 0px;
        bottom: 12px;
        position: absolute;
        content: '';
        width: 37px;
        height: 0px;
        opacity: 0.2;
        border: 1px solid #FFFFFF;
    }

    .event_list_item .item_left .loc {
        margin-top: 0;
        margin-top: 10px;
    }

    .event_list_item .item_right {
        width: 100%;
        padding: 40px 30px;
        height: auto;
    }

    .event_list_item .item_right .title {
        font-size: 18px;
        line-height: 22px;
    }

    .event_list_item .item_right .sub_title {
        font-size: 14px;
        line-height: 24px;
    }
}