/*
Structure du dossier sass/
==========================

	sass/
	│
	├⎯ base/
	│   ├⎯ _normalize.scss......... Reset/normalize
	│   ├⎯ _global.scss............ Global settings and variables
	│   └⎯ _typography.scss........ Typography rules
	│
	├⎯ components/
	│   ├⎯ _forms.scss............. Forms
	│   ├⎯ _buttons.scss........... Buttons
	│   ├⎯ _icons.scss............. Icons
	│   ├⎯ _slider.scss............ Slider
	│   └⎯ _navigation.scss........ Navigation
	│
	├⎯ helpers/
	│   ├⎯ _variables.scss......... Sass Variables
	│   ├⎯ _functions.scss......... Sass Functions
	│   ├⎯ _mixins.scss............ Sass Mixins
	│   └⎯ _helpers.scss........... Class & placeholders helpers
	│
	├⎯ pages/
	│   ├⎯ _home.scss.............. Home specific styles
	│   └⎯ _contact.scss........... Contact specific styles
	│
	├⎯ layout/
	│   ├⎯ _grid.scss.............. Grid system (Bootstrap one)
	│   ├⎯ _header.scss............ Header
	│   ├⎯ _footer.scss............ Footer
	│   └⎯ …....................... Etc…
	│
	├⎯ vendors/
	│   └⎯ _vendor.scss............ Plugins styles (create a new file for each plugin)
	│
	└⎯ styles.scss................. Primary Sass file
 */
/* normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
	 * 1. Set default font family to sans-serif.
	 * 2. Prevent iOS text size adjust after orientation change, without disabling
	 *    user zoom.
	 */
/* line 9, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
	 * Remove default margin.
	 */
/* line 19, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
body {
    margin: 0;
}

/* HTML5 display definitions
		 ========================================================================== */
/**
	 * Correct `block` display not defined for any HTML5 element in IE 8/9.
	 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
	 * Correct `block` display not defined for `main` in IE 11.
	 */
/* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}

/**
	 * 1. Correct `inline-block` display not defined in IE 8/9.
	 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
	 */
/* line 55, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
audio, canvas, progress, video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

/**
	 * Prevent modern browsers from displaying `audio` without controls.
	 * Remove excess height in iOS 5 devices.
	 */
/* line 65, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
	 * Address `[hidden]` styling not present in IE 8/9/10.
	 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
	 */
/* line 76, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
[hidden], template {
    display: none;
}

/* Links
		 ========================================================================== */
/**
	 * Remove the gray background color from active links in IE 10.
	 */
/* line 87, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
a {
    background: transparent;
}

/**
	 * Improve readability when focused and also mouse hovered in all browsers.
	 */
/* line 96, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
a:active, a:hover {
    outline: 0;
}

/* Text-level semantics
		 ========================================================================== */
/**
	 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
	 */
/* line 107, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
	 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
	 */
/* line 116, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
b, strong {
    font-weight: bold;
}

/**
	 * Address styling not present in Safari and Chrome.
	 */
/* line 124, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
dfn {
    font-style: italic;
}

/**
	 * Address variable `h1` font-size and margin within `section` and `article`
	 * contexts in Firefox 4+, Safari, and Chrome.
	 */
/* line 133, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
h1 {
    font-size: 1.5em;
    margin: 0.5em 0;
}

/**
	 * Address styling not present in IE 8/9.
	 */
/* line 142, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
mark {
    background: #ff0;
    color: #000;
}

/**
	 * Address inconsistent and variable font size in all browsers.
	 */
/* line 151, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
small {
    font-size: 80%;
}

/**
	 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
	 */
/* line 160, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

/* line 167, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
sup {
    top: -0.5em;
}

/* line 171, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
sub {
    bottom: -0.25em;
}

/* Embedded content
		 ========================================================================== */
/**
	 * Remove border when inside `a` element in IE 8/9/10.
	 */
/* line 182, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
img {
    border: 0;
}

/**
	 * Correct overflow not hidden in IE 9/10/11.
	 */
/* line 190, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
		 ========================================================================== */
/**
	 * Address margin not present in IE 8/9 and Safari.
	 */
/* line 201, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
figure {
    margin: 1em 40px;
}

/**
	 * Address differences between Firefox and other browsers.
	 */
/* line 209, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
	 * Contain overflow in all browsers.
	 */
/* line 219, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
pre {
    overflow: auto;
}

/**
	 * Address odd `em`-unit font size rendering in all browsers.
	 */
/* line 230, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
		 ========================================================================== */
/**
	 * Known limitation: by default, Chrome and Safari on OS X allow very limited
	 * styling of `select`, unless a `border` property is set.
	 */
/**
	 * 1. Correct color not being inherited.
	 *    Known issue: affects color of disabled elements.
	 * 2. Correct font properties not being inherited.
	 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
	 */
/* line 254, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
button, input, optgroup, select, textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
	 * Address `overflow` set to `hidden` in IE 8/9/10/11.
	 */
/* line 264, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
button {
    overflow: visible;
}

/**
	 * Address inconsistent `text-transform` inheritance for `button` and `select`.
	 * All other form control elements do not inherit `text-transform` values.
	 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
	 * Correct `select` style inheritance in Firefox.
	 */
/* line 276, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
button, select {
    text-transform: none;
}

/**
	 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
	 *    and `video` controls.
	 * 2. Correct inability to style clickable `input` types in iOS.
	 * 3. Improve usability and consistency of cursor style between image-type
	 *    `input` and others.
	 */
/* line 291, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

/**
	 * Re-set default cursor for disabled elements.
	 */
/* line 301, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
button[disabled], html input[disabled] {
    cursor: default;
}

/**
	 * Remove inner padding and border in Firefox 4+.
	 */
/* line 310, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
	 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
	 * the UA stylesheet.
	 */
/* line 320, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
input {
    line-height: normal;
}

/**
	 * It's recommended that you don't attempt to style these elements.
	 * Firefox's implementation doesn't respect box-sizing, padding, or width.
	 *
	 * 1. Address box sizing set to `content-box` in IE 8/9/10.
	 * 2. Remove excess padding in IE 8/9/10.
	 */
/* line 333, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
input[type="checkbox"], input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
	 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
	 * `font-size` values of the `input`, it causes the cursor style of the
	 * decrement button to change from `default` to `text`.
	 */
/* line 345, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
	 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
	 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
	 *    (include `-moz` to future-proof).
	 */
/* line 355, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    -webkit-box-sizing: content-box;
    /* 2 */
    box-sizing: content-box;
}

/**
	 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
	 * Safari (but not Chrome) clips the cancel button when the search input has
	 * padding (and `textfield` appearance).
	 */
/* line 369, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
	 * Define consistent border, margin, and padding.
	 */
/* line 377, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
	 * 1. Correct `color` not being inherited in IE 8/9/10/11.
	 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
	 */
/* line 388, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
	 * Remove default vertical scrollbar in IE 8/9/10/11.
	 */
/* line 397, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
textarea {
    overflow: auto;
}

/**
	 * Don't inherit the `font-weight` (applied by a rule above).
	 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
	 */
/* line 406, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
optgroup {
    font-weight: bold;
}

/* Tables
		 ========================================================================== */
/**
	 * Remove most spacing between table cells.
	 */
/* line 417, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* line 423, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
td, th {
    padding: 0;
}

/*------------------------------------*\
		Media queries
\*------------------------------------*/
/*------------------------------------*\
		Easing
\*------------------------------------*/
/*------------------------------------*\
		Functions
\*------------------------------------*/
/*
// *
// * Z-Index function
// * ---
// * A clean way to deal with z-index layers in Sass
// * Based on http://css-tricks.com/handling-z-index/
// * ---
// * A function helper to avoid having to type `map-get($z-layers, ...)`
// * ---
// * @param [string] $component: the layer to use
// * ---
// * @return [number] | [null]
// *
*/
/*
Positions & dispositions
========================

* `@mixin d-ib` : un `inline-block` correct
* `@mixin pos-center($width, $height)` : centrer un élément en absolu.
*/
/*
Typographie
===========

* `@mixin fz($sizeValue: 16)` : sets the font size in rem's with a px fallback.
* `@mixin u($color: currentColor)` : pour de jolis soulignement
*/
/*
Triangles
=========

Des mixins pour générer des triangles en pur CSS, compatible IE8.
*/
/*
SVG responsive
==============

Utilitaire pour le padding hack qui permet d'avoir des fichiers `*.svg` responsive.
Plus d'infos ici : [Making SVGs Responsive with CSS](http://tympanus.net/codrops/2014/08/19/making-svgs-responsive-with-css/).
*/
/*
Visibility
==========
*/
/*------------------------------------*\
		Fontface declaration
\*------------------------------------*/
@font-face {
    font-family: 'DIN';
    src: url('../fonts/DINEngschriftStd.eot');
    src: url('../fonts/DINEngschriftStd.eot') format('embedded-opentype'), url('../fonts/DINEngschriftStd.woff2') format('woff2'), url('../fonts/DINEngschriftStd.woff') format('woff'), url('../fonts/DINEngschriftStd.ttf') format('truetype'), url('../fonts/DINEngschriftStd.svg#DINEngschriftStd') format('svg');
}

/*
Debug
=====

Une condition dépendante de la variable `$debug` qui permet d'afficher les contours de tous les élements du DOM.
*/
/* line 49, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
[debug] {
    display: none;
}

/*------------------------------------*\
		Margins
\*------------------------------------*/
/* line 79, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

/*------------------------------------*\
		Paddings
\*------------------------------------*/
/*------------------------------------*\
		Visual
\*------------------------------------*/
/*
## Display
*/
/* line 171, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.none {
    display: none;
}

/* line 172, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.table, .cf:after, .row:after, .footer-nav:after, .news-line:after, .cf:before, .row:before, .footer-nav:before, .news-line:before {
    display: table;
}

/* line 173, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.cell {
    display: table-cell;
}

/* line 174, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.inlbl, .border-btn, .fixed-menu .phone-nav, .social-container, .link-header, .link-header i, .link-header span, .phone-nav, .footer-nav a, .contact-us, .orange-text, .content-editor h2, .content-editor h3, .partners-thumb h2, .partners-thumb h3 {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

/*
## Visibilité
*/
/*
## Modèle de boîte
*/
/* line 199, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*
Positionnement
==============

## Relative, aboslute...
*/
/* line 222, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.rel, *, *:after, *:before {
    position: relative;
}

/* line 223, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.abs {
    position: absolute;
}

/*
## Floats
*/
/* line 245, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.cf, .row, .footer-nav, .news-line {
    *zoom: 1;
}

/* line 249, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.cf:after, .row:after, .footer-nav:after, .news-line:after, .cf:before, .row:before, .footer-nav:before, .news-line:before {
    content: "";
}

/* line 254, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.cf:after, .row:after, .footer-nav:after, .news-line:after {
    clear: both;
}

/* line 259, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.left, [class*="col-xs-"] {
    float: left;
}

/* line 260, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.right {
    float: right;
}

/* line 267, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.clearfix {
    visibility: hidden;
    margin: 0;
    height: 0;
    clear: both;
}

/*
Textes
======

## Visibilité
`%no-text` pour masquer le texte d'un élément (celui-ci doit être en `display: block;`)
*/
/*
## Alignement
*/
/* line 287, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.tac {
    text-align: center;
}

/* line 288, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.tal {
    text-align: left;
}

/* line 289, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.tar {
    text-align: right;
}

/*
## Resets
*/
/* line 299, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
.list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

/*
## Antialiasing
*/
/* line 313, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/helpers */
html.mac {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-osx-font-smoothing: antialiased;
}

/*
Animations & transitions
========================
*/
/*
Couleurs
========

Toutes les couleurs utilisés dans le projet.
*/
/*
Typographies
============
*/
/*
Mise en page
============

* `$max-width` définit la largeur maximale du conteneur principal.
* `$margin-bottom` définit une base pour le ryhtme verticale des blocs.
*/
/*
Images
======

* `$img-dir` définit le dossier des images utilisées en css (chemin relatif au css, non au sass).
* `$sprite-name` est le nom du sprite, utilisé dans la classe invisible [%sprite](http://starter/docs/styles/components-icons.html)
* `$sprite-size` est la taille du sprite, nécessaire pour la mise en place du sprite retina.
*/
/*
Z-index
=======

La variable `$z-layers` définie les différents niveaux de profondeur utilisés dans le projet.

La fonction [z()](/docs/styles/tools-functions.html#) permet de l'utiliser simplement :

	SASS                          →     CSS

	z-index: z("dropdown");       →     z-index: 100;
	z-index: z("dropdown")-1;     →     z-index:  99;

Pour une meilleure maintenabilité, il est préférable d'utiliser uniquement les
niveaux de cette liste `±10` quand nécessaire.
*/
/*
Paramètres globaux
==================
*/
/*
* La couleur de sélection est basée sur la couleur `$primary` du projet.
* `box-sizing: border-box` permet d'avoir un modèle de bloc plus pratique.
* La classe `.isOSX` permet de mieux gérer le rendu des polices sur mac.
*/
/* line 107, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/global */
::-moz-selection {
    background: blue;
    color: white;
    text-shadow: none;
}

/* line 113, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/global */
::-moz-selection {
    background: blue;
    color: white;
    text-shadow: none;
}

::selection {
    background: blue;
    color: white;
    text-shadow: none;
}

/* line 119, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/global */
*, *:after, *:before {
    outline: none;
}

/* line 126, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/global */
html, body {
    overflow-x: hidden;
}

/* line 130, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/global */
html {
    font-size: 100%;
}

/* line 139, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/global */
body {
    font-size: 16;
    font-family: "DIN", "Helvetica", Helvetica, Arial, sans-serif;
}

/* line 144, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/global */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/*
Typographie
===========
*/
/* line 31, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/typography */
h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    line-height: 1;
}

/* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/typography */
.tera {
    font-size: 117px;
    font-size: 7.3125rem;
}

/* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/typography */
.giga {
    font-size: 90px;
    font-size: 5.625rem;
}

/* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/typography */
.mega {
    font-size: 72px;
    font-size: 4.5rem;
}

/* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/typography */
.alpha, h1 {
    font-size: 50px;
    font-size: 3.75rem;
}

/* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/typography */
.beta, h2 {
    font-size: 48px;
    font-size: 3rem;
}

/* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/typography */
.gamma, h3 {
    font-size: 36px;
    font-size: 2.25rem;
}

/* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/typography */
.delta, h4 {
    font-size: 24px;
    font-size: 1.5rem;
}

/* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/typography */
.epsilon, h5 {
    font-size: 21px;
    font-size: 1.3125rem;
}

/* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/base/typography */
.zeta, h6 {
    font-size: 18px;
    font-size: 1.125rem;
}

/*------------------------------------*\
		Vendor styles
\*------------------------------------*/
/* Slider */
/* line 7, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

/* line 22, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

/* line 29, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-list:focus {
    outline: none;
}

/* line 33, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

/* line 39, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* line 47, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

/* line 54, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}

/* line 59, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-track:after {
    clear: both;
}

/* line 63, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-loading .slick-track {
    visibility: hidden;
}

/* line 67, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

/* line 71, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
[dir="rtl"] .slick-slide {
    float: right;
}

/* line 74, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-slide img {
    display: block;
}

/* line 77, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-slide.slick-loading img {
    display: none;
}

/* line 83, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-slide.dragging img {
    pointer-events: none;
}

/* line 87, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-initialized .slick-slide {
    display: block;
}

/* line 91, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-loading .slick-slide {
    visibility: hidden;
}

/* line 95, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/vendors/vendor */
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

/*------------------------------------*\
		Buttons
\*------------------------------------*/
/* line 9, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/buttons */
.border-btn {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
}

/* line 16, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/buttons */
.border-btn, .border-btn:before {
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

/* line 20, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/buttons */
.border-btn.blue {
    color: #0072bb;
}

/* line 23, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/buttons */
.border-btn.blue:before {
    background: #0072bb;
}

/* line 27, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/buttons */
.border-btn.blue:hover {
    color: #f69861;
}

/* line 29, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/buttons */
.border-btn.blue:hover:before {
    background: #f69861;
}

/* line 35, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/buttons */
.border-btn:before {
    width: 100%;
    position: absolute;
    bottom: -5px;
}

@media (min-width: 768px) {
    .border-btn {
        font-size: 20px;
    }
}

/*------------------------------------*\
		Form
\*------------------------------------*/
/*------------------------------------*\
		Icons
\*------------------------------------*/
/* line 9, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.i {
    background-image: url(../images/layout/sprite.png);
    background-repeat: no-repeat;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-resolution: 240dppx) {
    .i {
        background-image: url(../images/layout/sprite@2x.png);
        -webkit-background-size: 512px 512px;
        background-size: 512px 512px;
    }
}

/* line 28, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.picto-header, .picto-header .svg {
    width: 26px;
    height: 26px;
}

@media (min-width: 768px) {
    .picto-header, .picto-header .svg {
        width: 43px;
        height: 43px;
    }
}

/* line 42, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.eye, .icon.eye .svg {
    width: 26px;
    height: 26px;
}

@media (min-width: 992px) {
    .icon.eye, .icon.eye .svg {
        width: 51px;
        height: 51px;
    }
}

/* line 53, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.plus {
    display: block;
    -webkit-transition: 0.2s all cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: 0.2s all cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 58, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.plus:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* line 61, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.plus, .icon.plus .svg {
    width: 30px;
    height: 30px;
}

@media (min-width: 992px) {
    .icon.plus, .icon.plus .svg {
        width: 51px;
        height: 51px;
    }
}

/* line 73, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.play, .icon.play .svg {
    width: 57px;
    height: 57px;
}

@media (min-width: 992px) {
    .icon.play, .icon.play .svg {
        width: 114px;
        height: 114px;
    }
}

/* line 85, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.blue-contact, .icon.blue-contact .svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 992px) {
    .icon.blue-contact, .icon.blue-contact .svg {
        width: 27px;
        height: 27px;
    }
}

/* line 97, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.studiometa, .icon.studiometa .svg {
    width: 79px;
    height: 18px;
}

/* line 104, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.next-slick, .icon.next-slick .svg, .icon.prev-slick, .icon.prev-slick .svg {
    width: 17px;
    height: 21px;
}

/* line 110, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.cross {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 20;
}

/* line 116, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.cross, .icon.cross .svg {
    width: 14px;
    height: 14px;
    display: block;
}

@media (min-width: 768px) {
    .icon.cross {
        display: none;
    }
}

/* line 127, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.micro {
    display: block;
}

/* line 129, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.micro, .icon.micro .svg {
    width: 15px;
    height: 23px;
}

/* line 135, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.arrow-top {
    display: block;
}

/* line 137, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.arrow-top, .icon.arrow-top .svg {
    width: 60px;
    height: 60px;
}

/* line 144, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/icons */
.icon.roll-eye, .icon.roll-eye .svg {
    width: 37px;
    height: 27px;
}

/*------------------------------------*\
		Navigation
\*------------------------------------*/
/* line 5, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu {
    position: fixed;
    width: 100%;
    background: #f7f3f0;
    z-index: 100;
    left: 0;
    top: 0;
    margin-top: 0;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
    -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);



    margin-top: -30px;

}

/* line 6, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu .medium-title {
    margin-bottom: 0;
}

/* line 25, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu.show {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .main-menu {
        display: block;
        margin-bottom: 20px;
        position: relative;
        width: auto;
        height: auto;
        background: none;
        border: 10px solid #f69861;
        padding: 20px;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media (min-width: 768px) {
    .main-menu {
        padding: 20px;
    }
}


/* added */
.right-frame{
    margin-top:-90px;
}

@media (max-width: 768px) {
    .right-frame {
        margin-top: -90px;
        margin-bottom:25px;
    }
}
/**/

@media (max-width: 768px) {
    /* line 64, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .row {
        margin: 0;
        margin-top:35px;
    }

    /* line 67, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .container {
        padding: 0;
        width: 100%;
    }

    /* line 72, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .cross {
        top: 0;
        right: 0;
    }

    /* line 79, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .main-menu-thumb.col-sm-2 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 768px) {
    /* line 89, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 200;
        border: none;
        background: #f7f3f0;
        margin-bottom: 0;
        border-bottom: 5px solid #f69861;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
        -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
        padding: 60px 0;
        background: rgba(247, 243, 240, 0.9);
    }

    /* line 106, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix.show {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
    }

    /* line 112, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .medium-title {
        display: none;
    }

    /* line 116, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .main-menu-thumb {
        float: left;
        margin-right: 0;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
        -webkit-transition: 0.6s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: 0.6s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* line 126, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .main-menu-thumb:nth-child(1) {
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

    /* line 127, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .main-menu-thumb:nth-child(2) {
        -webkit-transition-delay: 0.15s;
        transition-delay: 0.15s;
    }

    /* line 128, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .main-menu-thumb:nth-child(3) {
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }

    /* line 129, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .main-menu-thumb:nth-child(4) {
        -webkit-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }

    /* line 130, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .main-menu-thumb:nth-child(5) {
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    /* line 131, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .main-menu-thumb:nth-child(6) {
        -webkit-transition-delay: 0.35s;
        transition-delay: 0.35s;
    }

    /* line 134, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix.show .main-menu-thumb {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }

    /* line 140, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .main-menu-thumb-title {
        margin-left: 20px;
        font-size: 18px;
        line-height: 20px;
    }

    /* line 146, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .blue-roll {
        margin-top: -15px;
        width: 26px;
        height: 26px;
    }

    /* line 150, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .blue-roll i, .main-menu.fix .blue-roll .svg {
        width: 12px;
        height: 13px;
    }

    /* line 156, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .cross {
        display: none;
    }

    /* line 159, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .cross:hover {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    /* line 160, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .cross, .main-menu.fix .cross .svg {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 768px) {
    .main-menu.fix .main-menu-thumb {
        margin-bottom: 30px;
    }

    /* line 175, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu.fix .main-menu-thumb:nth-child(4), .main-menu.fix .main-menu-thumb:nth-child(5), .main-menu.fix .main-menu-thumb:nth-child(6) {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .main-menu.fix .main-menu-thumb {
        margin-bottom: 0;
    }
}

/* line 183, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.fixed-menu {
    position: fixed;
    right: 0;
    top: 186px;
    color: #f69861;
    text-transform: uppercase;
    font-size: 24px;
    padding-left: 50px;
    padding-right: 15px;
    cursor: pointer;
    z-index: 2000;
    display: none;
    min-width: 180px;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 199, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.fixed-menu:before {
    content: '';
    position: absolute;
    bottom: -10px;
    background: #f69861;
    width: 100%;
    left: 0px;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 209, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.fixed-menu .phone-nav {
    top: 14px;
    left: -24px;
    right: auto;
    margin-top: 0;
}

/* line 218, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.fixed-menu.close-mode {
    top: 20px;
}

/* line 221, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.fixed-menu.close-mode:before {
    width: 0;
}

/* line 224, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.fixed-menu.close-mode span:before, .fixed-menu.close-mode span:after {
    top: 0;
}

/* line 227, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.fixed-menu.close-mode span {
    width: 0;
}

/* line 230, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.fixed-menu.close-mode span:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0 !important;
}

/* line 234, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.fixed-menu.close-mode span:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0px !important;
}

@media (min-width: 768px) {
    .fixed-menu {
        display: block;
    }
}

/* line 278, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.frame {
    border: 10px solid #f69861;
    padding: 20px;
}

/* line 282, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.frame.blue {
    border-color: #0072bb;
}

@media (min-width: 768px) {
    .frame {
        padding: 20px;
    }
}

@media (min-width: 992px) {
    .frame {
        padding: 40px;
    }
}

/* line 295, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: 0.6s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.6s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    margin-top: 10px;
    cursor: pointer;
}

/* line 302, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb:nth-child(1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

/* line 303, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

/* line 304, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

/* line 305, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb:nth-child(4) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

/* line 306, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb:nth-child(5) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

/* line 307, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb:nth-child(6) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

/* line 309, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.show .main-menu-thumb {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

/* line 315, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb .table-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* line 316, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb a {
    display: block;
}

/* line 318, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb .table {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

/* line 325, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb .cell {
    vertical-align: middle;
}

/* line 329, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transition: 0.2s all ease-in;
    transition: 0.2s all ease-in;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* line 337, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb .blue-roll {
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 50%;
    display: none;
}

/* line 346, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb:hover img {
    opacity: 0.2;
}

/* line 352, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb:hover .main-menu-thumb-title {
    background-position: 0 0;
}

@media (min-width: 768px) {
    .main-menu-thumb {
        margin-top: 40px;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }

    /* line 368, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu-thumb .blue-roll {
        display: block;
    }
}

@media (min-width: 992px) {
    /* line 374, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
    .main-menu-thumb .blue-roll {
        right: 30px;
    }
}

/* line 380, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.main-menu-thumb-title {
    text-transform: uppercase;
    display: block;
    z-index: 2;
    color: white;
    margin-left: 20px;
    font-size: 18px;
    line-height: 20px;
    background: url('../images/layout/blue-mask.gif') repeat-y -140px 0;
    -webkit-background-clip: text;
   /* -webkit-text-fill-color: transparent;*/
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

@media (min-width: 768px) {
    .main-menu-thumb-title {
        font-size: 20px;
        line-height: 20px;
        margin-left: 10px;
    }
}

@media (min-width: 992px) {
    .main-menu-thumb-title {
        font-size: 30px;
        line-height: 30px;
        margin-left: 20px;
    }
}

/* line 411, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.firefox .main-menu-thumb, .ie .main-menu-thumb {
    -webkit-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

/* line 413, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.firefox .main-menu-thumb .main-menu-thumb-title, .ie .main-menu-thumb .main-menu-thumb-title {
    background: none;
    color: #fff;
}

/* line 419, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/components/navigation */
.firefox .main-menu-thumb:hover .main-menu-thumb-title, .ie .main-menu-thumb:hover .main-menu-thumb-title {
    color: #0072bb;
}

/*------------------------------------*\
		Slider
\*------------------------------------*/
/*------------------------------------*\
		Grid system (Bootstrap)
\*------------------------------------*/
/* line 5, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.container {
    width: 96%;
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

/* line 12, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.row {
    margin-left: -13px;
    margin-right: -13px;
}

@media (min-width: 768px) {
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (min-width: 992px) {
    .row {
        margin-left: -18px;
        margin-right: -18px;
    }
}

/* line 33, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.container, [class*="col-xs-"], [class*="col-sm-"], [class*="col-md-"], [class*="col-lg-"] {
    min-height: 1px;
    padding-left: 13px;
    padding-right: 13px;
}

@media (min-width: 768px) {
    .container, [class*="col-xs-"], [class*="col-sm-"], [class*="col-md-"], [class*="col-lg-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 992px) {
    .container, [class*="col-xs-"], [class*="col-sm-"], [class*="col-md-"], [class*="col-lg-"] {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* line 53, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-12 {
    width: 100%;
}

/* line 54, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-11 {
    width: 91.66666667%;
}

/* line 55, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-10 {
    width: 83.33333333%;
}

/* line 56, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-9 {
    width: 75%;
}

/* line 57, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-8 {
    width: 66.66666667%;
}

/* line 58, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-7 {
    width: 58.33333333%;
}

/* line 59, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-6 {
    width: 50%;
}

/* line 60, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-5 {
    width: 41.66666667%;
}

/* line 61, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-4 {
    width: 33.33333333%;
}

/* line 62, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-3 {
    width: 25%;
}

/* line 63, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-2 {
    width: 16.66666667%;
}

/* line 64, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
.col-xs-1 {
    width: 8.33333333%;
}

@media (min-width: 768px) {
    /* line 87, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    [class*="col-sm-"] {
        float: left;
    }

    /* line 91, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-12 {
        width: 100%;
    }

    /* line 92, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-11 {
        width: 91.66666667%;
    }

    /* line 93, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-10 {
        width: 83.33333333%;
    }

    /* line 94, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-9 {
        width: 75%;
    }

    /* line 95, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-8 {
        width: 66.66666667%;
    }

    /* line 96, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-7 {
        width: 58.33333333%;
    }

    /* line 97, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-6 {
        width: 50%;
    }

    /* line 98, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-5 {
        width: 41.66666667%;
    }

    /* line 99, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-4 {
        width: 33.33333333%;
    }

    /* line 100, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-3 {
        width: 25%;
    }

    /* line 101, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-2 {
        width: 16.66666667%;
    }

    /* line 102, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-sm-1 {
        width: 8.33333333%;
    }
}

@media (min-width: 992px) {
    /* line 107, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    [class*="col-md-"] {
        float: left;
    }

    /* line 111, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-12 {
        width: 100%;
    }

    /* line 112, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-11 {
        width: 91.66666667%;
    }

    /* line 113, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-10 {
        width: 83.33333333%;
    }

    /* line 114, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-9 {
        width: 75%;
    }

    /* line 115, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-8 {
        width: 66.66666667%;
    }

    /* line 116, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-7 {
        width: 58.33333333%;
    }

    /* line 117, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-6 {
        width: 50%;
    }

    /* line 118, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-5 {
        width: 41.66666667%;
    }

    /* line 119, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-4 {
        width: 33.33333333%;
    }

    /* line 120, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-3 {
        width: 25%;
    }

    /* line 121, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-2 {
        width: 16.66666667%;
    }

    /* line 122, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-md-1 {
        width: 8.33333333%;
    }
}

@media (min-width: 1200px) {
    /* line 127, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    [class*="col-lg-"] {
        float: left;
    }

    /* line 131, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-12 {
        width: 100%;
    }

    /* line 132, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-11 {
        width: 91.66666667%;
    }

    /* line 133, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-10 {
        width: 83.33333333%;
    }

    /* line 134, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-9 {
        width: 75%;
    }

    /* line 135, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-8 {
        width: 66.66666667%;
    }

    /* line 136, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-7 {
        width: 58.33333333%;
    }

    /* line 137, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-6 {
        width: 50%;
    }

    /* line 138, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-5 {
        width: 41.66666667%;
    }

    /* line 139, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-4 {
        width: 33.33333333%;
    }

    /* line 140, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-3 {
        width: 25%;
    }

    /* line 141, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-2 {
        width: 16.66666667%;
    }

    /* line 142, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/grid */
    .col-lg-1 {
        width: 8.33333333%;
    }
}

/*------------------------------------*\
		Header
\*------------------------------------*/
/* line 5, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.header-banner {
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url('../images/layout/header_bg_small.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    /* pour anciens Chrome et Safari */
    width: 100%;
}

@media (min-width: 768px) {
    .header-banner {
        height: 166px;
        background-image: url('../images/layout/header_bg_large.jpg');
    }
}

/* line 22, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.main-header {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .main-header {
        margin-top: 40px;
        margin-bottom: 130px;
    }
}

@media (min-width: 992px) {
    .main-header {
        margin-top: 40px;
    }
}

/* line 37, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.picto-header-container {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 163px;
}

@media (min-width: 768px) {
    .picto-header-container {
        margin-top: 60px;
        width: auto;
    }
}

/* line 54, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.social-container {
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 200;
}

/* line 60, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.social-container .link-header {
    top: 0;
}

/* line 61, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.social-container > span {
    display: none;
}

/* line 64, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.social-container a {
    margin: 0;
}

@media (min-width: 768px) {
    .social-container {
        margin-left: 50px;
    }

    /* line 71, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
    .social-container > span {
        display: inline-block !important;
        zoom: 1;
        *display: inline;
        margin-right: 5px;
    }
}

/* line 80, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.link-header {
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 200;
    text-decoration: none;
    margin-left: 0px;
    margin: 0 5px;
    top: -2px;
}

/* line 90, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.link-header i {
    float: left;
    margin-right: 0px;
}

/* line 94, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.link-header span {
    line-height: 50px;
}

/* line 97, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.link-header, .link-header i, .link-header span {
    vertical-align: middle;
}

/* line 102, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.link-header span {
    display: none;
}

@media (min-width: 768px) {
    .link-header {
        margin-left: 50px;
        margin-right: 0;
        top: 0;
    }

    /* line 109, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
    .link-header i {
        float: right;
        margin-left: 10px;
    }

    /* line 113, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
    .link-header span {
        display: inline-block !important;
        zoom: 1;
        *display: inline;
    }
}

/* line 122, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.logo {
    display: block;
}

/* line 124, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.logo img {
    width: 100%;
    height: auto;
}

/* line 130, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.main-logo {
    width: 64px;
    height: 64px;
}

@media (min-width: 768px) {
    .main-logo {
        width: 169px;
        height: 169px;
    }
}

/* line 140, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.phone-nav {
    height: 24px;
    width: 24px;
    margin-left: 10px;
    padding-top: 3px;
}

/* line 148, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.phone-nav span, .phone-nav span:after, .phone-nav span:before {
    content: '';
    background: white;
    height: 2px;
    width: 24px;
    position: absolute;
    display: block;
    -webkit-transition: 0.2s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.2s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 158, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.phone-nav span:before {
    top: -6px;
}

/* line 162, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.phone-nav span:after {
    top: 6px;
}

/* line 167, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.picto-header-container .phone-nav {
    top: 15px;
}

/* line 173, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.fixed-menu .phone-nav span, .fixed-menu .phone-nav span:after, .fixed-menu .phone-nav span:before {
    background: #f69861;
}

/* line 180, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.phone-nav:hover span:after, .fixed-menu:hover .phone-nav span:after {
    top: 8px;
}

/* line 184, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.phone-nav:hover span:before, .fixed-menu:hover .phone-nav span:before {
    top: -8px;
}

/* line 189, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.phone-nav:after {
    top: 6px;
    display: block;
}

/* line 194, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.phone-nav:before {
    top: -6px;
    display: block;
}

@media (min-width: 768px) {
    .phone-nav {
        display: none;
    }
}

/* line 206, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.breadcrumb {
    color: #565351;
    font-size: 17px;
    left: 204px;
    position: absolute;
    bottom: 7px;
    display: none;
}

/* line 212, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.breadcrumb li {
    display: inline;
}

/* line 216, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.breadcrumb a {
    color: #565351;
    text-decoration: none;
    -webkit-transition: 0.2s all cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: 0.2s all cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 221, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/header */
.breadcrumb a:hover {
    color: #f69861;
}

@media (min-width: 768px) {
    .breadcrumb {
        display: block;
    }
}

/*------------------------------------*\
		Footer
\*------------------------------------*/
/* line 5, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.main-footer {
    min-height: 238px;
    background-image: url("../images/layout/footer_background_large.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
    padding: 50px 0;
}

/* line 17, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-logo {
    position: absolute;
    left: 13px;
    width: 64px;
    height: 64px;
    z-index: 2;
}

@media (min-width: 768px) {
    .footer-logo {
        position: relative;
        left: auto;
        float: left;
        position: absolute;
        left: 0;
        top: 0;
    }
}

@media (min-width: 992px) {
    .footer-logo {
        width: 105px;
        height: 105px;
        float: left;
    }
}

/* line 45, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-nav {
    text-transform: uppercase;
    height: 64px;
    margin-left: 84px;
}

/* line 51, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-nav li {
    display: block;
    float: left;
    width: 75px;
    margin-top: 10px;
}

/* line 57, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-nav li.contact-us {
    margin-left: 5%;
    margin-right: 0;
}

/* line 63, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

@media (min-width: 768px) {
    .footer-nav {
        margin-right:100px;
        margin-left: 0;
        height: auto;
    }

    /* line 73, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
    .footer-nav li {
        float: none;
        display: inline;
        margin-right: 7%;
        width: auto;
    }

    /* line 80, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
    .footer-nav a {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .footer-nav {
        margin-right: 140px;
    }

    /* line 88, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
    .footer-nav a {
        font-size: 23px;
    }
}

/* line 94, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.border-btn:before, .fixed-menu:before, .news-line .news-line-date:after, .default-slider .control.next-slick:before, .submenu-link a:before {
    content: '';
    display: block;
    height: 3px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

@media (min-width: 992px) {
    .border-btn:before, .fixed-menu:before, .news-line .news-line-date:after, .default-slider .control.next-slick:before, .submenu-link a:before {
        height: 5px;
    }
}

/* line 106, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-right {
    width: 100%;
}

@media (min-width: 768px) {
    .footer-right {
        margin-right: 0;
        margin-left: auto;
        padding-top: 0px;
        max-width: 580px;
    }

    /* line 115, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
    .footer-right:before {
        display: block;
    }
}

@media (min-width: 992px) {
    .footer-right {
        padding-top: 30px;
        max-width: 760px;
    }
}

/* line 127, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.contact-us {
    text-decoration: none;
    color: #0072bb;
    text-transform: uppercase;
    display: block;
    margin-top: 20px;
}

/* line 136, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.contact-us i {
    float: left;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .contact-us {
        margin-top: 0px;
        position: absolute;
        right: 0;
        top: 0px;
        font-size: 18px;
        line-height: 24px;
    }
}

@media (min-width: 992px) {
    .contact-us {
        font-size: 23px;
        line-height: 36px;
        top: 6px;
        margin-top: 20px;
    }
}

/* line 159, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-info {
    color: #9fb1bd;
    font-family: 'Arvo', 'Times New Roman', serif;
    font-size: 12px;
    margin-top: 20px;
}

/* line 165, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-info p, .footer-info a {
    font-family: 'Arvo', 'Times New Roman', serif;
    color: #9fb1bd;
}

/* line 170, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-info a:hover {
    color: #fff;
}

/* line 174, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-info .sign {
    margin-top: 40px;
}

/* line 178, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-info .copyright {
    margin-right: 0px;
}

/* line 182, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-info a {
    display: block;
    margin-top: 10px;
}

/* line 186, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.footer-info span {
    display: none;
}

@media (min-width: 768px) {
    .footer-info {
        margin-top: 30px;
    }

    /* line 192, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
    .footer-info .copyright {
        margin-right: 60px;
    }

    /* line 196, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
    .footer-info p {
        display: inline;
    }

    /* line 200, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
    .footer-info a {
        margin-top: 10px;
        display: block;
    }

    /* line 205, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
    .footer-info span {
        display: inline;
    }

    /* line 208, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
    .footer-info .sign {
        position: absolute;
        right: 0;
        bottom: -5px;
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    /* line 217, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
    .footer-info a {
        display: inline;
        margin: 0;
    }
}

/* line 224, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.back-top {
    display: block;
    position: absolute;
    right: 20px;
    top: -80px;
    cursor: pointer;
    -webkit-transition: 0.3s all cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: 0.3s all cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 232, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.back-top:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* line 235, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.back-top:hover span {
    z-index: 2;
}

/* line 239, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/layout/footer */
.back-top span {
    color: #0072bb;
    position: absolute;
    z-index: 0;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    top: 50%;
    margin-top: -14px;
    left: -20px;
}

/*------------------------------------*\
		Page d'accueil
\*------------------------------------*/
/* line 14, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
body {
    background: #f7f3f0;
    /*
    background: url('../images/layout/background_body.png') no-repeat top center #f7f1ee;
    */
}

/* line 19, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.large-title {
    font-family: "DIN", "Arial", sans-serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 50px;
    color: #565351;
    text-transform: uppercase;
    margin-bottom: 100px;
    margin-top:-85px;
}

@media (max-width: 768px) {
    .large-title {
        font-size: 35px;
        line-height: 37px;
        margin-bottom: 25px;
        margin-top:-25px;!important
    }

    .right-frame{
        margin-top:10px;
    }
}

@media (min-width: 768px) {
    .large-title {
        font-size: 49px;
        line-height: 54px;
        margin-top: -90px;
        margin-bottom: 30px;
    }

    .right-frame{
        margin-top:-90px;
    }
}

@media (min-width: 992px) {
    .large-title {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 50px;


    }
}

/* line 40, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.medium-title {
    margin: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .medium-title {
        font-size: 38px;
        line-height: 40px;
    }
}

@media (min-width: 992px) {
    .medium-title {
        font-size: 45px;
        line-height: 47px;
        margin-bottom: 30px;
    }
}

/* line 59, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.orange-text {
    background: -webkit-gradient(linear, left top, right top, from(#f36f23), to(#f69861));
    background: linear-gradient(to right, #f36f23, #f69861);
    -webkit-background-clip: text;
}

/* line 67, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.firefox .orange-text, .ie .orange-text, .firefox .orange-text, .ie .orange-text, .ie .content-editor h2, .ie .content-editor h3 {
    background: none;
    color: #f69861;
}

/* line 72, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.content {
    font-family: 'Arvo', 'Times New Roman', serif;
    font-size: 15px;
    line-height: 17px;
    color: #7a7878;
}

/* line 78, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.content p {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .content {
        font-size: 15px;
        line-height: 20px;
    }
}

@media (min-width: 992px) {
    .content {
        font-size: 17px;
        line-height: 22px;
    }
}

@media (min-width: 768px) {
    .content.small {
        font-size: 16px;
        line-height: 21px;
    }
}

/* line 98, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.pad-r {

    padding-right: 0;
}

@media (min-width: 768px) {
    .pad-r {
        padding-right: 8.33333333%;
    }
}

/* line 106, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.row-home {
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .row-home {
        margin-bottom: 130px;
    }
}

/* line 115, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-news .border-btn {
    margin-top: 20px;
}

@media (min-width: 768px) {
    /* line 120, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .block-news .border-btn {
        margin-top: 30px;
    }
}

/* line 124, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line {
    margin-top: 20px;
}

/* line 129, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .news-line-left {
    float: left;
    width: 35%;
}

/* line 134, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .news-line-right {
    float: none;
    width: 100%;
}

/* line 138, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .news-line-right .plus-container {
    position: absolute;
    top: 0;
    right: 0;
}

/* line 145, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .news-line-pic {
    display: block;
    display: none;
}

/* line 149, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .news-line-pic img {
    display: block;
    width: 100%;
    height: auto;
}

/* line 156, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .news-line-title {
    color: #565351;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 5px;
    max-width: 160px;
    font-size: 20px;
    line-height: 18px;
}

/* line 167, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .news-line-title a {
    text-decoration: none;
    color: #565351;
    -webkit-transition: 0.2s color ease-in-out;
    transition: 0.2s color ease-in-out;
}

/* line 172, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .news-line-title a:hover {
    color: #0072bb;
}

/* line 178, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .news-line-date {
    font-family: 'Arvo', 'Times New Roman', serif;
    color: #000000;
    font-size: 14px;
    display: block;
    opacity: 0.9;
}

/* line 185, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .news-line-date:after {
    background: #0072bb;
    max-width: 72px;
    margin-top: 10px;
    margin-left: 0px;
}

/* line 195, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.news-line .content {
    font-size: 15px;
    line-height: 18px;
    display: none;
}

@media (min-width: 992px) {
    .news-line {
        margin-top: 60px;
    }

    /* line 205, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .news-line .news-line-date:after {
        max-width: 160px;
        margin-left: -60px;
    }

    /* line 211, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .news-line .news-line-title {
        font-size: 26px;
        line-height: 26px;
    }

    /* line 216, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .news-line .news-line-right {
        float: right;
        width: 58%;
    }

    /* line 221, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .news-line .news-line-pic {
        display: block;
    }

    /* line 225, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .news-line .content {
        display: block;
    }
}

/* line 233, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-media .media-container {
    display: block;
}

/* line 238, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-media .media-container:hover .noise {
    -webkit-animation: noise 0.3s steps(10) infinite;
    -ms-animation: noise 0.3s steps(10) infinite;
    animation: noise 0.3s steps(10) infinite;
}

/* line 245, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-media .media-container .pic-container {
    overflow: hidden;
}

/* line 249, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-media .media-container .noise {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 200%;
    z-index: 3;
    background: url('../images/layout/noise.png') repeat center center;
}

/* line 261, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-media .media-container img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
}

/* line 268, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-media .media-container .lock-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    /*
    background-image: url('../images/layout/pic_media.jpg');
    */
    background-repeat: no-repeat;
    z-index: 10;
}

/* line 279, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-media .media-container .media-container-title {
    display: block;
    position: absolute;
    left: 20px;
    color: #000;
    opacity: 0.6;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 30px;
    top: 100%;
    margin-top: -55px;
    z-index: 30;
}

/* line 293, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-media .media-container iframe {
    width: 100%;
    height: 423px;
    top: 0;
    left: 0;
    z-index: 0;
}

/* line 301, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-media .media-container .play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 11;
    margin-left: -28px;
    margin-top: -28px;
}

@media (min-width: 768px) {
    /* line 312, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .block-media .media-container .media-container-title {
        font-size: 50px;
        line-height: 60px;
        margin-top: -110px;
        left: 30px;
    }
}

@media (min-width: 992px) {
    /* line 321, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .block-media .media-container .play {
        margin-top: -57px;
        margin-left: -57px;
    }
}

@-webkit-keyframes noise {
    /* line 332, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    /* line 333, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    10% {
        -webkit-transform: translate(-5%, -4%);
        transform: translate(-5%, -4%);
    }

    /* line 334, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    20% {
        -webkit-transform: translate(-3%, 5%);
        transform: translate(-3%, 5%);
    }

    /* line 335, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    30% {
        -webkit-transform: translate(4%, 1%);
        transform: translate(4%, 1%);
    }

    /* line 336, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    40% {
        -webkit-transform: translate(-5%, 4%);
        transform: translate(-5%, 4%);
    }

    /* line 337, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    50% {
        -webkit-transform: translate(-6%, 2%);
        transform: translate(-6%, 2%);
    }

    /* line 338, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    60% {
        -webkit-transform: translate(3%, 0%);
        transform: translate(3%, 0%);
    }

    /* line 339, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    70% {
        -webkit-transform: translate(0%, 2%);
        transform: translate(0%, 2%);
    }

    /* line 340, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    80% {
        -webkit-transform: translate(3%, 1%);
        transform: translate(3%, 1%);
    }

    /* line 341, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    90% {
        -webkit-transform: translate(-6%, 3%);
        transform: translate(-6%, 3%);
    }
}

/* line 346, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.pad-t50 {
    padding-top: 30px;
}

@media (min-width: 992px) {
    .pad-t50 {
        padding-top: 50px;
    }
}

/* line 354, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.default-slider img {
    width: 100%;
    height: auto;
}

/* line 359, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.default-slider .control {
    position: absolute;
    right: -25px;
    bottom: 30px;
    z-index: 10;
    cursor: pointer;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 369, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.default-slider .control:hover.next-slick {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

/* line 372, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.default-slider .control:hover.prev-slick {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
}

/* line 377, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.default-slider .control.next-slick {
    right: -45px;
}

/* line 379, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.default-slider .control.next-slick:before {
    position: absolute;
    background: #0072bb;
    width: 120px;
    bottom: -10px;
    left: -105px;
}

@media (min-width: 768px) {
    .default-slider .control {
        right: -60px;
    }

    /* line 392, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .default-slider .control.next-slick {
        right: -90px;
    }

    /* line 394, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .default-slider .control.next-slick:before {
        width: 150px;
        left: -135px;
    }
}

/* line 403, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.row-home:first-of-type {
    margin-bottom: 200px;
}

/* line 405, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.row-home:last-of-type {
    margin-bottom: 110px;
}

@media (min-width: 768px) {
    .row-home:last-of-type {
        margin-bottom: 160px;
    }
}

/* line 414, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-slider .block-blue {
    position: absolute;
    height: 100%;
    background: #215372;
    right: 15px;
    top: -170px;
    z-index: 0;
    overflow: hidden;
    max-width: 230px;
    width: 100%;
}

/* line 425, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-slider .block-blue .table {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* line 431, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.block-slider .block-blue .table .cell {
    height: 100%;
    vertical-align: middle;
}

@media (min-width: 604px) {
    .block-slider .block-blue {
        margin-left: 35%;
        width: 60%;
        max-width: none;
    }
}

@media (min-width: 768px) {
    .block-slider .block-blue {
        width: 70%;
        height: 100%;
        top: -100px;
    }
}

/* line 452, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.slider-home {
    z-index: 1;
    width: 100%;
    max-width: 230px;
    margin-left: 15px;
}

/* line 459, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.slider-home a {
    display: block;
}

@media (min-width: 604px) {
    .slider-home {
        max-width: none;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .slider-home {
        margin-left: 15px;
        width: 57%;
        max-width: none;
        max-width: 710px;
    }
}

@media (min-width: 992px) {
    .slider-home {
        margin-left: -60px;
    }
}

/* line 479, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.slide-content {
    z-index: 20;
    margin-left: 30px;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* line 483, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.slide-content .slide-content-title {
    margin-bottom: 0px;
}

/* line 487, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.slide-content .slide-content-date {
    font-family: 'Arvo', 'Times New Roman', serif;
    font-size: 14px;
    color: #7cb4d8;
    margin-bottom: 10px;
    display: block;
}

/* line 495, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.slide-content .slide-content-intro {
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

/* line 506, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.slide-content.hide {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

/* line 510, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.slide-content.none {
    display: none;
}

@media (min-width: 604px) {
    .slide-content {
        margin-left: 35%;
    }
}

@media (min-width: 768px) {
    .slide-content {
        margin-left: 48%;
    }

    /* line 522, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .slide-content .slide-content-date {
        font-size: 16px;
        margin-bottom: 20px;
        display: block;
    }

    /* line 528, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .slide-content .slide-content-intro {
        font-size: 32px;
        line-height: 36px;
    }
}

@media (min-width: 992px) {
    .slide-content {
        margin-left: 40%;
    }

    /* line 537, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .slide-content .slide-content-date {
        font-size: 20px;
        margin-bottom: 30px;
        display: block;
    }

    /* line 543, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .slide-content .slide-content-intro {
        font-size: 44px;
        line-height: 50px;
    }
}

@media (min-width: 1200px) {
    .slide-content {
        margin-left: 40%;
    }

    /* line 552, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .slide-content .slide-content-date {
        font-size: 20px;
        margin-bottom: 30px;
        display: block;
    }

    /* line 558, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
    .slide-content .slide-content-intro {
        font-size: 55px;
        line-height: 59px;
    }
}

/* line 566, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.row-white:before {
    content: '';
    display: block;
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: -70px;
    width: 100%;
    height: 100%;
    top: 70px;
    max-height: 650px;
    display: none;
}

@media (min-width: 768px) {
    .row-white:before {
        display: block;
    }
}

/* line 584, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.blue-roll {
    width: 80px;
    height: 80px;
    display: block;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* line 590, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.blue-roll:before, .blue-roll:after {
    content: '';
    height: 50%;
    width: 100%;
    background: #0072bb;
    display: block;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transition: all 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    will-change: transform;
}

/* line 602, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.blue-roll:before {
    left: 0;
    top: 0;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
}

/* line 608, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.blue-roll:after {
    right: 0;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

/* line 613, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.blue-roll .icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg) scale(0);
    -ms-transform: translateY(-50%) translateX(-50%) rotate(45deg) scale(0);
    transform: translateY(-50%) translateX(-50%) rotate(45deg) scale(0);
    -webkit-transition: 0.2s all cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: 0.2s all cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 623, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
a:hover .blue-roll {
    visibility: visible;
    opacity: 1;
}

/* line 627, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
a:hover .blue-roll:after, a:hover .blue-roll:before {
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transform: scale(1.1, 1);
    -ms-transform: scale(1.1, 1);
    transform: scale(1.1, 1);
}

/* line 628, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
a:hover .blue-roll:after {
    background: #036aab;
}

/* line 630, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
a:hover .blue-roll .icon {
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg) scale(1);
    -ms-transform: translateY(-50%) translateX(-50%) rotate(45deg) scale(1);
    transform: translateY(-50%) translateX(-50%) rotate(45deg) scale(1);
}

/* line 637, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.blue-roll:hover:before, .blue-roll:hover:after {
    -webkit-transform: scale(1, 1) !important;
    -ms-transform: scale(1, 1) !important;
    transform: scale(1, 1) !important;
    background: #0072bb !important;
}

/* line 643, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.slider-home .blue-roll {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
}

/* line 652, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.main-menu-thumb .blue-roll {
    width: 36px;
    height: 36px;
    margin-top: -18px;
    z-index: 10;
}

/* line 658, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/home */
.main-menu-thumb .blue-roll .icon, .main-menu-thumb .blue-roll .svg {
    width: 17px;
    height: 13px;
}

/* line 1, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-container {
    padding-bottom: 100px;
}

@media (min-width: 768px) {
    .contact-container {
        padding-top: 50px;
    }
}

/* line 8, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-thumb {
    max-width: none;
    width: 100%;
    margin-top: 40px;
}

/* line 14, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-thumb.first {
    margin-top: 50px;
}

/* line 15, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-thumb.right {
    float: right;
}

/* line 16, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-thumb.left {
    float: left;
}

/* line 18, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-thumb img {
    width:50%;
    height: auto;
    display: block;
    margin-left:50%;
}

/* line 24, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-thumb .upper-title {
    text-transform: uppercase;
    font-size: 40px;
    line-height: 40px;
    color: black;
    opacity: 0.6;
    position: absolute;
    left: 0px;
    z-index: 10;
    bottom: 100%;
    margin-bottom: -30px;
    margin-left:15px;
}

@media (min-width: 768px) {
    .contact-thumb {
        max-width: 472px;
        margin-top: 0;
        margin-bottom: 60px;
    }

    /* line 43, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
    .contact-thumb.first {
        margin-top: 50px;
    }

    /* line 47, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
    .contact-thumb .upper-title {
        font-size: 60px;
        line-height: 60px;
        left: -30px;
        margin-bottom: -40px;
    }

    .contact-thumb img{
        width: 75%;
        margin-left:10%;
    }
}

@media (min-width: 992px) {
    /* line 56, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
    .contact-thumb.first {
        margin-top: 150px;
    }

    .contact-thumb img{
        width: 75%;
        margin-left:10%;
    }
}

/* line 62, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.lang {
    position: absolute;
    right: 0;
    top: 10px;
}

/* line 67, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.lang .lang-list {
    background: white;
    width: 30px;
    text-align: center;
    padding: 10px 0 5px 0;
    font-size: 14px;
    position: absolute;
    right: -40px;
    top: 0;
    text-transform: uppercase;
}

/* line 78, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.lang .lang-list:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 6px 5px 0;
    border-color: transparent white transparent transparent;
    display: block;
    position: absolute;
    left: -6px;
    top: 8px;
}

/* line 87, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.blue .lang .lang-list {
    color: #2e99dc;
}

/* line 88, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.orange .lang .lang-list {
    color: #f36f23;
}

@media (min-width: 768px) {
    .lang {
        right: 0;
    }
}

/* line 97, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-info-container {
    width: 100%;
    opacity: 0.9;
    padding: 20px;
    height:100px; padding-top:5px;
}

/* line 103, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-info-container.blue {
    background-image: -webkit-gradient(linear, left bottom, right top, from(#0071B8), to(#1D95E0));
    background-image: linear-gradient(to top right, #0071B8 0%, #1D95E0 100%);
}

/* line 113, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-info-container.orange {
    background-image: -webkit-gradient(linear, left bottom, right top, from(#F36F23), to(#F4803D));
    background-image: linear-gradient(to top right, #F36F23 0%, #F4803D 100%);
}



/*

@media (min-width: 768px) {
    .contact-info-container {
        max-width: 305px;
        position: absolute;
        bottom: 50px;
        height: 266px;
        padding: 30px;
    }


    .contact-info-container.blue {
        left: -100px;
    }


    .contact-info-container.orange {
        right: -100px;
    }
}
*/

/* line 140, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-name {
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 0;
}

/* line 149, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-post {
    font-family: 'Arvo', 'Times New Roman', serif;
    color: black;
    opacity: 0.6;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .contact-post {
        margin-bottom: 40px;
    }
}

/* line 162, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-coord {
    color: #fff;
    font-family: 'Arvo', 'Times New Roman', serif;
    font-size: 12px;
    line-height: 26px;
    text-decoration: none;
    /*
    padding-left: 38px;
    margin-top: 10px;
    */
    display: block;

    padding-left:12px; margin-top:0px;
}

/* line 172, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-coord .icon, .contact-coord .svg {
    /*
    width: 26px;
    height: 26px;
    */

    height:25px;
    width:25px;
    margin-top:5px;
    margin-left:3px;
}


/* line 177, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-coord i {
    position: absolute;
    left: 0;
}

/* line 182, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
.contact-coord .mail {
    left: 2px;
}

.contact-pic {
    border-radius:50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    width:105px;
    height:105px;
}

@media (min-width: 768px) {
    .contact-coord {
        font-family: 'Arvo', 'Times New Roman', serif;
        font-size: 12px;
        line-height: 38px;
        /*padding-left: 48px;*/

        padding-left:12px;
        margin-top:3px;
    }

    /* line 190, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/contact */
   .contact-coord .svg {
        width: 38px;
        height: 38px;

        height:25px;
        width:25px;
        margin-top:3px;
    }

    .contact-mail .svg{
        margin-left:-10px;
    }

    .contact-tel .svg{
        margin-top:7px;
        margin-left:-20px;
    }
}


@media (min-width:640px) and (max-width:768px){
    .contact-coord {
        margin-top:7px;
        padding-top:5px;
    }

    .contact-coord .svg {
        margin-left:10px;
        margin-top:0px;
    }

    .contact-tel .svg{
        margin-left:15px;
    }

    .contact-mail {
        padding-top:0px;
    }

    .contact-mail .svg{
        margin-top:-15px;
    }

}

@media (max-width: 640px) {

    .contact-coord {
        margin-top:7px;
        padding-top:5px;
    }

    .contact-coord .svg {
        margin-left:10px;
        margin-top:0px;
    }

    .contact-tel .svg{
        margin-left:15px;
    }

    .contact-mail {
        padding-top:5px;
    }

    .contact-mail .svg{
        margin-top:-5px;
    }

    .contact-pic{
        float:left;
        margin-right:15px;
    }
}

/* line 1, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
section {
    padding-bottom: 60px;
}

/* line 5, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu {
    padding-bottom: 120px;
}

/* line 6, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: url('../images/layout/overlay_submenu.png') repeat-x top left;
    height: 120px;
    z-index: 2;
}

/* line 18, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu .toggle-menu {
    position: absolute;
    z-index: 3;
    color: #0072bb;
    text-align: center;
    font-size: 16px;
    left: 50%;
    margin-left: -15px;
    bottom: 30px;
    cursor: pointer;
}

/* line 29, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu .toggle-menu i {
    display: block;
    -webkit-transition: 0.2s all cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.2s all cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 33, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu .toggle-menu i, .submenu .toggle-menu .svg {
    width: 30px;
    height: 30px;
}

/* line 39, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu .toggle-menu:hover i {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* line 46, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu .medium-title {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .submenu {
        padding-bottom: 100px;
    }

    /* line 53, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
    .submenu:before {
        height: 120px;
    }

    /* line 57, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
    .submenu .medium-title {
        margin-bottom: 0;
    }

    /* line 62, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
    .submenu .toggle-menu {
        margin-left: -20px;
        font-size: 20px;
    }

    /* line 66, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
    .submenu .toggle-menu i, .submenu .toggle-menu .svg {
        width: 40px;
        height: 40px;
    }
}

/* line 76, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu.open:before {
    display: none;
}

/* line 77, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu.open .submenu-list {
    max-height: 1000px;
}

/* line 78, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu.open i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* line 81, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu-list {
    overflow-y: hidden;
    overflow-x: visible;
    max-height: 170px;
    -webkit-transition: 0.4s all cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: 0.4s all cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (min-width: 768px) {
    .submenu-list {
        max-height: 200px;
    }
}

@media (min-width: 992px) {
    .submenu-list {
        font-size: 26px;
        font-size: 26px;
        max-height: 200px;
    }
}

/* line 103, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu-link {
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 10px;
}

/* line 104, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu-link a {
    color: #565351;
    text-decoration: none;
    -webkit-transition: 0.2s all cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: 0.2s all cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 109, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu-link a:before {
    background: #0072bb;
    position: absolute;
    bottom: -3px;
    left: -5px;
    width: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

/* line 119, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu-link a:hover {
    color: #0072bb;
}

/* line 122, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.submenu-link a:hover:before {
    width: 110%;
}

@media (min-width: 768px) {
    .submenu-link {
        font-size: 20px;
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .submenu-link {
        font-size: 26px;
        font-size: 26px;
    }
}

@media (min-width: 1200px) {
    .submenu-link {
        font-size: 32px;
        margin-top: 20px;
    }
}

/* line 149, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.full-w {
    width: 100%;
    height: auto;
    display: block;
}

/* line 156, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.block-paris .col-sm-7 {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .block-paris .col-sm-7 {
        margin-bottom: 0;
    }
}

/* line 165, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.row-content {
    margin-bottom: 40px;
}

.row-content h4{
    text-transform: uppercase;
    color: #0072bb;
    margin-bottom:10px;
    font-family: 'DIN', 'Arial', 'Serif';
}


.row-content .table{
    border-collapse: separate;
    border-spacing: 5px;
}

    /* line 423, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/tools/normalize */
.row-content .table  td, th {
    padding: 5px;
    text-align:left;
    vertical-align: top;
}

.row-content .table td  img
{
    min-width:150px;
}


@media (min-width: 768px) {
    .row-content {
        margin-bottom: 110px;
    }
}

/* line 174, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-news .news-line {
    float: none;
    width: 100%;
}

@media (min-width: 768px) {
    /* line 180, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
    .content-news .news-line {
        float: left;
        width: 45%;
    }

    /* line 183, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
    .content-news .news-line.right {
        float: right;
    }
}

/* line 191, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.wrap-container:before {
    content: '';
    display: block;
    height: 115px;
    background: url('../images/layout/header_bg_large.jpg') no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
    width: 70%;
    position: absolute;
    left: 0;
    top: -60px;
    z-index: 0;
    display: none;
}

/* line 205, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.wrap-container.right-wrap {
    margin-top: 0;
}

/* line 208, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.wrap-container.right-wrap:before {
    right: 0;
    left: auto;
    bottom: 100px;
    top: auto;
}

@media (min-width: 768px) {
    /* line 217, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
    .wrap-container:before {
        display: block;
    }
}

/* line 223, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.container-content-news {
    z-index: 1;
}

@media (min-width: 768px) {
    .large-mb {
        margin-bottom: 140px;
    }
}

/* line 234, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.firefox .content-editor h2, .firefox .content-editor h3 {
    background: none;
    color: #f69861;
}

/* line 240, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor, .partners-thumb {
    font-family: 'Arvo', 'Times New Roman', serif;
    font-size: 15px;
    line-height: 17px;
    color: #7a7878;
}



/* line 246, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor ol, .content-editor ul, .partners-thumb ol, .partners-thumb ul {
    padding-left: 20px;
}

/* line 250, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor ul, .partners-thumb ul {
    list-style-type: disc;
}

/* line 254, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor p, .partners-thumb p {
    margin-bottom: 30px;
}

/* line 256, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor p a, .partners-thumb p a {
    text-decoration: none;
    color: #0072bb;
}

/* line 259, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor p a:hover, .partners-thumb p a:hover {
    color: #0091ee;
}

/* line 264, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor li a, .partners-thumb li a {
    color: #0072bb;
    text-decoration: none;
}

/* line 267, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor li a:hover, .partners-thumb li a:hover {
    color: #0091ee;
}

/* line 271, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor img, .partners-thumb img {
    max-width: 100%;
    height: auto !important;
    margin-bottom: 30px !important;
}

/* line 276, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor h2, .content-editor h3, .partners-thumb h2, .partners-thumb h3 {
    background: -webkit-gradient(linear, left top, right top, from(#f36f23), to(#f69861));
    background: linear-gradient(to right, #f36f23, #f69861);
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    margin: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 400;
    font-family: 'DIN', 'Arial', serif;
}

@media (min-width: 768px) {
    .content-editor h2, .content-editor h3, .partners-thumb h2, .partners-thumb h3 {
        font-size: 40px;
        line-height: 42px;
    }

    .container_up{
        margin-top:-100px;
    }
}

@media (min-width: 992px) {
    .content-editor h2, .content-editor h3, .partners-thumb h2, .partners-thumb h3 {
        font-size: 50px;
        line-height: 52px;
        margin-bottom: 30px;
    }

    .container_up{
        margin-top:-100px;
    }
}

/* line 299, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.content-editor h3, .partners-thumb h3 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-family: 'DIN', 'Arial', serif;
}

@media (min-width: 768px) {
    .content-editor h3, .partners-thumb h3 {
        font-size: 30px;
        line-height: 30px;
    }
}

@media (min-width: 992px) {
    .content-editor h3, .partners-thumb h3 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 30px;
    }
}


@media (min-width: 768px) {
    .content-editor, .partners-thumb {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (min-width: 992px) {
    .content-editor, .partners-thumb {
        font-size: 17px;
        line-height: 22px;
    }
}


/*# sourceMappingURL=styles.css.map */

.partners-thumb a {
    white-space: nowrap;
    text-align: center;
    overflow:hidden;
    color: #0072bb;
    text-decoration: none;
}

/* line 267, /Users/guillaume/Documents/#Projets/Paris & Co/www/assets/scss/pages/content */
.partners-thumb a:hover {
    color: #0091ee;
}

.partners-thumb .main-menu-thumb {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
