
.content {
    width: 100%;
    position: relative;
    top: -50px;
    overflow: hidden;
}

.img {
    z-index: -3;
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.ticket-price {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    overflow: visible;
    margin-bottom: 100px;
}

i{
    overflow: visible;
}

.ticket-grid {
    position: relative;
    z-index: 3;
    top: 50px;
    display: grid;
    grid-template-columns: 183px 183px;
    grid-template-rows: 60px 50px 50px 50px 50px;
    grid-template-areas:
    'header header'
    'child price1'
    'adult price2'
    'student price3'
    'total total-price';
}

.ticket-header {
    grid-area: header;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--flashy-heading);
}

.ticket-header h1 {
    font-size: 16px;
}

.ticket-first-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--flashy-heading);
    font-size: 12px;
    border-bottom: 1px solid #ACACAC;
}

.ticket-second-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 18px;
    font-family: var(--flashy-heading);
    font-size: 12px;
    border-bottom: 1px solid #ACACAC;
}

.calendar-section {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-family: var(--flashy-heading);
}

.calendar-section h2 {
    font-size: 16px;
}

.calendar-container {
    display: flex;
    width: 70%;
    justify-content: center;
    align-items: center;
}

.calendar {
    width: 100%;
    height: auto;
}

.button-container {
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    overflow: visible;
}

@media (min-width: 834px) {
    .ticket-grid {
        grid-template-rows: 80px 60px 60px 60px 60px;
    }

    .ticket-header h1{
        font-size: 20px;
    }

    .ticket-first-row,
    .ticket-second-row {
        font-size: 16px;
    }
}

@media (min-width: 1000px) {
    .calendar-container {
        width: 50%;
    }

    .button-container {
        width: 50%;
    }
}
