*{
    margin: 0;
    padding:0;
    box-sizing:     border-box;
}
a{
    text-decoration: none;
    color: white;
}
html{
    font-family: "Open Sans",sans-serif;
}
#navbar{
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.75rem;
    height: 70px;
}
#navbar ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}
#navbar ul li a{
    padding: 0.5rem;
    
}
#navbar ul li a:hover{
    padding: 0.5rem;
    background: #336ea2;
    border-radius: 4px;
}
/* Home */
#home{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-bottom: 1px solid grey;
}
#home img{
    max-width: 100;
    height: auto;
    border-radius: 100%;
}
#home .name{
    text-align: center;
}
#home .name h2{
    margin-bottom: 0.75rem;
}
#home .name p{
    opacity: 0.6;
    font-style: italic;
}
#training{
    color: #fff;
    padding: 1rem;
    
}
#training .items{
display: flex;
justify-content: space-between;
align-items: center;
}
#training .items .item{
    width: 33%;
    text-align: center;
    padding: 0.5rem;
}
#training .items .item:hover{
    color:rebeccapurple;
    opacity: 0.6;

}
#courses{
    color: #333;
    padding: 1rem;


}
.courses{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    
}
.courses .course{
    display: flex;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
   
}
.courses .course .course-image{
    margin-right: 0.5rem;
    
    position: relative;
}
.courses .course .course-image img{

    width: 150px;

    border-radius: 5px;
}
.courses .course .course-image span{
    background: red;
    padding: 0.25rem;
    color: #fff;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;

}
.courses .course .course-info .title{
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.25rem;

}
.courses .course .course-info .description{
    opacity: 0.6;
    font-weight: 700;
    margin-bottom: 0.25rem;


}
/*Contact*/
#contact {
    color: #fff;
    padding: 1rem;

}   
 #contact .contact-form{
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
}