/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.acfm-festivals-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.acfm-festivals-container .acfm-box {
    position: relative;
    display: flex;
    align-items: stretch;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 20px 60px 10px;
    margin-bottom: 30px;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    padding: 50px;
    gap: 5px;
}

.acfm-festivals-container .acfm-box:hover .acfm-img-holder::after {
    background: rgba(17, 34, 28, 0);
    transition: all .3s ease-in-out;
}

.acfm-festivals-container .left,
.acfm-festivals-container .right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1 1 auto;
    width: 100%;
    max-width: 600px;
}

.acfm-festivals-container .right {
    padding-left: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5px;
}

.acfm-festivals-container .right::before {
    position: absolute;
    left: 0px;
    width: 1px;
    height: 100%;
    content: "";
    background: rgb(229, 229, 229);
}

.acfm-festivals-container .acfm-img-holder {
    height: 160px;
    width: 220px;
    overflow: hidden;
    border-radius: 15px;
    margin-right: 50px;
    position: relative;
}

.acfm-festivals-container .acfm-img-holder::after {
    content: '';
    background: rgba(17, 34, 28, .3);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 15px;
    transition: all .3s ease-in-out;
}

.acfm-festivals-container .acfm-img-holder img {
    object-fit: cover;
    object-position: center;
    display: block;
    width: 100%;
    height: 100%;
}

.acfm-festivals-container .title h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

.acfm-festivals-container .btn {
    font-family: inherit;
    font-size: 20px;
    font-weight: 400;
    width: 180px;
    padding: 5px;
    height: 50px;
    border: 1px solid #F2972A;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #F2972A;
    transition: all .3s ease-in-out;
}

.acfm-festivals-container .btn:hover {
    background: #F2972A;
    color: #fff;
    transition: all .3s ease-in-out;
}

.acfm-festivals-container .acfm_when_holder,
.acfm-festivals-container .acfm_where_holder {
    color: #ffbb00;
}

.acfm-festivals-container .pagination {
    justify-content: center;
    gap: 10px;
}

.acfm-festivals-container .pagination .page-numbers {
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    border: #000 1px solid;
    border-radius: 3px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background: #fff;
}

.acfm-festivals-container .pagination .page-numbers:hover {
    border-color: #F39E00;
    transition: all .3s ease-in-out;
    background: #F39E00;
}

.acfm-festivals-container .pagination .current {
    border-color: transparent;
    cursor: unset;
}