
/***************
****************
    GLOBAL
***************
****************/


*{
    box-sizing: border-box;
}


html{
    font-size: 62.5%;
}

body{
    font-size: 1.6rem;
    background: #F8F9FA;
    font-family: 'Open Sans', sans-serif;
    text-align: justify;
}

img{
    max-width: 100%;
}

h1, h2, h3, h4{
    margin: 0;
    font-weight: normal;
    font-family: 'Oswald', sans-serif;
    color: #303131;
}

h2{
    font-size: 3rem;
    padding: 40px 0;
    text-align: center;
    border-bottom: #303131 solid 1px;
    margin-bottom: 40px;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

li{
    padding: 10px 0;
}

a{
    color: black;
    text-decoration: none;
    transition: 0.3s all ease;
}

a:hover{
    text-decoration: none;
    transition: 0.3s all ease;
}

.scrollButton{
    font-size: 2.5rem;
    color: #FFFFFF;

    display: block;
    width: 77px;
    padding: 20px 0;
    margin: 0 auto;
    background: #303131;
    border-radius: 50%;

    transition: 0.3s all ease;
}

.scrollButton:hover{
    color: #303131;
    background: #F8F9FA;
    transition: 0.3s all ease;
    
}


.parallax {
     
   
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

#backTop{
    display: none;
}
/*=================
===================
    HEADER
===================
==================*/

.navbar {
    background: #303131;
    padding: 10px 0;
}

    .navbar-toggler{
        margin: 0 auto;
    }

        .navbar-toggler-icon i{
            color: #F8F9FA;
            font-size: 2rem;
        }

        .navbar-toggler:hover, .navbar-toggler-icon:hover i {
            color: #B3B3B3;
        }

    .navbar-nav{
        margin: 0 auto;
        text-align: center;
    }

    .navbar-nav li{
        padding: 10px 20px;
    }

    .nav-link{
        color: #FFFFFF;
    }

    .nav-link:hover{
        text-decoration: none;
        color: #B3B3B3;
    }

/*==================
====================
MAIN
====================
====================*/

    /*SECTION D'ACCUEIL*/

    #welcome{
        /*image parallax*/
        background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../img/osteo2.jpg");
        min-height: 100vh;
        display: flex;
        align-items: center;

        padding: 80px 0;

        -moz-box-shadow: inset 0px 0px 10px 0px #656565;
        -webkit-box-shadow: inset 0px 0px 10px 0px #656565;
        -o-box-shadow: inset 0px 0px 10px 0px #656565;
        box-shadow: inset 0px 0px 10px 0px #656565;
        filter:progid:DXImageTransform.Microsoft.Shadow(color=#656565, Direction=NaN, Strength=10);
    }

        #welcome > div {
            text-align: center;
        }

            #welcome > div > h1{
                font-size: 6rem;
                margin: 1rem auto;
            }

            #welcome > div ul{
                padding: 20px 0;
                margin-bottom: 30px;
            }

                #welcome > div ul li:first-child{
                    font-size: 3rem;
                    letter-spacing: 1rem;
                    padding-left: 10px;
                    font-weight: bold;
                }

                #welcome > div ul li:nth-child(2){
                    border-bottom: #303131 solid 1px;
                    padding-bottom: 40px;
                    margin-bottom: 20px;
                }

                #welcome > div ul li:nth-child(3){
                    padding-top: 20px;
                    font-size: 4rem;
                    letter-spacing: 0.5rem;
                    font-weight: bold;
                    font-family: 'Oswald', sans-serif;
                }



    /*SECTION DEFINITION*/


    #definition > div {
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: #B3B3B3 solid 1px;    
    }

    #definition > div:last-child{
        margin-bottom: 0;
        border: none;
    }

        #definition > div > q {
            display: block;
            line-height: 4rem;
        }
        #definition > div > q::after, #definition > div > q::before{
            font-size: 2rem;
            color: #B3B3B3;
            font-weight: bold;
            padding: 5px;
        }

        #definition > div > cite {
            color: #B3B3B3;
            display: block;
            padding: 10px 0 0;
        }




    /*SECTION HONORAIRES*/

    #honoraire{
        /*image parallax*/
        background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../img/honoraires.jpg");

        -moz-box-shadow: inset 0px 0px 10px 0px #656565;
        -webkit-box-shadow: inset 0px 0px 10px 0px #656565;
        -o-box-shadow: inset 0px 0px 10px 0px #656565;
        box-shadow: inset 0px 0px 10px 0px #656565;
        filter:progid:DXImageTransform.Microsoft.Shadow(color=#656565, Direction=NaN, Strength=10);
    }

        #honoraire > .container{
            padding-bottom: 40px;
        }

            #honoraire > .container  ul{
                text-align: center;
            }

            #honoraire > .container  ul li:first-child{
                font-size: 2.5rem;
                font-weight: bold;
                letter-spacing: 0.2rem;
            }

        #honoraire aside{
            background: #303131;
            padding: 40px 0;
        }

            #honoraire aside ul{
                color: #FFFFFF;
                text-align: center;
            }

                #honoraire aside ul a{
                    color: #FFFFFF;
                    text-decoration: none;
                }

                #honoraire aside ul > a > li{
                    border: #FFFFFF solid 1px;
                    width: 200px;
                    margin: 20px auto;
                    transition: 0.3s all ease;
                }

                #honoraire aside ul > a:hover > li {
                    color: #303131;
                    background: #F8F9FA;
                    transition: 0.3s all ease;  
                }

                #honoraire aside ul > li:last-child{
                    padding: 0;
                }
    
    /*SECTION CONTACT*/

    #contact{
        text-align: center;

        /*image parallax*/
        background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../img/osteo3.jpg");
       

        -moz-box-shadow: inset 0px 0px 10px 0px #656565;
        -webkit-box-shadow: inset 0px 0px 10px 0px #656565;
        -o-box-shadow: inset 0px 0px 10px 0px #656565;
        box-shadow: inset 0px 0px 10px 0px #656565;
        filter:progid:DXImageTransform.Microsoft.Shadow(color=#656565, Direction=NaN, Strength=10);

    }

        #contact .container{
            min-height: 100vh;
            padding-bottom: 40px;
        }

        #contact .container iframe{
            width: 100%;
        }

        #contact .container ul{
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            
            padding: 20px 0;
            border-bottom: #303131 solid 1px;
            margin-bottom: 30px;
        }

        #contact .container a:hover{
            color: #656565;
        }


    /*MENTIONS LÉGALES*/


    #legal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 300; /* Sit on top */
        padding-top: 100px; /* Location of the box */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    }
    

    #legal-content, #legal-content h2, #legal-content h3, #legal-content p, #legal-content a{
        color: #B3B3B3;
    }



/*====================
======================
FOOTER
======================
=====================*/
footer{
    padding: 20px;
    text-align: center;
    background: #303131;
    color: #FFFFFF;
}

    footer p{
        font-family: 'Oswald', sans-serif;
    }

    footer a{
        color: #FFFFFF;
    }

    footer a:hover{
        color: #B3B3B3;
    }

/******************
*******************
*******************
UN PEU DE RESPONSIVE
*******************
*******************
******************/



/*************
DESKTOP
**************/

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

    .navbar {
        padding: 0;
    }

    .parallax{

         /* Create the parallax scrolling effect */
    background-attachment: fixed;
    }

    .scrollButton{
        display: none;
    }

    /*BOUTON BACK TO TOP DYNAMIQUE*/

    #backTop{
        display: block;
        color: #303131;
        text-shadow: #FFFFFF 0 0 2px;
        width: 80px;
        padding: 50vh 20px 0;
        min-height: 100vh;
        text-align: center;
        font-size: 3rem;
        position: fixed;
        top: 0;
        right: 0;
        transition: 0.3s all ease;
    }

    #backTop:hover{
        background: rgba(255, 255, 255, 0.7);
        color: #B3B3B3;
        text-shadow: none;
        transition: 0.3s all ease;
    }
    
    
}

/*************
DESKTOP LARGE
**************/

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

    #contact .container{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

        #contact .container h2{
            flex-basis: 100%;
        }

        #contact .container ul, #map{
            flex: 1 auto;
        }

        #contact .container ul{
            border: none;
            text-align: left;
            padding-left: 20px;
        }





    .clearfix{
        flex-basis: 100%;

        margin-top: 40px;
        padding: 20px 0;
        
        border-top: #303131 solid 1px;
    }

        


}