.festival .section {
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}
.festival .title {
    margin: 0 0 30px 0;
    text-align: left;
    font-size: 5em;
    font-weight: 900;
    line-height: 1em;
}
.festival .text-right .title {
    text-align: right;
}
.festival a.btn.btn-line {
    border: 1px solid #ff710d;
    border-radius: 0;
    color: #ff710d;
    padding: 15px;
    min-width: 300px;
    transition: 0.2s ease;
}
.festival a.btn.btn-line:hover {
    background: #ffffff;
}
.festival .photo-link {
    display: flex;
    justify-content: space-between;
}
.festival .photo-link .link {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    flex-grow: 1;
    text-align: center;
    color: #fff;
    padding: 7em 0;
    cursor: pointer;
    width: 20%;
}
.festival .photo-link .link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    transition: all .4s ease;
    z-index: 2;
}
.festival .photo-link .link::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform .6s ease;
    z-index: 1;
}
.festival .photo-link .link h2 {
    font-weight: 900;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.festival .photo-link .arrow {
    border: 1px solid #fff;
    padding: 15px;
    display: inline-block;
    margin-top: 3em;
    transition: .3s;
}
.festival .photo-link .link h2,
.festival .photo-link .link .arrow {
    position: relative;
    z-index: 3;
}
.festival .photo-link .link:hover::after {
    transform: scale(1.05);
}
.festival .photo-link .link:hover::before {
    background: rgba(0,0,0,.1);
}
.festival .photo-link .link:hover .arrow {
    transform: translateY(5px);
}
.festival .calendar-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin: 0 auto;
    padding: 8em 0;
}
.festival .calendar {
    color: #ffffff;
    text-align: center;
    background: #242424;
    border-radius: 15px;
    padding: 3em 1em 2em;
}
.festival .calendar table {
    width: 100%;
    text-align: center;
    color: #ffffff;
    table-layout: fixed;
}
.festival .calendar table thead th:first-child,
.festival .calendar table tbody td:first-child {color: #ff710d;}
.festival .calendar table thead th:last-child,
.festival .calendar table tbody td:last-child {color: #45F9FF;}
.festival .calendar table th, .calendar table td {
    padding: 15px 2px;
}
.festival .calendar table tbody td {
    height: 78px;
    vertical-align: top;
}
.festival .day {
    height: 18px;
    line-height: 18px;
    text-align: center;
    margin-bottom: 3px;
}
.festival .aqua {
    background: #FD4DB9;
    border-radius: 5px;
    color: #fff;
    padding: 1px;
    font-size: 10px;
    margin-bottom: 3px;
}
.festival .night {
    background: #FF1515;
    border-radius: 5px;
    color: #fff;
    padding: 3px;
    font-size: 10px;
    margin-bottom: 3px;
}
.festival .infinity {
    background: #1534FF;
    border-radius: 5px;
    color: #fff;
    padding: 3px;
    font-size: 10px;
    margin-bottom: 3px;
    letter-spacing: -0.5px;
}