.calendar-section {
    padding: 30px;
    width: 100%;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.calendar-section .custom-calendar-wrap {
    margin: 0;
    position: relative;
    width: 100%;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box {
    display: inline-flex;
    align-items: center;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
    font-size: 30px;
    line-height: 38px;
    color: #0A233F;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 700;
    margin: 0 10px 0 0;
    text-transform: uppercase;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
    font-size: 34px;
    line-height: 40px;
    color: #0A233F;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 400;
}
.fc-calendar-container {
    margin-top: 40px;
    position: relative;
}
.fc-calendar .fc-head {
    font-size: 18px;
    line-height: 20px;
    color: #0A233F;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.fc-calendar .fc-head,
.fc-calendar .fc-row {
    display: flex;
    justify-content: space-between;
    height: 60px;
    align-items: center;
}
.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
    float: left;
    height: 45px;
    max-width: 45px;
    width: calc(100%/7.2);
    text-align: center;
}
.fc-calendar .fc-row > div > span.fc-date {
    font-size: 18px;
    line-height: 45px;
    color: #0A233F;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 400;
}
.fc-calendar .fc-row > div.fc-today {
    background: url(../images/event-calendar-red-bg-date-box.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0;
}
.fc-calendar .fc-row > div.fc-today .fc-date {
    color: #FFFFFF;
}
.fc-calendar .fc-row > div.fc-content {
    border: 0;
    background: url(../images/event-list-calender-border.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}
.calendar-previous-next-arrow-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    border-radius: 0;
    background: transparent;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.calendar-previous-next-arrow-btn.previous-arrow {
    background-image: url(../images/slick-slider-previous-icon.svg);
    margin-right: 15px;
}
.calendar-previous-next-arrow-btn.next-arrow {
    background-image: url(../images/slick-slider-next-icon.svg);
    margin-left: 15px;
}
.calendar-previous-next-arrow-btn:hover {
    transition: all 1s;
}
.calendar-previous-next-arrow-btn.previous-arrow:hover {
    background-image: url(../images/slick-slider-previous-active-icon.svg);
}
.calendar-previous-next-arrow-btn.next-arrow:hover {
    background-image: url(../images/slick-slider-next-active-icon.svg);
}
.custom-body .event-month-title {
    font-size: 22px;
    line-height: 29px;
    color: #0A233F;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 5px;
    position: relative;
}
.custom-body .event-month-title::after {
    content: '';
    background-color: #0A233F;
    height: 1px;
    width: 100%;
    display: block;
    position: absolute;
    bottom: -15px;
    left: -30px;
}
.custom-body .event-detail-box {
    margin-top: 30px;
}
.custom-body .event-detail-box div {
    border-left: solid 2px #A50034;
    padding-left: 10px;
    margin-bottom: 20px;
}
.custom-body .event-detail-box .event-date-txt {
    font-size: 16px;
    line-height: 21px;
    color: #A50034;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.custom-body .event-detail-box .event-date-title {
    font-size: 16px;
    line-height: 17px;
    color: #0A233F;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}

/* @media only screen and (max-width: 1400px) and (min-width: 1199px) {
    .calendar-section {
        width: 43%;
    }
}
@media only screen and (max-width: 1199px) {
    .calendar-section {
        width: 45%;
    }
} */
@media only screen and (max-width: 1199px) {
    .calendar-section {
        padding: 20px 10px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
        font-size: 16px;
        line-height: 22px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
        font-size: 20px;
        line-height: 24px;
    }
    .fc-calendar .fc-head {
        font-size: 16px;
        line-height: 18px;
    }
    .fc-calendar .fc-head,
    .fc-calendar .fc-row {
        height: 50px;
    }
    .fc-calendar .fc-row > div,
    .fc-calendar .fc-head > div {
        height: 40px;
        max-width: 40px;
    }
    .fc-calendar .fc-row > div > span.fc-date {
        font-size: 16px;
        line-height: 40px;
    }
}