#sportapp-club-filter {
    list-style: none;
    padding: 0;
    margin: 50px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#sportapp-club-filter .sportapp-filter-item {
    font-size: 18px;
    color: #002E6C;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    padding: 10px;
    min-width: 10%;
    margin: 10px 10px;
    border: solid 2px;
    text-align: center;
    cursor: pointer;
    width: 200px;
}
#sportapp-club-filter .sportapp-filter-item.sportapp-filter-active {
    background: #002E6C;
    color: white !important;
}

#sportappclubs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 50px 0;
}
#sportappclubs .sportapp-club {
    text-align: center;
    box-shadow: 2px 2px 6px 0px #00000054;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid white;
    position: relative;
}
.sportapp-club-province {
    font-size: 14px;
    background: #EFEFEF;
    padding: 5px;
    width: max-content;
    display: inline-block;
    text-align: center;
    position: absolute;
    left: 5px;
    top: 5px;
}
#sportappclubs a.sportapp-club {
    cursor: pointer;
    text-decoration: none;
}
#sportappclubs a.sportapp-club:hover {
    border: 1px solid #00000054;
}
#sportappclubs .sportapp-club .sportapp-club-name  {
    font-size: 1.25rem;
    background: #EFEFEF;
    padding: 15px 5px;
}
#sportappclubs .sportapp-club img {
    margin: 30px;
    width: auto;
    max-height: 200px;
    object-fit: contain;
}

#sportappclub .sportapp-club-banner {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.sportapp-club-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #002E6C;
    opacity: 0.6; /* 60% */
}
#sportappclub .sportapp-club-banner h1 {
    color: white;
    font-size: 6vh;
    position: relative;
    z-index: 1;
}
.sportapp-club-lower-title {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
}
#sportappclub .sportapp-club-section {
    max-width: 1100px;
    margin: 50px auto;
    padding:0 15px;
}

.sportapp-club-section.sportapp-club-intro-logo, .sportapp-club-section.sportapp-club-contacts-teams {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}
.sportapp-club-intro-logo .sportapp-club-introduction {
    flex: 1;
}
.sportapp-club-intro-logo .sportapp-club-logo {
    flex: 1;
    text-align: right;
}
.sportapp-club-intro-logo .sportapp-club-logo img {
    max-width: 200px;
}
.sportapp-club-contacts, .sportapp-club-teams {
    flex: 1;
}
.elementor-kit-25 .sportapp-club-contacts h2, .elementor-kit-25 .sportapp-club-teams h2 {
    opacity: 1;
    color: rgba(0, 46, 108, 1);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0px;
    text-align: left;
    line-height: 26px;
    text-transform: uppercase;
}
.elementor-kit-25 .sportapp-club-contacts h3, .elementor-kit-25 .sportapp-club-teams h3 {
    color: rgba(0, 46, 108, 1);
    font-weight: 400;
    font-size: 24px;
    display: block;
    margin: 0px 0 10px 0;
}
.sportapp-series-group {
    margin-bottom: 20px;
}
.sportapp-team-name {
    display: block;
    color: rgba(0, 46, 108, 1);
    font-weight: bold;
    font-size: 24px;
}
.sportapp-club-whitebox {
    background: white;
    padding: 20px;
    border: 1px solid white;
    border-radius: 5px;
}