

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

.central-content {
    max-width: 1300px;
}
.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-x: visible;
    overflow-y: hidden;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 1;
    
}

.current-page {
    color: #ffcc19 !important; 
    font-family: 'Raleway', sans-serif !important;
    
}
.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;
    overflow-x: none;
}

.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-banner {
    width: 100%;
    /* max-width: 1200px; */
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
.slides {
    display: flex;
    transition: transform 1.5s ease;
}
.slide {
    width: 100%;
    height: 500px;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: start; /* Center the image vertically */
    align-items: start;
    position: relative;
}


.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
}



.nav-identifier {
    width: 15px;
    height: 15px;
    border-color: black;
    border-width: 0.9px;
    border-style: solid;
    content: "";
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 10px;

}

.selected{
  background-color: black;

}

.nav-buttons-banner {
    margin-top: 10px;
    margin-bottom: 5px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
   
}

.prevSlide {
    height: 20px;
    width: 20px;
   
}

.prevSlide img {
    height: 20px;
    width: 20px;
  
    transform: scaleX(-100%) ;
}

.nextSlide img {
    height: 20px;
    width: 20px;
  
    
 
}

.nextSlide {
    height: 20px;
    width: 20px;
}

.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;

}

.green-bold {
    color: #215D43;
    text-decoration: solid;
}

.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: 15px;
    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%;
    
    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;
    }
}

@media only screen and (min-width: 1050px){ 
/* This is the fix to the scrollbar visibility */
    .cards {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .cards::-webkit-scrollbar {
        display: none;
    }
}    

.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%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    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%;
}

.announcement {
    background-color: lightskyblue;
    width: 100%;
}

.announcement div {
    margin: 10px;
    
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    text-align: center;
}



@media only screen and (min-width: 930px){
    #dropdown {
        display: none;
    }

    .content-box {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 10px;
        background-color: #f4f4f4;
        color: black;
        padding: 10px;
        max-width: 35%;
        border-radius: 15px;
        height: fit-content;
    }


    .slide img {
        max-width: 100%;
        position: absolute;
        bottom: -50px;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }

    
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Tablet styles go here */
}

#book-button-key {
    padding: 0px;
}

@media only screen and (max-width: 930px) {
    /* Phone styles go here */
    #bannerimg {
        display: none;
    }
    .announcement div {
        margin-left: 2%;
        margin-right: 3%;
    }
    #nav-book {
        display: none;
    }

    #dropdown-button{
        width: 30px;
        margin-right: 30px;

    }

    #dropdown {
        display: flex;
        justify-content: space-between;
        height: 50px;
        
        width: 100%;
        padding-right: 20px;
        /* position: sticky; */
    }

    .nav-right {
        left: 0%;
    }

    #dropdown img {
        height: 50px;
        margin-left: 10px;
    }

    #full {
        flex-direction: column;
        /* position: absolute;
        top: 33.5px; */
        height: 0px;
        transition: 0.5s ease;
    }

    

    #nav-bar {
        position: absolute;
        z-index: 1;
        top: 0;
        width: 100vw;
        position: fixed;
    }
    .slide {
        height: 670px;
    }
    .content-box {
        position: fixed;
        width: 100%;
        padding: 10px;
        min-height: 45%;
    }

    .content-box p {
        margin-right: 20px;
        margin-left: 10px;
        width: fit-content;
    }
    
    .content-box h3 {
        margin-left: 10px;
    }

    .slide img {
        height: 55%;
        width: 100%;
        object-fit: cover;
    }

    .splitter {
        display: none;
    }

    .split {
        flex-direction: column;
        width: 100%;
        margin-top: 250px;
        margin-bottom: 200px;
    }

    .personal-training {
        width: 100%;
    }

    .slider-banner {
        margin-top: 50px;
    }

}

