@import url('https://fonts.googleapis.com/css?family=Archivo+Narrow&display=swap');
@font-face {
	font-family: 'myriadbold';
	src: url('../inc/Myriad-Bold.otf'); 
}

/* MENU */
#burger-button{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 46px;
    height: 46px;
    background-color: #393939;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    display: none;
}

#burger-button span{
    position: absolute;
    width: 35px;
    height: 3px;
    left: 5px;
    border-radius: 10px;
    background-color: white;
}

#burger-button .burger-line1{
    top: 8px;
    opacity: 1;
    transition: 0.25s all ease;
}

#burger-button .burger-line2, #burger-button .burger-line-hidden{
    top: 21px;
    transition: 0.25s all ease;
}

#burger-button .burger-line3{
    top: 34px;
    transition: 0.25s all ease;
}

.burger-line1-active{
    opacity: 0 !important;
}

.burger-line2-active{
    transform: rotate(45deg) !important;
    background-color: #e40613 !important;
}

.burger-line3-active{
    opacity: 0 !important;
}

.burger-line-hidden-active{
    transform: rotate(-45deg) !important;
    background-color: #e40613 !important;
}

#mobile-menu-container{
    position: fixed;
    top: 105px;
    right: 0px;
    margin-right: -350px;
    width: 350px;
    background-color: #e40613;
    height: auto;
    font-size: 1.4em;
    border-left: 1px solid #393939;
    border-bottom: 1px solid #393939;
    transition: 0.5s all ease;
    z-index: 9;
    /* display: none; */
}

.active-menu{
    margin-right: 0 !important;
}

#mobile-menu-container ul{
    position: relative;
    height: auto;
}

#mobile-menu-container a{
    position: relative;
    width: 100%;
    color: white;
    text-align: center;
}

#mobile-menu-container li{
    padding: 25px 0 10px 0;
    color: white;
    border-bottom: 1px solid white;
}

#mobile-menu-container p{
    width: 60%;
    text-transform: uppercase;
}

#mobile-menu-container img{
    height: 40px;
}
/* MAIN CSS  */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: 'myriadbold', sans-serif; */
}

body{
    width: 100%;
    font-size: 16px;
    font-family: 'Archivo Narrow', sans-serif;
}

main{
    margin-top: 105px !important;
}

span{
    font-weight: bold;
}

ul {
    list-style:none;
}


.uppercase{
    text-transform: uppercase;
    font-weight: 100;
}

.container{
    width: 85%;
    margin: auto auto;
    display: flex;
}

.flex{
    flex: 1;

}

.form-item{
    display: block;
    font-size: 1.2em;
    width: 100%;
}

.no-padding-top{
    padding-top: 0;
}

.margin-left{
    margin-left: 15px;
}

.button{
    display: inline-block;
    width: auto;
    margin-top: 45px;
    background-color: #e40613;
    padding: 20px 10px 20px 10px;
    color: white;
    /* font-weight: bold; */
    border: none;
    transition: 0.5s all ease;
}

.button:hover{
    background-color: #3c3b38;
}


header{
    width: 100%;
    height: 105px;
    color: #3c3c3b;
    position: fixed;
    top: 0;
    background-color: white;
    box-shadow: 0 1px 4px 1px rgb(124, 124, 124);
    z-index: 10;
}

header .container{
    width: 95%;
    left: 5%;
    position: fixed;
    display: flex;
}

a{
    color: #393939;
    text-decoration: none;
}


/* MAIN MENU */

#logo-principal{
    display: inline-block;
    width: 30%;
}

#logo-principal img{
    width: 300px;
    margin-top: 7px;
}

.menu-info{
    width: 25%;
    text-align: right;
    padding-right: 20px;
    font-size: 1.1em;
}

.mail{
    font-weight: bold;
}

.phone{
    font-size: 1.5em;
    
}

#main-menu{
    min-width: 696px;
    width: 45%;
    
}


.menu-social{
    margin-top: 32px;
    width: 15%;
    height: 41px;
    text-align: center;
}

.menu-social img{
    vertical-align: middle;
    padding-right: 2px;
    padding-left: 10px;
}

.button-soumission{
    background-color: #e30613;
}

.button-cabanons, .button-garages{
    background-color: #e2e2da;
}

.menu-link .button-cabanons, .menu-link .button-garages{
    background-color: #e30613;
}

.button-cabanons, .button-garages, .button-soumission{
    position: relative;
    margin: 0;
    padding: 0;
    width: 229px;
    height: 102px;
}

.button-cabanons img, .button-garages img, .button-soumission img{
    position: absolute;
    padding: 0;
    margin: 0;
}

.button-soumission img{
    width: 36px;
    top: 15px;
    left: 98px;
}

.button-cabanons img, .button-garages img{
    width: 67px;
    top: 15px;
    left: 81px;
}

.button-soumission p{
    color: white;
}

.button-cabanons p, .button-garages p, .button-soumission p{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 10px;
    font-weight: bold;
}

#main-menu ul, #main-menu li{
    display: inline-block;
}

#main-menu li:hover{
    cursor: pointer;
}

#sub-menu-garage, #sub-menu-soumission, #sub-menu-cabanon{
    display: none;
    position: absolute;
    height: auto;
    top: 100px;
    z-index: 11;
    border-top: 5px solid #e30613;
    width: 100%;
}

#sub-menu-soumission{
    border-top: 5px solid #3c3b38;
}

.sub-menu{
    height: auto;
}

.sub-menu a{
    color: white;
    background-color: #3e3d3b;
    margin: 3px 0 3px 0;
    display: block;
    width: 100%;
    text-align: center;
    height: 35px;
    line-height: 35px;
    border: 1px solid #696969
}

.sub-menu a:hover{
    background-color: #e30613;
}

/* SECTION CONTAINER */

section{
    font-size: 1.3em;
    padding: 100px 0 50px 0;
}

section .flex p, section .flex div, section .flex h1, section .flex h2, section .flex img {
    width: 80%;
    margin-left: 10%;
}

section .flex h2{
    margin-bottom: 50px;
    font-size: 1.2em;
}


/***************** PAGE HOME *****************/

.main-title{
    color: #3e3d3b;
}

.main-title h1{
    font-size: 2.2em;
}

/* SLIDER */

h2{
    font-size: 1em;
}

#slider{
    
    width: 100%;
    padding:0;
    border-bottom: 5px solid #e30613;
}

#slider img{
    width: 100%;
}

.slider-small{
    display: none;
}

.slider-big{
    display: block;
}

/* HOME BANNER */

#home-banner{
    width: 100%;
    height: 222px;
    background-image: url('../images/bandeau-accueil-maison.jpg');
}

#home-banner .container{
    width: 65%;
}

.circle{
    flex: none;
    width: 212px;
    height: 212px;
    margin: 5px auto 0 auto;
    border-radius: 50%;
    background-color: rgb(255, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding-top: 50px;
    font-size: bold;
}

.circle p{
    width: 80%;
    margin: auto auto;
    font-size: 1.2em;
}

.circle img{
    margin-top: 25px;
}

#home-reviews{
    background-color: #3c3b38;
    color: white;
}

#home-reviews .container{ 
    margin: 50px auto;
}

#home-reviews .container .flex{
    text-align: center;
}

#home-reviews .container .flex:nth-of-type(2){
    text-align: left;
}

#home-reviews .container .flex img{
    width: 10%; 
    margin: 0 1%;
}

#home-reviews p{
    font-size: 2em;
    font-weight: bold;
    color: white;
}

#home-reviews p span{
    font-weight: 100;
    font-size: 0.75em;
}

/* HOME SECTION CABANON AND GARAGES*/

hr.red-line{
    margin-left: 10%;
    width: 250px;
    border: 2px solid #e30613;
    margin-bottom: 25px;
}

#home-section-garage{
    padding-top: 0;
}


.mobile-image{
    display: none;
}

#home-section-construction.container{
    width: 100%;
    height: auto;
    padding:0;
    background-color: #3c3b38;
    color: white;
}

#image-construction{
    width: 628px;
    height: 428px;
    background-image: url(../images/kit-du-bricoleur.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
}

#home-section-construction p{
    width: 65%;
}

#home-section-construction hr{
    margin-top: 60px;
}


#home-section-construction .button{
    margin-top: 25px;
}

#home-section-construction .button:hover{
    background-color: white;
    color: #3c3b38;
}

#home-section-personnalisable{
    width: 100%;
    padding:0;
}

#home-section-personnalisable .flex{
    width: 100%;
    text-align: center;
    padding-top: 25px;
}

#home-section-personnalisable img{
    position: relative;
    width: 886px;
    height: 260px;
    margin: 0;
}

#home-section-personnalisable h2{
    color: white;
    padding: 25px;
}



#home-section-personnalisable #garantie-3ans{
    position: absolute;
    width: 98px;
    height: 98px;
    top: 25%;
    right: 15px;
}

#home-section-personnalisable #garage-fontaine-logo{
    position: absolute;
    width: 266px;
    height: 58px;
    bottom: 15px;
    right: 15px;
}

section#home-section-partners{
    padding-top: 50px;
}

#home-section-partners{
    text-align: center;
}

#home-section-partners hr{
    display: block;
    margin: 0 auto 25px auto;
}

#home-section-partners h2{
    width: 95%;
    margin: auto auto;
    padding-bottom: 40px;
    text-align: center;
    font-size: 1.60em;
}

#logo-partners{
    text-align: center;
    width: 90%;
    margin: 50px auto 0 auto;
}

#logo-partners img{
    display: inline-block;
    padding-left: 20px;
}


/***************** PAGE SOUMISSION *****************/

#page-soumission{
    color: #3F3D3B;
}


#page-soumission #page-title h1{
    font-size: 2.8em;
    width: 70%;
    text-transform: uppercase;
}

#page-soumission  h2{
    font-size: 1.8em;
    margin-bottom: 25px;
    text-transform: uppercase;
}

section#soumission-container{
    padding-top: 50px;
}

button[type='submit']{
    font-size: 1.3em;
    cursor: pointer;
}

#page-soumission form{
    width: 49%;
    margin-right: 1%;
}

#page-soumission #resultats{
    width: 30%;
    margin-left: 15%;
    z-index: 8;
}

#page-soumission #resultats p{
    font-size: 1.2em;
    margin-bottom: 25px;
}

#page-soumission #resultats h2{
    border-bottom: 2px solid #e30613; 

}

#show-selection-mobile{
    display: none;
    text-transform: uppercase;
    background-color: #3F3D3B;
    transition: none;
}


#remove-selection-mobile{
    position: absolute;
    right: 15px;
    top: 25px;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #e30613;
    display: none;
    font-size: 1.5em;
    width: 40px;
    height: 43px;
    line-height: 40px;
    text-align: center;
    transition: 1s all ease;
}

#remove-selection-mobile:hover{
    background-color: white;
    color: #e30613;
}
#page-soumission .image-container{
    background-color: #e30613; 
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

#page-soumission .image-container img{
    display: block;
    width: 100%;
}


#page-soumission input, #page-soumission select{
    margin-bottom: 20px;
}

#select-container{
    width: auto;
    margin: 55px 0;
    font-size: 1.2em;
}

#select-container label{
    display: inline-block;
    width: auto;
    background-color: #393938;
    font-size: 1.2em;
    color: white;
    height: 41px;
    line-height: 41px;
    padding: 0 5px;
}

#select-container select{
    position: relative;
    display: inline-block;
    width: auto;
    left: 0;
    vertical-align: top;
}

#select-container input{
    height: 42px;
    font-size: 1.1em;
    vertical-align: top;
    padding-left: 15px;
}

#select-container label:nth-of-type(2){
    margin-bottom: 15px
}

#dimensions-perso{
    vertical-align: top;
}

#product-dimension{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-color: #e3e3db;
    height: 41px;
    font-size: 1em;
    overflow: hidden;
}


#select-container button:hover{
    background-color: #e30613;
}

.flex #select-container button img{
    height: 100%;
    width: 48px;
    margin: 0;
}

#select-container button{
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-color: #393938;
    border: none;
    
    outline: none;
    cursor: pointer;
    transition: 0.5s all ease;
    height: 41px;
}

#page-soumission #select-container div{
    display: inline-block;
}

option:hover{
    background-color: #e30613;
    color: white;
}

/***************** PAGE NOUS JOINDRE (CONTACT) *****************/
#page-contact{
    color: #3F3D3B;
}

#page-contact #page-title h1{
    font-size: 2.8em;
    width: 100%;
    background: none;
    text-transform: uppercase;
}

#nous-joindre div:first-child{
    width: 45%;
    margin-right: 5%;
}

#nous-joindre form{
    width: 100%;
}

#info-container{
    width: 45%;
    margin-left: 5%;
    height: auto;
}

#info-container .red-line{
    padding: 0;
    margin-left: 0;
}

#info-container .container {
    width: 100%;
}

#info-container .container a {
    width: 49%;
}

#iframe-container{
    border: 1px solid #e30613;
    width: 100%;
}

#page-contact input, #page-contact textarea{
    margin-bottom: 25px;
}

#nous-joindre h2{
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

#nous-joindre h3{
    font-size: 1.5em;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

#nous-joindre #info-container p{
    font-size: 1.2em;
}

#nous-joindre iframe{
    width: 100%;
}

#nous-joindre table{
    margin: 0;
}
/***************** PAGE GARAGE *****************/
#page-garage .container{
    width: 80%;
}
#page-garage h1{
    color: white;
    background: none;
    text-transform: uppercase;
    font-size: 2.5em;
    width: 65%;
    margin-left: 40px;
}

#page-garage h1 span{
    display: block;
}

#page-garage #page-title{
    height: 271px;
    padding-top: 75px;
    background-image: url("../images/garage-brick-banner.jpg");
}



#page-title .container img{
    height: 130px !important;   
}

#page-garage h2{
    font-weight: 100;
    text-transform: uppercase;
    font-size: 1.60em;
    width: 68%;
}

#page-garage h2 span{
    display: block;
}

#page-garage h2 .red-line{
    margin: 20px 0 0 0 ;
}

#text-garage p{
    width: 70%;
    margin-top: 50px
}

#all-garages{
    padding-top: 0;
}

#all-garages .container{
    margin-top: 50px;
}

.product{
    position: relative;
    width: 30%;
    height: 700px;
    margin: auto auto;
    padding-bottom: 25px;
    background-color: #f6f6f2;
}


.product img{
    width: 96%;
    margin: 2%;
}

.product .title{
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    font-size: 1.2em;
}

.product .title span{
    font-weight: bold;
}

.product p{
    padding: 5px 0 5px 0;
    text-align: center;
    width: 85%;
    margin: auto auto;
}

.product .button{
    position: absolute;
    width: 60%;
    text-align: center;
    font-weight: 100;
    bottom: 25px;
    left: 20%;
    transition: 0.5s all ease;
}


/***************** PAGE PRODUIT *****************/
select{
    cursor: pointer;
    z-index: 2;
}

option{
    /* font-size: 0.85em; */
}

option:hover{
    color: white;
    background-color: #e30613;
}

option:focus{
    background-color: #e30613;
}

#text-product .flex{
    width: 49%;
}

#page-products #page-title h1{
    font-size: 2.8em;
    width: 100%;
}

#text-product h2{
    text-transform: uppercase;
    font-size: 1.5em;
    margin: 0;
}

#description-product hr.red-line{
    margin: 10px 0;
}

#description-product p{
    width: 90%;
    padding: 0;
    margin: 25px 0;
    font-size: 1.1em;
}

#text-product .img-container{
    margin:0;
    width: 100%;
}



#text-product #small-imgs{
    position: relative;
    flex-direction: row;
    width: 100%;
    height: 70px;
    margin: 0;
}

#text-product #small-imgs button{
    width: 25px;
}

#text-product #small-imgs #small-imgs-container{
    position: relative;
    width: auto;
    max-width: 100%;
    overflow: hidden;
    margin:0;
}

#text-product #small-imgs #small-imgs-container div{
    position: absolute;
    margin:0;
    padding:0;
    left: 0px;
    width: auto;
    height: 70px;
    border-top: 2px solid #e40613;
    border-bottom: 2px solid #e40613;
    font-style: 0;
}

#text-product #small-imgs img{
    position: relative;
    display: inline-block;
    width: 100px;
    margin: 0;
    cursor: pointer;
    padding: 0;
    float: left;
    border-right: 2px solid #e40613;
}

.active-small-image{
    background-color: #e40613;
    opacity: 0.5;
}

#back-image-button, #next-image-button{
    background-color: #e40613;
    color: white;
    cursor: pointer;
    border: none;
}


#text-product a.button{
    margin-top: 10px !important;
}

section#specification{
    flex-direction: column;
}

#nav-specification{
    margin: 0;
    height: auto;
    padding: 0;
    width: 100%;
    color: white;
}

/* #nav-specification div{
    position: relative;
    background-color: #393938;
    height: 100px;
    width: 19%;
    margin: 0 1% 0 0;
    transition: 0.5s all ease;
    cursor: pointer;
} */

.specs-button{
    position: relative;
    background-color: #393938;
    height: 100px;
    width: 19%;
    margin: 0 1% 0 0;
    transition: 0.5s all ease;
    cursor: pointer;
    display: flex;
    text-align: center;
}

.specs-button:hover{
    background-color: #e30613;;
}

.specs-button img{
    height: 75px;
    margin: 15px;
}

.specs-button p{
    flex: 0 0 auto;
    line-height: 100px;
    text-align: center;
    font-size: 0.9em;
    text-transform: uppercase;
}

#specifications-content{
    position: relative;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
    border: 2px solid #e30613;
}

#features-container, #doors-container, #windows-container, #colors-container, #ornaments-container{
    display: none;
    position: relative;
    width: 95%;
    height: 100%;
    margin: auto auto;
}

#features-container{
    display: block;
}

#features-container .container{
    width: 98%;
    margin: 25px auto 0 auto;
}

#features-container .container ul{
    list-style: initial;
    width: 90%;
    margin-left: 5%;
    font-size: 0.9em;
    padding: 0 10px;
}

#features-container .container li{
    margin-bottom: 8px;
}

.feature-title{
    width: 100%;
    height: auto;
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
    margin: 50px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e30613;
}

.feature-title span{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background-color: #e30613;
    color: white;
}

.features-category{
    flex: 1;
    width: 30%;
}


.features-category p{
    width: 100%; 
    font-weight: bold;
    font-size: 1em;
    padding: 15px;
    text-transform: uppercase;
}

#doors-container div, #windows-container div{
    position: relative;
    display: inline-block;
    height: auto;
    width: auto;
    margin: 20px;
    cursor: pointer;
}


#doors-container img, #windows-container img{
   vertical-align: middle;
}

#colors-container p {
    font-size: 1.2em;
    border-bottom: 2px solid #e30613;
    text-transform: uppercase;
    font-weight: bold;
    margin: 50px 0 25px 0;
}

#colors-container div{
    display: inline-block;
    margin: 0 20px;
}

#ornaments-container .ornament{
    display: inline-block;
    position: relative;
    width: 200px;
    height: 200px;
    /* border: 1px solid #e30613; */
    margin: 20px;
    -webkit-box-shadow: 2px 2px 4px 1px rgba(130,130,130,1);
    -moz-box-shadow: 2px 2px 4px 1px rgba(130,130,130,1);
    box-shadow: 2px 2px 4px 1px rgba(130,130,130,1);
}

.ornament p{
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.ornament img{
    position: absolute;
    top: 15px;
    left: 31px;
}

.active-button-specs{
    background-color: #e30613;
    height: 110px !important;
}

#bigImageContainer{
    position: fixed;
    top: 0;
    left:0;
    width: 0px;
    height: 100vh;
    background-color: rgba(46, 45, 45, 0.75);
    z-index: 1;
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease;
    
}

#bigImageContainer #removeBigImage{
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    bottom: 20%;
    width: 125px;
    background-color: #e30613;
    line-height: 42px;
    text-align: center;
    font-size: 1.2em;
    color: white;
    cursor: pointer;
}

.active-bigImageContainer{
    z-index: 1;
    opacity: 1;
}

#bigImage{
    position: relative;
}

/* FOOTER */

#home-section-partners .img-40ans{
    width: 175px;
    margin: 0;
}

footer{
    padding: 40px 0 40px 0;
    background-color: #e3e3db;
}

footer .container{
    width: 75%;
}

footer .flex{
    flex: 1 0 auto;
}

footer table{
    width: 90%;
    margin-left: 15px;
}


#logo-footer{
    width: 250px;
    margin-right: 25px;
}

#footer-menu{
    /* width: 70%; */
    text-align: center;
}

footer li{
    display: inline-block;
    text-transform: uppercase;
    padding-left: 15px;
}

footer .menu-social{
    width: 100%;
    margin-top: 0;
    text-align: right;
}

footer .container .flex:nth-child(4) p{
    text-align: right;
}

footer .fb-page{
    display: flex;
}

footer .fb-page-bottom{
    display: none !important;
    margin-top: -50px;
}

p.copy{
    display:inline-block;
    width:49%;
    margin:0;
}

p.ymark{
    display:inline-block;
    width:49%;margin:0;
    text-align:right;
}

/*************************************************************************** 

    MEDIA QUERIES 
    
****************************************************************************/

@media only screen and (max-width: 1736px) {
    .specs-button img{
        margin: 25px 10px;
        height: 50px;
    }

    .specs-button p{
        
        /* font-size: 0.7em; */
    }
    
}

@media only screen and (max-width: 1536px) {
    #menu-container {display:none;}
    .conteneur{width:1400px;margin:0 auto;}
    
    footer{
        font-size: 0.9em;
    }

    #home-section-construction p{
        font-size: 1em;
    }


/***************** PAGE GARAGE *****************/

#nous-joindre h2{
    font-size: 1.5em;
}

#nous-joindre .container{
    flex-direction: column;
    
}

#page-contact .page-title{
    height: auto;
}

#text-product{
    font-size: 0.8em;
}


/***************** PAGE PRODUCTS *****************/

}

@media only screen and (max-width: 1415px){
    
    
    header .menu-info{
        display: none;
    }
    
    .circle{
        flex: none;
        width: 189px;
        height: 189px;
        
    }
    
    .circle p{
        font-size: 0.9em;
    }
    
    .circle img{
        margin-top: 25px;
    }
    
    /***************** PAGE SOUMISSION *****************/
    #page-soumission #page-title{
        background: none;
    }
    
    /***************** PAGE GARAGE *****************/
    #page-garage .container{
        width: 80%;
    }
    
    #page-garage h1{
        color: white;
        text-transform: uppercase;
        font-size: 2.2em;
        width: 65%;
        margin-left: 40px;
    }
    
    #page-garage h1 span{
        display: block;
    }
    
    #page-title{
        height: 271px;
        padding-top: 75px;
    }
    
    
    #page-garage #page-title{
        background-image: url("../images/garage-brick-banner.jpg");
    }
    
    
    #page-title .container img{
        height: 110px !important;   
    }
    
    #page-garage h2{
        font-weight: 100;
        text-transform: uppercase;
        font-size: 1.60em;
        width: 63%;
    }
    
    #page-garage h2 .red-line{
        margin: 20px 0 0 0 ;
    }
    
    #text-garage p{
        width: 70%;
        margin-top: 50px
    }
    
    #all-garages{
        padding-top: 0;
    }
    
    #all-garages .container{
        margin-top: 50px;
    }
    
    .product{
        width: 30%;
        height: 580px;
        margin-right: 3%;
        padding-bottom: 25px;
        background-color: #f6f6f2;
    }
    
    
    .product img{
        width: 96%;
        margin: 2%;
    }
    
    .product .title{
        text-transform: uppercase;
        width: 100%;
        text-align: center;
        font-size: 1.2em;
    }
    
    .product .title span{
        font-weight: bold;
    }
    
    .product p{
        padding: 5px 0 5px 0;
        text-align: center;
        width: 85%;
        margin: auto auto;
    }
    

    
    
    /***************** PAGE PRODUCTS *****************/
    
    .specs-button img{
        margin: 25px 10px;
        height: 50px;
    }
    
    .specs-button p{
        
        font-size: 0.65em;
    }
    /***************** PAGE CONTACT *****************/
    #page-contact #page-title{
        height: auto;
    }
    
    /*********** FOOTER *************/
    footer li{
        display: block;
        margin:auto auto;
        text-align: left;
        padding-bottom: 10px;
    }

    footer .fb-page{
        display: none;
    }

    footer .fb-page-bottom{
        display: block !important;
    }
}

@media only screen and (max-width: 1280px){
    
    #home-banner .container{
        width: 80%;
    }
    
    #logo-principal{
        padding-right: 10px;
    }
    
    .menu-social img{
        width: 40px;
    }

    header .menu-social{
        text-align: center;
        margin: 0;
    }

    header .menu-social img{
        display: block;
        height: auto;
        margin: 2px 0 0 50px;
    }

    #main-menu{
        min-width: 550px;
    }


    #product-dimension{
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        
        background-color: #e3e3db;
        height: 41px;
        font-size: 0.8em;
        overflow: hidden;
    }
    
    .button-cabanons, .button-garages, .button-soumission{
        position: relative;
        margin: 0;
        padding: 0;
        width: 170px;
        height: 102px;
    }
    
    .button-cabanons img, .button-garages img, .button-soumission img{
        position: absolute;
        padding: 0;
        margin: 0;
    }
    
    .button-soumission img{
        width: 36px;
        top: 15px;
        left: 72px;
    }
    
    .button-cabanons img, .button-garages img{
        width: 57px;
        top: 15px;
        left: 59px;
    }
    
    #home-section-construction.container{
        flex-direction: column;
        padding-bottom: 15px;
    }

    #home-section-construction p, #home-section-construction h2, #home-section-construction hr.red-line{
        margin-left: 10%;
    }

    #home-section-construction p, #home-section-construction h2{
        width: 80%;
    }

    #image-construction{
        margin: auto auto;
    }


 /***************** PAGE PRODUCTS *****************/
    
    .specs-button{
        flex-direction: column;
    }

    .specs-button img{
        margin-top: 10px;
        height: 50px;
        width: auto;
    }

    .specs-button p{
        line-height: 0px;
        font-size: 0.65em;
    }

}

@media only screen and (max-width: 1124px) {
    
    #select-container label{
        font-size: 0.9em;
    }

    #main-menu{
        min-width: 550px;
    }


    #product-dimension{
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        
        background-color: #e3e3db;
        height: 41px;
        font-size: 0.8em;
        overflow: hidden;
    }
    
    .button-cabanons, .button-garages, .button-soumission{
        position: relative;
        margin: 0;
        padding: 0;
        width: 170px;
        height: 102px;
    }
    
    .button-cabanons img, .button-garages img, .button-soumission img{
        position: absolute;
        padding: 0;
        margin: 0;
    }
    
    .button-soumission img{
        width: 36px;
        top: 15px;
        left: 72px;
    }
    
    .button-cabanons img, .button-garages img{
        width: 57px;
        top: 15px;
        left: 59px;
    }


    .main-title{
        font-size: 0.9em;
    }

    
    #logo-principal img{
        width: 250px;
    }



/*********** PAGE GARAGE **************/

    #page-garage h1{
        font-size: 1.8em;
    }

    #page-title .container img{
        height: 90px !important;   
    }


    #all-garages .container{
        flex-direction: column;
    }

    .product{
        height: 700px;
        width: 75%;
        margin: 25px auto 25px auto;
    }
    
    #logo-footer{
        width: 175px;
    }

    footer .container{
        width: 98%;
    }
    
}

@media only screen and (max-width: 1024px){
    .slider-small{
        display: block;
    }

    .slider-big{
        display: none;
    }

    #burger-button{
        display: block;
    }

    #logo-principal{
        flex: 0 0 auto;
        padding: 0;
        min-width: 15%;
        width: 30%;
    }

    #main-menu, .menu-social{
        display: none;
    }

    #mobile-menu-container {
        display:block;
    }

    #menu-container a{
        text-decoration: none;
    }
}

@media only screen and (max-width: 900px) {

    


    .container{
        width: 100%;
    }

    header{
        background-color: white;
    }


    main .container{
        flex-direction: column;
    }


    #home-section-cabanon{
        flex-direction: column-reverse;
    }

    #home-banner .container{
        width: 100%;
        height: 222px;
    }
    
    #home-banner .container{
        flex-direction: row;
    }
    
    .mobile-image{
        display: block;
        width: 100%;
        margin-top: 25px;
    }

    .large-image{
        display: none;
    }

    h1{
        padding-bottom: 45px;
    }

    #home-section-personnalisable img{
        width: 100%;
        height: auto;
    }

    /***************** PAGE SOUMISSION *****************/
    /* #page-soumission .container{
        flex-direction: column;
    } */

    #page-soumission #page-title h1{
        margin-top: 25px;
        font-size: 2.8em;
        background: none;
        width: 100%;
    }

    #page-soumission form{
        position: relative;
        width: 80%;
        margin: auto auto;
    }
    
    #page-soumission .button{

        width: 100%;
        text-align: center;
    }

    #page-soumission #resultats{
        position: fixed;
        top: 90px;
        background-color: #393938;
        color: white;
        border: 2px solid #e30613;
        width: 90%;
        margin: 0;
        padding: 75px 0;
        right: -1000px;
        transition: 0.5s all ease;

    }

    #show-selection-mobile{
        display: block;
    }
    

    #page-soumission #resultats{
        display: block;
        /* width: 100%; */
    }

    #remove-selection-mobile{
        top: 15px;
    }

    #remove-selection-mobile{
        user-select: none;
        display: block;
    }

    #page-soumission #resultats h2{
        text-align: center;
        font-size: 1.5em;
    }
    /*********** PAGE GARAGE **************/
    #page-garage h1{
        width: 100%;
        padding-top: 60px;
        margin: 0;
    }

    #page-garage h2{
        width: 100%;
    }
  
    #page-garage h2 span{
        display: inline-block;
        padding-left: 5px;
    }
   
    #page-title{
        padding: 0;
        width: 100% !important;
        text-align: center;
    }

    #page-title .container{
        width: 100%;
    }

    #page-title img{
        width: 20%;
        left: 40%;
        top: 130px;
        display: block;
        position: absolute;

    }


    #page-garage hr.red-line{
        width: 95%;
    }

    #page-garage p{
        width: 90%;
    }


    #all-garages .container{
        flex-direction: column;
    }

    .product{
        height: 740px;
        width: 100%;
    }



    
    /***************** PAGE CONTACT *****************/
    #page-contact #page-title h1{
        height: auto;
        margin-top: 25px;
    }

    #page-contact hr.red-line{
        display: none;
    }

    #page-contact h2{
        border-bottom: 2px solid #e40613;
        width: 90%;
        font-size: 1.8em;
        margin-left: 5%;
        text-align: center;
    }

    #nous-joindre.container{
        width: 100%;
        flex-direction: column-reverse;
    }

    #nous-joindre.container div,  #info-container.container div{
        width: 90%;
        margin-top: 0px;
        margin-left: 5%;
    }

    #nous-joindre.container div:first-child{
        margin-top: 50px;
    }

    #nous-joindre div form .button{
        width: 100%;
        text-align: center;
    }

    #nous-joindre #heures-ouvertures{
        text-align: center;
    }

    #nous-joindre #heures-ouvertures a{
        margin-top: 25px;
    }

    #nous-joindre table{
        margin: auto auto;
    }

    /***************** PAGE PRODUCTS *****************/
    #page-products section {
        padding: 0;
        padding-top: 50px;
    }

    section#description-product #big-img{
        width: 100%;
    }

    #page-products #page-title h1{
        font-size: 2em;
        padding-top: 50px;
        border-bottom: 2px solid #e40613;
        width: 95%;
        margin-left: 2.5%;
    }

    #text-product.container{
        flex-direction: column-reverse;
    }
    #text-product.container .flex{
        width: 90%;
        margin-left: 5%;
    }

    #text-product.container p{
        width: 100%;
        font-size: 1.2em;
    }


    #text-product #big-img{
        margin: 0;
        border-bottom: 4px solid #e40613;
    }

    #text-product h2{
        display: none;
    }

    #text-product .small-imgs div{
        border-top: none;
    }

    #text-product .small-imgs .tiny-image{
        border-bottom: 2px solid #e40613;
    }

    #nav-specification.container{
        flex-direction: row;
    }

    #features-container .container{
        flex-direction: row;
    }

}

@media only screen and (max-width: 768px) {
    
    section{
        padding-top: 50px;
    }
    
    
    p{
        text-align: center;
    }

    section .flex p, section .flex div, section .flex h1, section .flex h2, section .flex img {
        width: 90%;
        margin-left: 5%;
    }

    .main-title h1{
        font-size: 1.6em;
    }

    #home-banner{
        background-position-x: -200px;
    }

   

    hr.red-line{
        margin-left: 5%;
    }
    #home-banner .container{
        position: relative;
        flex-direction: column;
        width: 100%;
    }
  
    .circle {
        position: relative;
        flex: none;
        width: 95%;
        height: 35px;
        margin: 5px auto 0 auto;
        border-radius: 0;
        background-color: rgb(255, 0, 0, 0.5);
        color: white;
        text-align: center;
        /* padding-top: 50px; */
    }

    .circle p {
        position: absolute;
        right: 75px;
        top: 15px;
        /* width: 100%; */
        text-align: right;
        margin: 0;
        padding: 0;
        height: 35px;
        font-size: 1.1em;
        font-weight: bold;
        
    }

    .circle img{
        height: 35px;
        margin: 0;
        position: absolute;
        left: 10px;
        top: 10px;
    }

    .circle:nth-child(1) img{
        left: 18px;
    }

    .circle:nth-child(2) img{
        left: 28px;
    }

    .circle:nth-child(4) img{
        left: 20px;
    }


    #home-section-construction p, #home-section-construction h2, #home-section-construction hr.red-line{
        margin-left: 5%;
    }

    #home-section-construction p, #home-section-construction h2{
        width: 90%;
    }



/************* PAGE SOUMISSION ET CONTACT *************/

    #page-soumission #page-title h1, #page-contact #page-title h1{
        font-size: 2.5em;
    }



/************* PAGE GARAGE *************/

#page-title img{
    width: 28%;
    left: 36%;
    top: 130px;
    
}


.product{
    height: 675px;
}

/************* PAGE PRODUCTS *************/
#nav-specification.container {
    flex-direction: row;
}

#page-products #page-title h1 {
    padding-top: 0px;
}

#page-products #page-title img{
    display: none;
}

.specs-button p{
    display: none;
}

#exclusive-collection, #exclusive-collection2{
    width: 100%;
}

.active-button-specs{
    /* z-index: 1; */
    height: 100px;
}

#features-container .container{
    flex-direction: column;
}

#features-container .features-category{
    width: 90%;
}

#ornaments-container .ornament {
    display: inline-block;
    position: relative;
    width: 200px !important;
    height: 200px;
    /* border: 1px solid #e30613; */
    margin: 10px;
}

.ornament img {
    position: absolute;
    width: 138px;
    top: 15px;
    left: 31px;
}

.ornament p {
    
    bottom: 10px;
    width: 100%;
    font-size: 0.9em;
}

/************* FOOTER *************/
    #footer-opening-hours{
        display: none;
    }
    
    footer {
        margin-top: 100px;
        width: 100%;
    }

    footer .container{
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
    
    footer table{
        display: none;
    }

    #footer-menu{
        display: none;
    }

    footer .menu-info{
        width: 100%;
        padding: 0;
        text-align: center;
    }


    #signature{
        width: 100%;
    }

    p.copy, p.ymark{
        width: 100%;
        text-align: center;
    }

    footer .fb-page-bottom{
        display: none !important;
    }

}
    
@media only screen and (max-width: 496px) {
    
    .uppercase{
        text-transform: uppercase;
        font-weight: 400;
        text-align: center;
    }

    header{
        height: 90px;
    }

    main{
        margin-top: 90px !important;
    }

    #mobile-menu-container{
        position: fixed;
        top: 90px;
        
    }


    div{
        text-align: center;
    }

    label{
        text-align: left;
    }

    hr.red-line{
        width: 90%;
    }

    .circle p {
        padding-right: 0px;
        font-size: 1em;
        right: 15px;

    }

    #image-construction{
        width: 100%;
        height: 275px;
    }

/*********** PAGE SOUMISSION **************/
    #page-soumission section#page-title, #page-contact section#page-title{
        height: 200px;
        padding: 0;
        margin: 0;
    }

    #page-soumission #page-title h1, #page-contact #page-title h1{
        margin-top: 50px;
        font-size: 1.8em;
        background: none;
        width: 100%;
    }

    #page-soumission form,  #page-contact form{
        width: 90%;
        margin: auto auto;
        font-size: 0.8em;
    }

    #select-container label{
        width: 100%;
    }

    #select-container select {
        display: block;
        width: 100%;
        -webkit-appearance: auto;
        -moz-appearance: auto;
        appearance: auto;
    
        text-align: center;
    }
    
    #select-container option{
        text-align: center;
    }


        #select-container button {
        display: none;
    }


    section#nous-joindre{
        padding-top: 0;
    }

    #nous-joindre #info-container p{
        font-size: 1em; 
    }

    #page-contact h2{
        font-size: 1.4em;
        margin-bottom: 0;
    }

    #page-contact #nous-joindre div:first-child h2{
        margin-bottom: 40px;
    }
   

/*********** PAGE GARAGE **************/
#page-garage .container {
    width: 90%;
}

#page-garage p {
    width: 90%;
}

.product{
    height: 600px;
}


#page-garage h1{
    font-size: 1.5em;
    padding-top: 60px;
    margin: 0;
}

#page-garage h1 span {
    display: inline-block;
}

#page-garage h2{
    font-size: 1.30em;
}



#text-garage p{
    width: 100%;
}


/*********** PAGE PRODUCTS **************/
#features-container .container ul{
    text-align: left;
}

#exclusive-collection2{
    display: none;
}


/*********** PAGE SPECIFICATIONS **************/
#bigImageContainer #removeBigImage{
    bottom: 5%;
}

/*********** FOOTER **************/
footer .menu-info{
        width: 100%;
        padding: 0;
}

}

@media only screen and (max-width: 400px) {
    

}

  

@media only print{
h1,h2,h3,h4,p,a,li{color:#000 !important;}
nav{display:none;}
} 