html {
    scroll-behavior: smooth;
}
section.cover {
    height: 480px;
    background: url(../image/club/club-collage.jpg) no-repeat top center;
    background-size: cover;
}
#clubs a {
    padding-bottom: 2px;
    transition: all 500ms ease-in-out;
    border-bottom: solid 1px #eee;
    margin-left: 24px;
}
#clubs a:hover {
    border-bottom-color: #00a2e0;
}
#clubs ul {
    font-size: 1rem;
    list-style: none;
    padding: 0;
}
#clubs li {
    margin: 1rem 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
#clubs li i {
    color: #5fbe1a;
    text-align: center;
    position: absolute;
    
}
section:not(:first-of-type) {
    max-width: 1280px;
    margin: auto;
}
section p {
    text-align: justify;
    line-height: 1.5;
    font-size: 1rem;
}
section > div {
    display: flex;
    flex-wrap: wrap;
}
section > div > div {
    width: 50%;
    padding: 1.25rem 1rem;
    box-sizing: border-box;
}
/*
section > div > div:first-of-type, section > div > div:nth-of-type(5n) {
    border: solid 1px #eee;
    border-width: 0 1px 1px 0;
}
section > div > div:nth-of-type(5n) {
    border-top-width: 1px;
}
section > div > div:nth-of-type(2n) {
    border: solid 1px #eee;
    border-width: 1px 0 0 1px;
}
section > div > div:nth-of-type(2) {
    border-top-width: 0;
}
*/
section h3 {
    text-transform: capitalize;
    letter-spacing: 0.1rem;
    font-size: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 10;
}
section > div > div > div:first-of-type:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 0.5;
}
section > div > div > div {
    padding: 0.75rem 1rem 1.25rem;
}
section > div > div > div:first-of-type {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 360px;
}
section > div > div > div > span {
    display: block;
    margin-top: 2rem;
    font-size: 0.9rem;
}
section > div > div:nth-of-type(even) > div > span {
    text-align: right;
}
@media screen and (min-width: 1200px) {
    section.cover h1 {
        font-size: 60px;
    }
}
@media screen and (max-width: 800px) {
    section.cover h1 {
        font-size: 40px;
    }
}
@media screen and (max-width:799px) {
    section > div {
        display: block;
    }
    section > div > div {
        width: 100%;
    }
}