/* ========================================
CLASSES PREFABRIQUE
======================================== */
.flex{
    display: flex;
}
.txt-center{
    text-align: center;
}
/* ========================================
CONFIGURATION GENERALE
======================================== */
body{
    font-family: Arial, Helvetica, sans-serif;
}
h1{
    font-size: 2.4rem;
}
h2{
    font-size: 2.2rem;
    text-align: center;
}
h3{
    font-size: 1.8rem;
}
h1, h2, h3{
    font-family:"Conthrax";
}
p{
    line-height: 1.5;
}
@font-face {
    font-family:"Conthrax";
    src: url(../font/conthrax-heavy-italic.otf);
}
/* ========================================

======================================== */
.navbar{
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 2em;
    background-color: rgba(255, 0, 0, 0.633);
    position: fixed;
    top: 0;
    z-index: 1;
    width: 96%;
    border-bottom: black solid 2px;
}
.navbar-one a, .navbar-two a{
    padding: 0.5em;
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
}
.navbar-one, .navbar-two{
    align-items: center;
}
.navbar-one a{
    font-family:"Conthrax";
}
.navbar-one a:hover{
    border-bottom: solid 3px black;
}
.navbar-two{
    flex-direction: row-reverse;
}
.logo{
    border-radius: 50%;
    width: 2em;
    padding: 0.5em 0;
}
/* ========================================

======================================== */
footer{
    border-top: solid 2px black;
    justify-content: space-evenly;
    padding: 1em 0;
}
footer div{
    flex-direction: column;
}
footer a{
    color: black;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .navbar{
        padding: 0;
        padding-top: 0.5em;
        width: 100%;
        flex-direction: column;
    }
    .navbar-one{
        width: 100%;
        justify-content: space-between;
    }
    .navbar-one a{
        font-size: 0.9rem;
        padding: 0.2em;
    }
    .navbar-two{
        margin-top: 1em;
        justify-content: center;
    }
    #devis{
        display: none;
    }
    h2{
        font-size: 1.7rem;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #devis{
        display: none;
    }
    .navbar-one a{
        font-size: 0.9rem;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #devis{
        display: block;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}