/* ---------------------------------------
		RESET CSS
---------------------------------------- */

/* 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;
    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;
}

a {
    text-decoration: none;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

/* ---------------------------------------
		TYPOGRAPHY
---------------------------------------- */

/* base font-size corresponds to "10px" and is adapted to rem unit */

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-size: 1.6em; /* equiv 16px */
    background-color: #f5f5f5;
    color: #000000;
    font-family: 'Lato', serif;	/* remmpl. Aleo */
	line-height: 1.2;
}

h1 {
    font-size: 4rem;
    font-family: 'Ubuntu', sans-serif;

}

h2 {
    font-size: 3.5rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;	/* modif : anc. : 700 */

}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 2.5rem;
    }

}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.6rem;
    font-family: 'Lato', serif;
    font-weight: 700;
}

.link {
    color: #B99D52;
    font-family: 'Poppins', sans-serif;
}

.button-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background-color: #FFFFFF;
    border: 1px solid #B99D52;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #B99D52;
    padding: 5px 20px;
    cursor: pointer;
}

.button-btn:hover {
    background-color: #B99D52;
    color: #FFFFFF;
}

select::-ms-expand {
    display: none;
}
/*
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 100%;
    border-left: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-top: 0;
    border-right: 0;
    padding: 8px 44px 8px 8px;
    color: #000000;
    background-color: #FFFFFF;
    font-size: 14px;
    height: 34px;
    border-radius: 0;
}
*/
.custom-input {
    background-color: #FFFFFF;
    border-left: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-top: 0;
    border-right: 0;
    width: 100%;
    font-size: 1.6rem;
    padding: 5px;
}

/*********** fix wrapper ***********/

.wrapper {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-right: auto;
    margin-left: auto;

}

@media (min-width: 576px) {
    .wrapper {
        max-width: 54rem;
    }
}

@media (min-width: 768px) {
    .wrapper {
        max-width: 72rem;
    }
}

@media (min-width: 992px) {
    .wrapper {
        max-width: 96rem;
    }
}

@media (min-width: 1200px) {
    .wrapper {
        max-width: 117rem;
    }
}

/*********** fix wrapper ***********/

.smaller {
    font-size: 0.71em;
    line-height: 2.1em;
}

.small {
    font-size: 0.86em;
    line-height: 1.75em;
}

.big {
    font-size: 1.14em;
    line-height: 1.3125em;
}

.bigger {
    font-size: 1.29em;
    line-height: 1.1667em;
}

.biggest {
    font-size: 1.43em;
    line-height: 1.05em;
}

code,
pre,
samp,
kbd {
    white-space: pre-line;
    /* IE fix */
    white-space: pre-wrap;
    font-family: Consolas, 'DejaVu Sans Mono', Courier, monospace;
    line-height: normal;
}

code {
    line-height: 1em;
}

table {
    margin-bottom: 1.5em;
}

em,
.em,
address,
cite,
dfn,
i,
var {
    font-style: italic;
}

.no-em {
    font-style: normal;
}

strong,
.strong {
    font-weight: bold;
}

.no-strong {
    font-weight: normal;
}

small,
sub,
sup {
    font-size: smaller;
}

/* ---------------------------------------
		BROWSERS CONSISTENCY
---------------------------------------- */

/* avoid top margins on first content element */

p:first-child,
ul:first-child,
ol:first-child,
dl:first-child,
blockquote:first-child,
pre:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

/* avoid margins on nested elements */

li p,
li ul,
li ol {
    margin-top: 0;
    margin-bottom: 0;
}

/* max values */

img,
table,
td,
blockquote,
code,
pre,
textarea,
input,
video {
    max-width: 100%;
}

/* you shall not pass */
div, textarea, table, td, th, code, pre, samp {
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
}

/* ---------------------------------------
		HIDING CONTENT
---------------------------------------- */

body > script {
    display: none !important;
}

/* ---------------------------------------
		IE BUG FIXING
---------------------------------------- */

.ie678 h1 {
    font-size: 2.29em;
}

.ie678 h2 {
    font-size: 2em;
}

.ie678 h3 {
    font-size: 1.71em;
}

.ie678 h4 {
    font-size: 1.43em;
}

.ie678 h5,
.ie678 .h5-like {
    font-size: 1.29em;
}

.ie678 h6 {
    font-size: 1.14em;
}

.ie678 img {
    width: auto;
    /* @bugfix for IE8 */
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
    /* Corrects excess space around these inputs in IE8/9 */
}

textarea {
    overflow: auto;
    /* Removes default vertical scrollbar on empty textarea in IE6/7/8/9 */
}

/* ---------------------------------------
		PRINT RESET
---------------------------------------- */

@media print {
    * {
        background: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        width: auto !important;
        margin: auto !important;
        font-family: serif;
        font-size: 12pt;
        background-color: #fff !important;
        color: #333 !important;
    }

    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    blockquote,
    ul,
    ol {
        color: #000 !important;
        margin: auto !important;
    }

    .print {
        display: block;
        /* displaying .print elements */
    }

    img {
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        filter: grayscale(100%);
    }

    p,
    blockquote {
        orphans: 3;
        /* no orphans */
        widows: 3;
        /* no widows */
    }

    blockquote,
    ul,
    ol {
        page-break-inside: avoid;
        /* no breaks inside these elements */
    }

    h1 {
        page-break-before: always;
        /* page break before main headers */
    }

    h1,
    h2,
    h3,
    caption {
        page-break-after: avoid;
        /* no breaks after these elements */
    }

    a {
        color: #000 !important;
        text-decoration: underline !important;
    }

    a[href]:after {
        content: " (" attr(href) ")";
        /* displaying URLs */
    }

    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }
}

/* ---------------------------------------
		VIEWPORT FIXING
---------------------------------------- */

@-webkit-viewport {
    width: device-width;
    zoom: 1.0;
}

@-moz-viewport {
    width: device-width;
    zoom: 1.0;
}

@-ms-viewport {
    width: device-width;
    zoom: 1.0;
}

@-o-viewport {
    width: device-width;
    zoom: 1.0;
}

@viewport {
    width: device-width;
    zoom: 1.0;
}

/* ---------------------------------------
		RESPONSIVE WEB DESIGN
---------------------------------------- */

@media (max-width: 320px) {
    /* quick tiny resolution reset */
    fieldset {
        display: block !important;
        float: none !important;
        clear: none !important;
        width: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border: 0;
    }

    /* layouts for tiny screens */
    th,
    td {
        display: block !important;
        width: auto !important;
        text-align: left !important;
    }

    thead {
        display: none;
    }
}










