/**
* Template: Crowd Calendar pages
*/


/* WHICH PARKS ARE COVERED SECTION */
.parks-covered {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}
.parks-covered .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 0 0 calc(33.33% - 26.66px);
    max-width: calc(33.33% - 26.66px);
    opacity: 1 !important;
    transform: translateZ(0);
    will-change: transform;
    transition: transform .3s cubic-bezier(0, 0, 0.5, 1);
}
.parks-covered .item.row {
    flex-direction: row;
}
.parks-covered .item:hover {
    transform: scale(1.02);
}
.parks-covered .item:hover .info-section::after {
    background-color: var(--primary-color);
}
.parks-covered .item:hover .info-section p {
    color: var(--primary-color);
}
.parks-covered .item .image-section {
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.parks-covered .item .info-section {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--global-font);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}
.parks-covered .item .info-section::after {
    display: block;
    content: "";
    min-width: 16px;
    min-height: 16px;
    -webkit-mask-image: url(/wp-content/plugins/attraction-insight/assets/icons/arrow-icon.svg);
    mask-image: url(/wp-content/plugins/attraction-insight/assets/icons/arrow-icon.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: #000;
    transition: background-color .3s cubic-bezier(0, 0, 0.5, 1);
}
.parks-covered .item .info-section p {
    color: var(--text-color);
    margin-bottom: 0;
    transition: color .3s cubic-bezier(0, 0, 0.5, 1);
}
.parks-covered .item .info-section p .small {
    display: block;
    font-size: 18px;
}

/********************************************************************/

/* RESPONSIVE ELEMENTS */
@media (max-width: 1050px) {
    /* WHICH PARKS ARE COVERED SECTION */
    .parks-covered .item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 720px) {
    /* WHICH PARKS ARE COVERED SECTION */
    .parks-covered .item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .parks-covered .item.row {
        flex-direction: column;
    }
}