.calendar-section {
    position: absolute;
    top: 100px;
    right: 80px;
    z-index: 9;
    height: calc(100vh - 270px);
    width: 35%;
    padding: 20px;
    background-color: #D7E8F7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.calendar-section .custom-calendar-wrap {
    margin: 0;
    position: relative;
    width: 400px;
}
.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;
    justify-content: space-between;
    width: 100%;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
    font-size: 46px;
    line-height: 60px;
    color: #0E406A;
    font-family: "Gotham-Black", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
    font-size: 30px;
    line-height: 30px;
    color: #0E406A;
    font-family: "Gotham-Book", sans-serif;
    font-weight: 400;
    margin: 0;
}
.fc-calendar-container {
    margin-top: 10px;
    position: relative;
}
.fc-calendar .fc-head {
    font-size: 16px;
    line-height: 30px;
    color: #0E406A;
    font-family: "Gotham-Black", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}
.fc-calendar .fc-head,
.fc-calendar .fc-row {
    display: flex;
    justify-content: space-between;
    height: 44px;
    align-items: center;
}
.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
    float: left;
    height: 30px;
    max-width: 30px;
    width: calc(100%/7.2);
    text-align: center;
}
.fc-calendar .fc-row > div > span.fc-date {
    font-size: 16px;
    line-height: 30px;
    color: #0E406A;
    font-family: "Gotham-Book", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}
.fc-calendar .fc-row > div.fc-today {
    background: #D8AB31;
    border-radius: 50%;
    border: solid 1px #D8AB31;
}
.fc-calendar .fc-row > div.fc-content {
    border: 1px solid #0E406A;
    position: relative;
}
.fc-calendar .fc-row > div.fc-content::after {
    content: '';
    height: 6px;
    width: 6px;
    display: inline-block;
    border-radius: 50%;
    background-color: #D8AB31;
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translate(-50%, 0);
}
.fc-content-tooltip {
    position: absolute;
    display: none;
    padding: 8px;
    bottom: -76px;
    z-index: 1;
    left: 50%;
    min-width: 180px;
    text-align: center;
    background-color: #D8AB31;
    margin-top: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    color: #0E406A;
    font-family: "Gotham-Book", sans-serif;
    font-weight: 400;
    transform: translate(-50%, 0%);
    border-radius: 0;
    min-height: 56px;
    align-items: center;
    justify-content: center;
}
.fc-content-tooltip::after {
    content: ''; 
    position: absolute; 
    top: -10px; 
    left: 50%;
    transform: translate(-50%, 0);
    width: 0px; 
    height: 0px; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #D8AB31;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-footer {
    margin-top: 15px;
}
.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:first-child {
    background-image: url(../images/slick-slider-previous-icon-white-bg.svg);
    margin-right: 15px;
}
.calendar-previous-next-arrow-btn:last-child {
    background-image: url(../images/slick-slider-next-icon-white-bg.svg);
}

@media only screen and (min-width: 1800px) {
    .calendar-section {
        height: calc(100vh - 350px);
    }
    .calendar-section .custom-calendar-wrap {
        width: 600px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
        font-size: 56px;
        line-height: 70px;
    }
    .fc-calendar-container {
        margin-top: 30px;
    }
    .fc-calendar .fc-head {
        font-size: 20px;
        line-height: 44px;
    }
    .fc-calendar .fc-head,
    .fc-calendar .fc-row {
        height: 60px;
    }
    .fc-calendar .fc-row > div,
    .fc-calendar .fc-head > div {
        height: 44px;
        max-width: 44px;
    }
    .fc-calendar .fc-row > div > span.fc-date {
        font-size: 20px;
        line-height: 44px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-footer {
        margin-top: 25px;
    }
    .calendar-previous-next-arrow-btn {
        width: 56px;
        height: 56px;
    }
}
@media only screen and (max-width: 1400px) and (min-width: 1199px) {
    .calendar-section {
        top: 90px;
        right: 60px;
        height: calc(100vh - 220px);
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
        font-size: 38px;
        line-height: 44px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
        font-size: 26px;
        line-height: 26px;
    }
}
@media only screen and (max-width: 1199px) {
    .calendar-section {
        top: 80px;
        right: 40px;
        height: calc(100vh - 200px);
        width: 40%;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
        font-size: 38px;
        line-height: 44px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
        font-size: 26px;
        line-height: 26px;
    }
}
@media only screen and (max-width: 767px) {
    .calendar-section {
        position: initial;
        height: 100%;
        width: 100%;
        background: #053963;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
        color: #FFFFFF;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
        color: #FFFFFF;
    }
    .fc-calendar .fc-head {
        color: #D8AB31;
    }
    .fc-calendar .fc-row > div > span.fc-date {
        color: #FFFFFF;
    }
    .fc-calendar .fc-row > div.fc-content {
        border: 1px solid #D8AB31;
        position: relative;
    }
    .fc-content-tooltip {
        top: -70%;
        bottom: auto;
        transform: translate(-50%, -70%);
        min-width: 120px;
    }
    .fc-content-tooltip::after {
        top: auto;
        bottom: -9px;
        transform: translate(-50%, 0);
        border-top: 10px solid #D8AB31;
        border-bottom: 0;
    }
    .calendar-previous-next-arrow-btn:first-child {
        background-image: url(../images/slick-slider-previous-icon.svg);
        margin-right: 15px;
    }
    .calendar-previous-next-arrow-btn:last-child {
        background-image: url(../images/slick-slider-next-icon.svg);
    }
}