/* Home Page */
.links-section, .logo-section {
    height: 100vh;
}

/* Home Section */
.home-section .wrapper.row {
    position: relative;
    z-index: 100;
    margin: auto;
}
.home-section h1 {
  max-width: 6em;
  margin: calc(50vh - 2em) auto 1em;    
}
.home-section p {
    text-align: center;
    margin-top: 2rem;
}
.home-section .button {
    display: inline-block;
}

.championship-section .wrapper.row {
    margin: auto;
}


.flex-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
}
.links-section {
    padding: 2rem;
}
.links-section .col-xs-3 {
    padding: 28px;
}
.links-section .link-box {
    background: #1f0f84;
    border-radius: 1rem;
    padding: 3rem 1rem;
    text-align: center;
    height: 25vw;
    min-height: 20rem;
    max-height: 26rem;
    max-width: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.links-section .link-box img {
    height: auto;
}
.links-section .link-box .image-wrapper {
    max-width: 55%;
    min-height: 10vw;
    margin: 1rem auto;
}
.links-section .link-box p {
    margin: 0 0 2rem;
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 200;
    text-transform: none;
}
.link-box .button-wrapper {
    margin-top: 0rem;
}


/* Movement */
.movement-section {
    background: #1f0f84;
    padding-top: 20vh;
    padding-bottom: 20vh;
    height: auto;
}
.movement-section .row {
    width: 100%;
}
.movement-section .wrapper.flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.movement-section h1 {
    margin-bottom: 2rem;
}
.movement-section h4 {
    margin-bottom: 18vh;
}
.movement-section .col-xs-3 {
    padding: 40px;
}
.movement-section .graph-title {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    height: auto;
    justify-content: center;
}
.movement-section .graph-title img {
    display: inline-block;
    margin-right: 1rem;
    max-width: 2.5rem;
    height: auto;
}

/* Championship 
  background: url(https://www.thechidon.com/wp-content/uploads/2019/07/boys-cheering.jpg); */
.championship-section {
    background: url(https://hidone.fr/wp-content/uploads/2024/12/garcons-ac3.jpg);

    background-size: cover;
    background-position: center right;
}
.championship-section .text {
    max-width: 45rem;
    text-align: center;
    margin: auto;
    margin-top: 10vh;
}
.championship-section h4 {
    margin-bottom: 4rem;
}

/* Logos */
.logo-section {
    height: auto;
    min-height: 0;
    padding: 10vh 0;
}
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.logo-wrapper img {
    max-width: 6vw;
    height: auto;
    width: 100%;
}

.home-section::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #ffcc5a transparent transparent transparent;
    position: absolute;
    bottom: 1rem;
    left: calc(50% - 10px);
    z-index: 100;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@media(max-width: 920px) {
    .link-box .button {
        padding: .5em 1em;
    }
}
@media(max-width: 75em) {
    .movement-section .col-sm-4:nth-child(3) {
        margin-top: 5rem;
        margin-bottom: 5rem;
        margin: 5rem auto;
    }
}
@media(max-width: 62em) {
    .logo-wrapper img {
        max-width: 6rem;
    }
    .logo-section {
        height: auto;
    }
}
@media(max-width: 48em) {
    .home-section .center {
        display: none;
    }   
    .home-section .button {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .links-section .link-box {
        max-width: 17rem;
        margin: auto;
        margin-bottom: 2rem;
    }
    .movement-section .col-xs-12 {
        max-width: 20rem;
        margin: 3rem auto;
    }

    .links-section, .logo-section {
        height: auto;
    }
    .logo-wrapper {
        padding: 1rem 0;
    }
    .logo-wrapper img {
        max-width: 6rem;
        width: 100%;
        height: auto;
    }
}