/*--------------------------------------------------------------
# Up Comming Events
--------------------------------------------------------------*/
.up-comming-events {
    position: relative;
    display: block;
    margin-top: -80px;
    z-index: 10;
}

.up-comming-events__inner {
    position: relative;
    display: block;
    background-color: rgba(255, 255, 255, 1.0);
    padding: 40px 40px;
    border-radius: var(--carity-bdr-radius);
    box-shadow: 0px 0px 35px 0px rgb(0 0 0 / 6%);
    z-index: 1;
}

.up-comming-events__left {
    position: relative;
    display: block;
}

.up-comming-events__content {
    position: relative;
    display: block;
    padding: 14px 0;
}

.up-comming-events__title {
    font-size: 26px;
    line-height: 40px;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.up-comming-events__details {
    position: relative;
    display: flex;
    align-items: center;
}

.up-comming-events__details li+li {
    margin-left: 15px;
}

.up-comming-events__details li p {
    font-size: 14px;
    text-transform: uppercase;
}

.up-comming-events__details li p span {
    color: var(--carity-primary);
    margin-right: 5px;
}

.up-comming-events__details li:nth-child(2) p span {
    color: var(--carity-base);
}

.up-comming-events__details li:nth-child(3) p span {
    color: var(--carity-secondary);
}

.up-comming-events__right {
    position: relative;
    display: block;
    float: right;
}

.timer-box {
    position: relative;
    display: block;
}

.countdown-timer .default-coundown .box {
    position: relative;
    display: block;
}

.countdown-timer li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--carity-primary);
    border-radius: 30px;
    transform: rotate(45deg);
}

.countdown-timer li:nth-child(2)::before {
    background-color: var(--carity-base);
}

.countdown-timer li:nth-child(3)::before {
    background-color: var(--carity-secondary);
}

.countdown-timer li:nth-child(4)::before {
    background-color: #8139e7;
}

.countdown-timer li {
    position: relative;
    display: inline-block;
    float: none;
    padding: 0;
    text-align: center;
    margin: 0px 10px 0px;
}

.countdown-timer li:first-child {
    margin-left: 0;
}

.countdown-timer li:last-child {
    margin-right: 0;
}

.countdown-timer li span.days,
.countdown-timer li span.hours,
.countdown-timer li span.minutes,
.countdown-timer li span.seconds {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    color: var(--carity-white);
    font-size: 37px;
    line-height: 70px;
    text-align: center;
    border-radius: 20px;
    font-weight: 800;
    font-family: var(--carity-font-three);
}

.countdown-timer li span.timeRef {
    position: absolute;
    bottom: 18px;
    left: 50%;
    color: var(--carity-white);
    font-size: 27px;
    line-height: 25px;
    font-weight: 800;
    text-transform: capitalize;
    display: block;
    text-align: center;
    transform: translateX(-50%);
    font-family: var(--carity-font-three);
}








/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/