*{
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

html,body{
    height:100%;
    margin: 0;
}


#intro{
    height:100%;
    background-image: url("ressources\\Blueedge-Website-Garde.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* #intro::before {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);

    content: "";
    display: block;
    position: absolute;
    top:0;
    width: 100%; height: 100%;
  } */

#intro #slogan{
    position:relative;
    top:35%;
    left:15%;
    font-size: 3em;
    max-width:300px;
    color:white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border-bottom:10px solid white;
    border-top:10px solid white;
    text-align:center;
    padding-bottom:10px 0 10px;
}

.menu{
    z-index: 100;
    position:fixed;
    top:0;
    display:flex;
    flex-wrap: wrap;
    color:white;
    background-color:#243342;
    width:100%;
}

.menu img{
    width:60px;
    height:60px;
}

.menu a {
    padding:10px 20px;
    text-decoration: none;
    color:white;
    line-height: 2.3em;
}

.menu a:hover{
    cursor:pointer;
    background-color:#34495e;
}

.full-height{
    height: 100%;
}

.blk-img-txt{
    overflow: auto;
}

.blk-img-txt__title{
    text-align: center;
    font-size: 2.5em;
}

.blk-img-txt__content{
    display: flex;
    padding:0 30px 40px 30px
}

.blk-img-txt__img{
    width:50%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

.blk-img-txt__img > img{
    width:100%;
}

.blk-img-txt__txt{
    width:50%;
    padding-left: 20px;
    padding-right: 20px;
}


.blk-img-txt--grey{
    background-color: #ecf0f1;
}

.citation{
    padding:60px 60px;
    font-size: 2em;
    background-color:#34495e;
    color:white;
    text-align: center;
}


.citation .author{
    font-size:1em;
    color:#243342;
    font-weight: bold;
}

.citation i{
    font-size:1.5em;
    color: #243342;
}



#contact{
    height:100%;
    min-height:400px;
    background-image: url("ressources\\louvre blue.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#contact h2{
    margin:0;
    padding:60px 0;
    color:white;
    font-size:2.5em;
    text-align:center;
}

#contact p{
    position: absolute;
    text-align:center;
    width:100%;
    font-size:2em;
    color:white;
}

#contact a{
    display:block;
    padding:30px 0;
    text-decoration:none;
    color:whitesmoke;
    font-weight:bold;
}

#contact a:hover{
    text-decoration: underline;
}

#disclaimer{
    background-color: #435070;
    color:white;
    font-size:0.6em;
    padding:20px;
}

/* On screens that are 992px or less*/
@media screen and (max-width: 992px) {
    #intro{
        min-height: 350px;
    }

    #intro #slogan{
        left:50%;
        transform: translateX(-50%)
    }

    .blk-img-txt__content{
        flex-wrap: wrap;
    }

    .blk-img-txt__img,.blk-img-txt__txt{
        width:100%;
    }

    .blk-img-txt__txt{
        padding-top:20px;
    }

    #contact a{
        word-break: break-all;
        font-size:25px;
    }
}