/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	outline:0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Reset du textarea */

textarea{
    resize: none;
    border: none;
    overflow: auto;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

input, select{
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

/* ---- Classe modulaires à utiliser un peu partout ---- */

/* Display mode */
.hiddenBlock{
    display: none !important;
}

.blinkingElement{
    -webkit-animation: blinkingElementThingie 1s infinite; /* Chrome, Safari, Opera */
    animation: blinkingElementThingie 1s infinite;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes blinkingElementThingie {
    0%   {opacity: 1;}
    50%  {opacity: 0;}
    100% {opacity: 1;}
}

/* Standard syntax */
@keyframes blinkingElementThingie {
    0%   {opacity: 1;}
    50%  {opacity: 0;}
    100% {opacity: 1;}
}

.hiddenText{
    text-indent: -9999px;
}

.ellipsisBlock{
    white-space: nowrap;
    overflow-x: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.defautCursor{
    cursor: default;
}

.cursorPointer{
    cursor: pointer;
}

.inlineBlockTop{
    vertical-align: top;
    display: inline-block !important;
}

    .inlineBlockMiddle{
        vertical-align: middle;
        display: inline-block !important;
    }

.halfBlock{
    width: -webkit-calc(50% - 21px);
    width: -moz-calc(50% - 21px);
    width: calc(50% - 21px);
    margin-right: 33px;
}

.halfBlock+.halfBlock{
    margin-right: 0;
}

.thirdBlock{
    width: -webkit-calc(33% - 66px);
    width: -moz-calc(33% - 66);
    width: calc(33% - 66px);

    vertical-align: top;
    display: inline-block;
}

    .thirdBlock:nth-child(2){
        margin: 0 99px;
    }

.fullSizeBlock{
    width: 100%;
    height: 100%;
    display: block;
}

.centerHorizontallyVertically{
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    margin: auto;
}

.relativeBlock{
    position: relative !important;
}

.staticBlock{
    position: static !important;
}

.width100Percent{
    width: 100%;
}

.leftHalf, .rightHalf{
    width: 50%;
    margin: -2px;
}

/* Transitions CSS3 */
.hasTransitions{
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.hasShortTransitions{
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.removeTransitions{
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -o-transition: color 0 ease-in !important;
    transition: none !important;
}

/* Scale */

.horizontalFlip{
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.verticalFlip{
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: FlipV;
    -ms-filter: "FlipV";
}

/* Border */
.smallBorderRadius{
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.noBorderRadius{
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

.noBorder{
    border: none !important;
}

.greyBorderBlock{
    padding: 20px;
    border: 1px solid #d3d3d3;
}

.borderBox{
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

/* Couleurs */

.whiteText, .whiteText *{
    color: #ffffff;
}

.greyText, .greyText *{
    color: #545454;
}

.noBackgroundColor, .noBackgroundColor:hover{
    background-color: transparent !important;
}

/* Background */

.coverDiv{
    background-size: cover;
    background-position: center;
}

.whiteCrossedFabric{
    background-image: url('../resources/whiteBackgroundFabric.png');
}

/* Texte */

strong{
    font-weight: 600;
}

em{
    font-style: italic;
}

.smallText{
    font-size: 14px;
}

.capsText{
    text-transform: uppercase;
}

.textAlignCenter, .textAlignCenter *{
    text-align: center;
}

.bigLink{
    text-decoration: none !important;
    color: #ffffff !important;
    font-weight: 400;
    font-size: 27px;
}

/* Sticky footer */

html, body {
    height:100%;
}

.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -89px;
}

.push {
    height: 125px;
}

/* ---- Classes particulières à Fruytier group --- */

/* Classes en rapport avec les couleurs */
    /* Ici : des classes du genre "greyText" etc à mettre sur les blocks au texte gris */


/* Classes en rapport avec les background color */
    /* Ici : des classes du genre "redBlock" etc à mettre sur les blocks rouges */
a.tooltips {
    position: relative;
    display: inline;
}
a.tooltips span {
    position: absolute;
    width:200px;
    color: #FDEBEB;
    background: #C52728;
    height: 30px;
    line-height: 30px;
    text-align: center;
    visibility: hidden;
    border-radius: 2px;
    transition:0.1s;
    top: -40px;
    left: -85px;
}
a.tooltips span:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    width: 0; height: 0;
    border-top: 8px solid #C52728;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}
a:hover.tooltips span {
    position: absolute;
    visibility: visible;
    opacity: 0.8;
    bottom: 30px;
    z-index: 999;
    transition:0.3s ease;
    top: -40px;
}

/* ---- Règles générales - a, forms, ... --- */
    /* Ici : des classes du genre "redBlock" etc à mettre sur les blocks rouges */
.hoverLink{
    transition:0.4s;
}

.hoverLink:hover{
    transition:0.4s;
    letter-spacing: 1px;
    padding-left: 27px;
    padding-right: 27px;
 }

.titreProducts{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 30px;
    color:white;
    line-height: 145%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 82px;
    margin: auto;
}

.ligneProducts{
    height: 1px;
    background-color: #dedede;
    width: 90%;
    position: relative;
    margin-top:125px;
    margin-left: 5%;
    top:200px;
}
.colonneProducts{
    border-radius:180px 180px;
    background-position: center center;
    border: 23px solid white;
    margin-left: 5%;
    margin-right: 5%;
    width: 13%;
    height: 0;
    top:50px;
    display: inline-block;
    position: relative;
    padding-top: 13%;
    text-align: center;
}
.productConteneur .colonneProducts>img{
    position: absolute;
    right: 0;
    left:0;
    top:0;
    bottom: 0;
    margin : auto;
    height: 94%;
    opacity: 0.8;
    transition:1s;
    -moz-transition:1s;
    -ms-transition:1s;
}

.productConteneur .colonneProducts:nth-child(odd)>img{
    transform: rotate(90deg);
}
.productConteneur .colonneProducts:nth-child(odd):hover>img{
    transform: rotate(180deg);
    transition:1s;
    -moz-transition:1s;
    -ms-transition:1s;
    opacity: 1;
}

.productConteneur .colonneProducts:hover>img{
    transform: rotate(90deg);
    transition:1s;
    -moz-transition:1s;
    -ms-transition:1s;
    opacity: 1;
}

.productConteneur{
    text-align: center;
    height: 70%;
    position: relative;
    margin-top:-250px;

}
.productConteneur .colonneP2>img, .colonneProducts>img{
    position: absolute;
    right: 0;
    left:0;
    top:0;
    bottom: 0;
    margin : auto;
    height: 94%;
    opacity: 0.8;
    transition:1s;
    -moz-transition:1s;
    -ms-transition:1s;
}

.productConteneur .colonneP2:nth-child(odd)>img, .colonneProducts:nth-child(odd)>img{
    transform: rotate(90deg);
}
.productConteneur .colonneP2:nth-child(odd)>img:hover, .colonneProducts:nth-child(odd)>img:hover{
    transform: rotate(180deg);
    transition:1s;
    -moz-transition:1s;
    -ms-transition:1s;
    opacity: 1;
}

.productConteneur .colonneP2>img:hover, .colonneProducts>img:hover{
    transform: rotate(90deg);
    transition:1s;
    -moz-transition:1s;
    -ms-transition:1s;
    opacity: 1;
}
/* --- Header & menu --- */
    /* Ici : le style concernant le menu */

.menuLink{
    text-decoration: none;
    color:#fdebeb;
    font-size: 17px;
    padding : 21px 27px 25px 27px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    text-shadow: 0px 0px 6px rgba(255, 255, 255, 0);
    transition:0.7s;
    -moz-transition:0.7s;
    -ms-transition:0.7s;
}

.menuLink:hover, .menuLink.currentPage{
    border-bottom: 2px solid #fdebeb;
    transition:0.7s;
    -moz-transition:0.7s;
    -ms-transition:0.7s;

    color: #ffffff;
}

.centerMeP{
    margin:auto;
    width: 1400px;
    position: relative;
}
.centerMeP #socialNav{
    position: absolute;
    top: 0;

    margin-top: 19px;
    height: 30px;
    width: auto;
}

footer .centerMeP{
    width: 1375px;
}

/* 4px de padding estimé*/
.fb{
    background-image: url('../resources/networkSprite.png');
    background-position: 0 0;
    overflow: hidden;
    margin-right: 18px;
}
.tt{
    background-image: url(../resources/networkSprite.png);
    background-position: -33px 0;
    overflow: hidden;
    margin-right: 25px;
}
.in{
    background-image: url(../resources/networkSprite.png);
    background-position: -74px 0;
    overflow: hidden;
}

.socialLink{
    height: 25px;
    width: 25px;
    display: inline-block;
    opacity: 0.85;
    position: relative;
    top: 0;
    transition:0.3s;
    -moz-transition:0.3s;
    -ms-transition:0.3s;
}

.socialLink:hover{
    top: -2px;
    opacity: 1;
    transition:0.3s;
    -moz-transition:0.3s;
    -ms-transition:0.3s;
}

#mainNav>a:nth-child(2){
    margin-left: 70px;
}

#mainNav .menuLink{
    display:inline-block;
    vertical-align: top;
}
#mainNav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 300;
}
nav{
    background-color: #C62628;
}

/* --- Footer --- */
    /* Ici : le style concernant le footer (quand il y en a un) */
.footage{
    background-color: #C62628;
    color:white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-top: 25px;
    width: 100%;
    display: inline-block;
}
.footage .centerMeP p{
    padding: 25px 0;
    font-size:14px;
    display: inline-block;
}
.footage .centerMeP p a{
    color:white;
}

.footage .centerMeP p+p{
    float: right;
}

    .footage .centerMeP p+p a{
        margin-left: 12px;

        text-shadow: 0 0 2px rgba(255, 255, 255, 0);
    }

        .footage .centerMeP p+p a:hover{
            text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
        }

/* --- Corrections Max --- */

/* Menu */

nav{
    background-color: transparent;
}

nav#mainNav{
    background-image: url(../resources/backgroundNav.jpg);
}

#mainNav a img{
    padding: 5px 11px;
}

.menuLink{
    padding: 32px 27px 25px 27px;
}

.centerMeP #socialNav {
    margin-top: 23px;
}

#menuToHide{
    display: inline-block;
    vertical-align: top;
}

/* Lien contact */

#contactButton{
    position: fixed;
    left: -85px;
    top: 120px;
    z-index: 500;
    color: #da2628;
    text-decoration: none;
    font-family: 'Dosis','sans-serif';
    text-align: center;

    padding: 7px;

    background-color:rgba(255,255,255,0.65);
    opacity: 0.9;

    -webkit-border-top-right-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    -moz-border-radius-topright: 6px;
    -moz-border-radius-bottomright: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

#contactButton:hover{
    background-color:rgba(255,255,255,0.85);
    opacity: 1;
}

#contactButton span{
    display: block;
    margin: auto;
    font-size: 16px;
}

#contactButton span+span{
    overflow: hidden;
    height: 1px;
    opacity: 0;
}

#contactButton:hover span+span{
    height: 20px;
    opacity: 1;
}

#contactButton .fa{
    font-size: 35px;
    padding-bottom: 6px;
}

.centerMeP #socialNav{
    right: 20px;
}

/* Language Switch */

#languageNav{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    height: 65px;
    margin: auto;
}

.switchLanguage{
    text-decoration: none;
}

#mainNav a.switchLanguage{
    display: inline-block;
}

#mainNav a.switchLanguage img{
    padding: 3px 5px;
    display: inline-block;
}

#pickedLanguage > img{
    border: 1px solid white;
}

/* Design loader */

.loaderDiv{
    position: fixed;
    z-index: 500;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.45);
}

    .loaderDiv img{
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        margin: auto;
        width: 154px;
        height: 154px;

        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
    }

.whiteLine{
    width: 7%;
    height: 1px;
    border-top: 1px solid white;

    position: absolute;
    left: -450px;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.93;
    margin: auto;
}

    .whiteLine+.whiteLine{
        left: 450px;
    }

/* ----- Mediaqueries principales ----- */

/* Écrans 1450 et plus */
@media only screen and (max-width: 1450px){
    p, a, span, li, label, button{
        font-weight: 300 !important;
    }

    strong{
        font-weight: 600 !important;
    }

    .menuLink{
        font-size: 15px;
        padding: 32px 16px 25px 16px;
    }

    #languageNav{
        right: 10px;
    }

    .loaderDiv img{
        height: 140px;
        width: 140px;
    }
}

@media only screen and (max-width: 1300px){
    .menuLink {
        padding: 25px 19px 23px 19px !important;
        font-size: 14px;
    }

    .menuLink:hover, .menuLink.currentPage{
        border-bottom: 1px solid #fdebeb;
    }

    #mainNav a:not(.switchLanguage) img{
        width: 145px;
    }

    #languageNav{
        right: 10px;
        height: 55px;
    }

    #artImage {
        height: 380px;
    }

    .centerMeP #socialNav {
        margin-top: 19px;
    }

    .fb{
        margin-right: 12px;
    }

    .footage .centerMeP p {
        padding: 19px 0;
        font-size: 13px;
    }
}

/* Écrans 1145 et plus */
@media only screen and (max-width: 1145px) {
    .footage{
        padding: 0 18px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 1040px) {
    /*#languageNav{*/
        /*display: none !important;*/
    /*}*/
}

/* Écrans 1000 et plus */
@media only screen and (max-width: 1000px){
    .menuLink{
        font-size: 14px;
    }

    .menuLink:hover, .menuLink.currentPage {
        border-bottom: 1px solid #fdebeb;
    }

    .menuLink{
        margin-bottom: -1px;
    }

    #artImage {
        height: 360px;
    }
}

/* Écrans 980 et plus */
/*@media only screen and (max-width: 900px){*/
    /*footer .quartParts{*/
        /*width: 50% !important;*/
        /*margin-bottom: 20px;*/
    /*}*/

    /*footer .quartParts+.quartParts+.quartParts{*/
        /*margin-bottom: 0;*/
    /*}*/

    /*.footage{*/
        /*text-align: center;*/
    /*}*/

    /*.footage .centerMeP p, .footage .centerMeP p+p{*/
        /*display: block;*/
        /*float: none;*/
    /*}*/

        /*.footage .centerMeP p+p{*/
            /*padding-top: 0 !important;*/
        /*}*/

        /*.footage .centerMeP p+p a:first-child{*/
            /*margin-left: 0;*/
        /*}*/
/*}*/

/*@media only screen and (max-width: 880px){*/
    /*#socialNav{*/
        /*display: none;*/
    /*}*/
/*}*/

/* Version fin tablette -> début mobile */
@media only screen and (max-width: 920px){
    #socialNav{
        display: block;
    }

    #mainNav .centerMeP>a:first-child{
        display: block;
        margin: auto;
        width: 205px;
        text-align: center;
    }

    .centerMeP #socialNav{
        display: none;
    }

    #brownListButton{
        background-image: url('../resources/brownList.png');
        width: 24px;
        display: block;
        height: 18px;
        position: absolute;
        top: 5px;
        left: -11px;
        z-index: 30;
        cursor: pointer;
        background-position: center;
        background-repeat: no-repeat;
        padding: 10px;
    }

    #menuToHide{
        display: none;
    }

    #mainNav .menuLink{
        width: 100%;
        text-align: center;
        padding: 22px 0 22px 0 !important;
    }

    .footage .centerMeP p {
        line-height: 160% !important;
        padding: 20px 17px !important;
    }

    #artImage {
        height: 320px;
    }

    #mainNav>.centerMeP{
        margin-left: 15px !important;
        margin-right: 15px !important;
        width: -webkit-calc(100% - 30px) !important;
        width: -moz-calc(100% - 30px) !important;
        width: calc(100% - 30px) !important;
    }

    #languageNav{
        display: block !important;
        position: static;
        margin: 15px auto;
        text-align: center;
        width: 100%;
    }

    #mainNav:nth-child(3){
        display: block;
    }
    .menuLink{
        padding : 27px 0;
        font-size: 14px;
    }
    .centerMeP #socialNav{
        right: 10px;
    }
    .socialLink{
        margin-right: 10px;
    }
    .fb{
        margin-right: 0;
    }
}

/* Version grand mobile -> petit mobile */
@media only screen and (max-width: 920px){
    #mainNav:nth-child(3){
        display: block;
    }
    .menuLink{
        padding : 27px 0;
        font-size: 14px;
    }
    .centerMeP #socialNav{
        right: 10px;
    }
    .socialLink{
        margin-right: 10px;
    }
    .fb{
        margin-right: 0;
    }

}

@media only screen and (max-width: 750px){
    #contactButton{
        display: none;
    }
}

@media only screen and (max-width: 435px){
    #artImage{
        height: 200px;
    }
}
