

.center {
    display: flex;
    justify-content: center;
    width: 100%;
}
* {     
    font-family: 'Raleway', sans-serif;
}
body{
    margin: 0px;
}

.nav-buttons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin-top: 0px;
    background: rgb(14,33,22);
    background: linear-gradient(90deg, rgba(14,33,22,1) 0%, rgba(36,73,67,1) 100%); 
    /* padding-top: 10px;
    padding-bottom: 10px; */

    border-width: 0px;
    overflow-y: hidden;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 1;
}

.current-page {
    color: #ffcc19 !important; 
    font-family: 'Raleway', sans-serif;
    
}
.nav-buttons > a, .nav-buttons > p{
    color: white;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    height: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.nav-buttons > a:hover {
    color: #ffcc19 !important;
    /* background-color: red; */
}

menu {
    margin-left: 0px;
}

.nav-right {
    position: relative;
    left: 3%;
}

.book-button {
    background-color: #ffcc19;
    padding-right: 5px;
    padding: 5px;
    border-radius: 10px;
    width: fit-content;
    font-family: 'Raleway', sans-serif;
    color: black;
}

.header {
    display: flex;
    flex-direction: column;
}

.banner > img {
    width: 100%;
    height: 457px;
    object-fit: cover; 
    transform: scaleX(-1);

}

.banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 420px;
}

.banner::before {
    
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/banner-players.jpeg');
    background-size: cover;
    background-position: center;
    transform: scaleX(-1);
    z-index: -1;
      
}

.banner-content {
    background-color: #f4f4f4;
    width: 40%;
    padding: 2.5%;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 2.5ch;


}

.trapezoid {
    background-color: #f4f4f4;
    width: 45%; 
    height: 15%;
    -webkit-clip-path: polygon(0 0, 100% 0, 27% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 27% 100%, 0% 100%);
    position: relative;
    top: -0.5px
}

.trapezoid > .book-button {
    margin-left: 5%;
}

.central-content {
    width: 100%;
    
}

.carousel {
    height: 50px;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    flex-direction: row;
    width: 2000px;
    /* animation: slide 5s linear infinite; */
}

.slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    height: 100%;
    width: 961px;
    /* margin-right: 1%; */
    /* margin-left: 1%; */
    /* margin-right: -4%; */
    animation: slide 40s linear infinite;

}

.hider {
    overflow: hidden;
}

.carousel-text {
    width: fit-content;
    /* flex: 1; */
    padding-left: 6%;
    /*margin-right: 3%; */
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 12px;
    color: #215D43;
}

/* .carousel > * {
    animation: slide 5s linear infinite;
} */
/* 
.carousel-text {
    position: absolute;
    white-space: nowrap;
    animation: slide 5s linear infinite;
} */

@keyframes slide {
    0% {
        transform: translateX(0%);
    }

    /* 50% {
        transform: translateX(-100%);
    }

    50.01% {
        transform: translateX(100%);
    } */

    100% {
        transform: translateX(-100%);
    }
}

/* .carousel-text:nth-child(1) {
    animation-delay: 0s;
}

.carousel-text:nth-child(2) {
    animation-delay: 0.5s;
}

.carousel-text:nth-child(3) {
    animation-delay: 1s;
} */

.cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 365px;
    overflow-x: scroll;
    overflow-y: visible;
    flex-wrap: nowrap;
    position: relative;
}

.card {
    /* flex: 1; */
    margin-right: 5px;
    margin-left: 5px;
    width: 245px;
    min-width: 250px;
    height: 96%;
    background-color: #f4f4f4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 4px;
    box-shadow: 0px 6px 4px rgba(0, 0, 0, 0.25);
    position: relative;
}

@media only screen and (max-width: 1010px){
    
    .cards {
        justify-content: flex-start;
    
    }
}

@media only screen and (min-width: 961px){
    .slider {
        width: 961px;
    }
    .carousel {
        width: 1922px;
    }
    .hider {
        width: 961px;
    }
}

.card > h1{
    text-align: center;
    margin-top: 1%;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    color: #215D43;
    margin-left: 2px;
    margin-right: 2px;
    
}

.card > img {
    width: 100%;
    height: 40%;
    object-fit: cover;
    /* object-fit: contain; */
    /* border-radius: 20px; */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.card > p {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: black;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.card > a {
    text-decoration: none;
    color: #ffcc19;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    margin-right: 4.5%;
    margin-left: 4.5%;
    align-items: center;
    position: absolute;
    width: 91%;
    bottom: 5px;
}

.split {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 500px;

}

.splitter {
    width: 1px;
    height: 100%;
    background-color: #5E5E5E;
}

.personal-training {
    width: 43%;
    margin-right: 2.5%;
    /* background-color: red; */
    height: 100%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    position: relative;
}


.personal-training > img{
    width: 90%;
    height: 270px;
    object-fit: cover;
    border-radius: 20px;
}

.personal-training > h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #215D43;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    width: 90%;
}


.personal-training > p {
    width: 90%;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: black;
    margin-bottom: 5px;

}


.personal-training > ul {
    width: 85%;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: black;
    margin-top: 0;
    margin-bottom: 20px;
    overflow: hidden;
    /* background-color: #ffcc19; */
}

.personal-training > ul > li {
    margin-bottom: 5px;
    width: 100%;
    
}

.facebook .logo {
    width: 50px !important;
    height: 50px !important;
    border-radius: 10px !important;
    
}

.facebook {
    margin-top: 50px;
    width: 90%;
    justify-content: flex-start;
}

.copyright p {
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: black;
    text-align: center;
    width: 100%;


}

.green-bold {
    font-weight: bold;
    color: #215D43 !important;
    font-family: 'Raleway', sans-serif;
}

.black-font {
    color: black;
    font-family: 'Raleway', sans-serif;
}

.copyright {
    width: 100%;
}

.summary {
    width: 90%;
    /* background-color: red; */
    margin-top: 10px;
}

.summary h1 {
    font-size: 20px;
}

.summary li {
    font-size: 16px;
    margin-bottom: 7px;
}

.register {
    width: 90%;
    background-color: #fbfbfb;
    margin-top: 20px;
    border-radius: 20px;
    box-shadow: 0px 8px 4px 0px rgba(0, 0, 0, 0.25);
}

.register > *{
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 20px;
}

.schedule-table-checkout {
    margin-top: 20px;
    border-radius: 20px;
    background-color: #f4f4f4;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.schedule-row > * {
    /* flex: 1; */
    padding-left: 10px;
    padding-right: 10px;
    /* flex: 1 !important; */
    width: 14.28%;
    
}

.head {
    padding-top: 10px;
    /* flex: 1 !important; */

}

.schedule-column {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
}

.schedule-column > * {
    margin-bottom: 10px;
    /* flex: 1; */
}




/* .schedule-status-column {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
} */

.status {
    align-items: center !important;
}

.status > strong {
    margin-bottom: 10px;
}


.status > div {
    border-radius: 10px;
    margin-top: 11px;  
    padding: 5px;
    margin-bottom: 5px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.reg-open {
    background-color: #4aa980;
    color: white;
}

.reg-closed {
    background-color: black;
    color: white;
}

.payment-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;

}

.next {
    display: flex;
    justify-content: center;
    align-items: center;

}

.next svg {
    position: relative;
    top: 1px;
}

.camp-title {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
}

.camps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    margin-right: 10%;
    margin-left: 10%;
}

.camp-card {
    margin-top: 20px;
    background-color: #f4f4f4;
    border-radius: 20px;
    width: 48%;
    height: max-content;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 850px) {
  
    
}

.camp-card > h3 {
    margin: 20px;
    font-family: 'Raleway', sans-serif;
}

.camp-card > p {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 5px;
    font-family: 'Raleway', sans-serif;

}


.camp-card  a {
    margin-right: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    float: right;
}

.notice {
    width: 78%;
}

.camp-banners {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.camp-banners > img {
    width: 60%;
    border-radius: 10px;
}

@media only screen and (max-width: 767px) {
    /* Phone styles go here */
    .camps {
        flex-direction: column;
    }

    .camp-card {
        /* min-width: 300px; */
        width: 100%;
    }

    .summary {
        margin-top: 50px;
    }

    
}


@media only screen and (max-width: 1010px){
    
    .cards {
        justify-content: flex-start;
    
    }

    .nav-right {
        left: 0px;
    }

    .summary {
        margin-top: 50px;
    }
}

.centeredfuture {
    text-align: center;
}