/*universal*/

*{
    box-sizing: border-box;
}

body{
    margin:0;
    padding: 0;
    
}

/* Nav Bar*/

.navbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: red;
    color: white;
    padding: .5rem;  
}

.navbar.sticking{
 background-color: grey;
  
}

.brand-title{
    font-size: 2.5rem;
    margin: .5rem;
    
}

.navbar-links ul{
    font-size: 1.5rem;
    margin: 0;
    padding: 1rem;
    display: flex;
}

.navbar-links li{
    list-style: none;
}

.navbar-links li a{
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
}

.navbar-links li:hover{
    background-color: grey;
    padding: 0;
    margin: 0;
}

.toggle-button{
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar{
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

@media(max-width:600px) {
.toggle-button{
    display: flex;
}
.navbar-links{
    display: none;
    width: 100%;
}
.navbar{
    position: relative;
    flex-direction: column;
    align-items: flex-start;
}

.navbar-links ul{
    width: 100%;
    flex-direction: column;

}

.navbar-links li{
    text-align: center;
}

.navbar-links li a{
    padding: .5rem 1rem;
}

.navbar-links.active {
    display:flex;
}

.evtHead{
    margin: auto auto;
}

.brand-title{
    font-size: 1rem;
}
.backToTop {
    font-size: .5rem;
}
.backToTop span{
    font-size: .5rem;
}
}

/* Main*/

.wrapper{
    background-color: rgb(245, 244, 244);
    margin-left: auto;
    margin-right: auto;       
}

.evtTraining{
    width: 90%;
    max-width: 10000px;
    margin-left: auto;
    margin-right: auto;
    border: solid;
}
.evtHead {
    margin: 5rem auto auto;
}
.evtTraining img{
    display: flex;
    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    padding-top: 1rem;
    
}

.evtTraining h2{
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;

}
.evtTraining h3{
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.evtTraining p{
    display: flex;
    width: 95%;
    margin: auto auto auto;
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.evtTraining ul{
    display: flex;
    width: 90%;
    margin: auto auto auto auto;
    flex-direction: column;
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
} 

/* Table */

.evtTraining table{
    
    width: 100%;
    margin: auto auto auto;
    border: solid .25rem;
    padding: 1.5rem;
    background-color: grey;
    border-collapse: collapse;
}

caption,
th,
td {
    background-color: white;
    padding: 1rem;
    
}

td {
    text-align: left;
}

th {
    text-align: left;
    
    
}

caption {
    color: white;
    background: black;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

th,
td {
    background: hsl(0 0% 100% / .25);
    color: white;
    font-size: 1.5rem;
}   

tr:nth-of-type(2n) {
    background: hsl(0 0% 0% / .5);
}

/*trainer bio*/


.trainerBio {
    
    width: 90%;
    margin: auto auto;
    border: solid black;
    padding: 1rem;
}

.trainerBio-Head {
width: 100%;
margin: 5rem auto auto ;
text-align: center;
}

.trainerBio p{
    
    text-align: left;
    padding: .75rem;
    width: 90%;
    margin: auto auto;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5rem;

    
}

.imgHolder img{
    width: 100%;
    margin: auto auto;
}

/*contact*/

.contact {
   
    width: 100%;
    margin: auto auto;
    text-align: center;
}


/* Back to Top */

.backToTop {
position: fixed;
bottom: 2rem;
right: 1rem;
display: inline-flex;
align-items: center;
justify-content: center;
background-color: black;
text-decoration: none;
transition: 02s ease-out;
color: white;
font-size: 2rem;
padding: .5rem;
}

.backToTop span {
    color: white;
    font-size: 1.25rem;
    transition: 0.2s ease-out;
    
}


.backToTop:hover {
    background-color: blueviolet;
}

.backToTop:hover span {
    transform: translateY(-4px);
}


html {
    scroll-behavior: smooth;
}

.PrivacyPolicy {
    text-align: left;
    padding: .75rem;
    width: 90%;
    margin: auto auto;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5rem;
    border: solid;
}