/* roboto font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/* reset */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
/* color uses :Hex code: #f3ca20 and #000000

/* main style */
html,body{
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
}

a {
     text-decoration: none;
 }

/* repeated styles */

.container {
    max-width: 80%;
    margin: auto;
}

.bg-dark{
    background-color: #15171a;
    color: white;
    
}
.bg-primary {
    background-color: #15171a;
    color: white;
    
}
.bg-light{
    background-color: rgb(245, 245, 245);
    color: #15171a;
}

.text-primary{
    color:#f3ca20 ;
    text-shadow: 1px 2px 3px white;
   
}

.text-center {
    text-align: center;
    text-transform: capitalize;
}

.l-heading {
    font-size: 3rem;
    text-transform: uppercase;
}

.py-1 {
    padding: 1.5rem 0;
}

.p-1{
    padding: 1.5rem;
}
.m-heading{
    font-size: 2rem;
}
.lead {
    font-size: 1.6rem;
}
.btn {
    background-color: #f3ca20;
    color: black;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
     

}
.btn:hover{
    background-color: #f4f4f4;
    color: #15171a;
     
     
}
.pb-2{
    padding-bottom: 2rem;
}

/* navbar */

#navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem;
    position: sticky;
    z-index: 1;
    top: 0;
}

#navbar .logo img{
    width: 80px;
    margin-left: 1rem;
}

#navbar ul {
    list-style: none;
    display: flex;
}

#navbar ul li a {
    color: white;
    padding: 1rem;
}

#navbar ul li a:hover {
    background-color: #f3ca20;
    color: #15171a;
    border-radius: 3px;
}

.box-shadow {
    box-shadow: 0 0 3px #15171a;
}
/* showcase */ 

#showcase{
    background: #15171a url(../img/showcase.jpg) no-repeat center center/cover;
    height: 100vh;
    color: white;
}

#showcase .showcase-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;

    background-color: rgb(0, 0, 0,0.8);

}

/* section : about */ 
#about .about-content{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
    
  
}

#about .about-content div, #about .about-content img {
    flex: 1;
}

#about .about-content img {
    width: 50%;
    margin-left: 1.5rem;
    border: 5px solid white;
}
 

/* section : cta */ 
#cta {
    background: url(../img/cta.jpg) no-repeat center center/cover;
    color: white;
}

#cta .cta-content{
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0,0.6);
    padding: 6rem;
}
#cta .cta-content p {
    margin: 2rem;
}

/* section programs */

#programs .boxes {
    display: flex;
    justify-content: center;
    align-items: center;
}

#programs .boxes .box{
    flex: 1;
    padding: 1rem;
}

#programs .boxes .box img {
    width: 70px;
    background-color: #f3ca20;
    padding: 0.6rem;
    border-radius: 100%;
}

/* trainers */ 

#trainers .trainers-boxes  {
    display: flex;
}
#trainers .trainers-boxes .trainer-box{
    background-color: white;
    flex: 1;
    border-radius: 5px;
    margin: 1rem;
}

#trainers .trainers-boxes .trainer-box img{
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
#trainers .trainers-boxes .trainer-box ul {
    display: flex;
    list-style: none;
}

#trainers .trainers-boxes .trainer-box ul li a {
    color: #15171a;
    margin-right: 10px;
}
#trainers .trainers-boxes .trainer-box ul li a:hover{
    color: #f3ca20;
}

/* section:contact */

#contact {
    display: flex;
}

#contact .contact-us , #contact #map{
    flex: 1;
}

#contact .contact-us input,#contact .contact-us textarea {
    width: 100%;
    padding: .5rem;
    font-size: 16px;
    border: none;
    border-radius: 2px;
    margin-bottom: 1rem;
    outline: none;
}

#contact .contact-us .form-group{
    display: flex;
     
}


#contact .contact-us .form-group input[type="text"]{
    margin-right: 0.4rem;
     
}
