/* You can add global styles to this file, and also import other style files */
*{
	margin: 0px;
	padding: 0px;
	font-family: "Montserrat", sans-serif; }

body{
	background-image: url(/img/background.png);
    background-attachment: fixed; 
    background-position: center; 
    background-size: cover; }

/* ------------------------------------------ */
/* Div atributes */
/* ------------------------------------------ */
#container{
    width: 100%;
    min-height: 100vh;}

#section{
    width: 100%;
    height: auto;
    float: left; }

#article{
    width: 100%;
    height: auto;
    float: left;
    padding-left: 5%;
    padding-right: 5%; }

#footer{
    width: 100%;
    height: auto; 
    padding: 5%;
    float: left;
    box-sizing: border-box;
    color: white;
    }

#footer a{
	color: white;
	text-decoration: none; }

/* ------------------------------------------ */
/* Navbar */
/* ------------------------------------------ */

@import url(https://weloveiconfonts.com/api/?family=fontawesome|typicons);
[class*="fontawesome-"]:before{
  font-family: "Montserrat", sans-serif; }

*{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif; }

#navbar{
    float: right; }

#navicon{
    float: right;
    margin-right: 15px; }

#navicon img{
    width: 35px;
    margin-left: 5px; }

header{
    width: 100%;
    height: 80px;
    background: #fff;
    color: #000;
    position: fixed;
    z-index: 100;
    padding-top: 15px;
    padding-bottom: 15px;
    box-sizing: border-box;
    border-bottom: 20px #a71F31 solid;
    border-top: 1px #fff solid;
    box-shadow: 0px 0.2px 0.6em gray; }

#menu-bar{
    display: none; }

header .logo{
    float: left;
    margin-top: 6px;
    margin-left: 2%; }

header label{
    float: right;
    font-size: 28px;
    cursor: pointer;
    margin-right: 15px; }

.menu{
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255,255,255,1);
    transition: all 0.6s;
    transform: translateX(-100%); }

.menu a{
    display: block;
    color: #5d5d5d;
    font-weight: lighter;
    font-size: 1em;
    height: auto;
    text-decoration: none;
    padding: 10px;
    margin-left: 5px;
    margin-right: 5px;
    transition: all 0.5s; }

.menu a:hover{
    text-decoration: underline;
    background: #a71F31;
    color: #fff; }

#menu-bar:checked ~ .menu{
    transform: translateX(0%); }

@media (min-width:1100px){
    .menu{
        top:55px;
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex; }

    header label{
        display: none; }
}

@media (max-width:750px){
    #searchBarNavbar {
        display: none;
    }
}

@media screen and (max-width: 1100px){
    .menu{
        top: 75px;}

    a{
        border-bottom: 3px #c6c6c6 solid; }
}

/* ------------------------------------------ */
/* Especific class */
/* ------------------------------------------ */
.bg-color-blue{
    background-color: #0065bc; }

.bg-color-red{
    background-color: #a71F31; }

.bg-color-none{
    background-color: rgba(255, 255, 255, 0.0); }

.as-none{
    color: #000;
    text-decoration: none;
    box-shadow: none;
    border-bottom: none; }

.as-none:hover{
    color: #000;
    text-decoration: none;
    box-shadow: none;
    border-bottom: none; }

.box-shadow{
  -webkit-box-shadow: 0px 0px 69px -16px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 69px -16px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 69px -16px rgba(0,0,0,0.75); }

.flotant{
  display:scroll;
  position:fixed;
  bottom:20px;
  right:30px; }

.input-style{
    width: 300px;
    padding: 5px;
    border: 2px #725091 solid;
    border-radius: 5px;
    text-align: center; }

.button-style-blue{
    width: 150px;
    padding: 7px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.3em;
    margin: 20px;
    background-color: #0065bc;
    border: 2px #0065bc solid;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s; }

.button-style-red{
    width: 150px;
    padding: 7px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.3em;
    margin: 20px;
    background-color: #a71F31;
    border: 2px #a71F31 solid;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s; }

/*
.button-style:hover{
    color: #2F6D99;
    background-color: #fff; }
*/

@media (max-width:1100px){
    .flotant{
        bottom:0px;
        right:10px; }

    #container{
        padding-left: 0%;
        padding-right: 0%; }

    .input-style, .input-style-2{
        width: 200px; }

    .gone{
        display: none; }
}