.tickets-list__h1{
    text-transform: uppercase;
    color: #e41f4a;
    font-size: 45px;
    font-weight: bold;
}

.tickets-list__grid{
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    grid-gap: 10px;
}

.tickets-list__banner{
    height: 100px;
    background: #29aae3;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
}

.tickets-list__banner__title{
    font-size: 32px;
    margin: 0;
    font-weight: bold;
    z-index: 10;
    color: #fff;
}

.tickets-list__banner__code{
    color: #ef0041;
    z-index: 10;
}

.tickets-list__banner__text{
    margin: 0;
    z-index: 10;
    color: #fff;
}

.tickets-list__banner:before{
    content: url("../../images/karich.png");
    position: absolute;
    left: 50px;
    top: 0;
    z-index: 22;
}

.tickets-list__banner:after{
    content: url("../../images/luntic.png");
    position: absolute;
    right: 35px;
    top: 0;
    z-index: 22;
}


@media only screen and (min-width : 480px) {
    .tickets-list__grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 768px){
    .tickets-list__grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 691px) and (max-width: 768px){
    .tickets-list__banner:before{
        left: 0;
    }
    .tickets-list__banner:after{
        right: 0;
    }
}

@media screen and (max-width: 690px){
    .tickets-list__banner:before{
        content: '';
    }
    .tickets-list__banner:after{
        content: '';
    }
    .tickets-list__banner{
        height: auto;
        padding: 15px 0;
    }
}


