/*
 * Author: Carlos Alvarez
 * URL: http://Alvarez.is
 *
 * Project Name: NYC Design
 * Version: 1.0
 * Date: 04-20-2014
 * URL: 
 */
/* ==========================================================================
   Base Styles, Bootstrap Modifications & Fonts Import
   ========================================================================== */
@import url(http://fonts.googleapis.com/css?family=Oswald:400,300,700);
@import url(http://fonts.googleapis.com/css?family=Lato:400,700);
@import url(https://fonts.googleapis.com/css?family=Jura);
@import url(https://fonts.googleapis.com/css?family=Ubuntu);
@import url(https://fonts.googleapis.com/css?family=Dosis);
@import url(https://fonts.googleapis.com/css?family=Rajdhani:400,700);
@import url(https://fonts.googleapis.com/css?family=Montserrat:200|Quicksand&subset=latin-ext);

html,
button,
input,
select,
textarea {
    color: #222;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #f2c2c9;
    color: #a4003a;
    text-shadow: none;
}

::selection {
    background: #16a085;
    color: #a4003a;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

.centered {
    text-align: center
}

/* ==========================================================================
   General styles
   ========================================================================== */

html,
body {
    height: 100%;
}

body {
    font-family: "Quicksand" sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;

    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-align: center;
}

h3 {
    text-align: center;
}

p {
    text-align: justify;
    font-family: 'Quicksand', sans-serif;
}

/* ==========================================================================
   MENU CONFIGURATION
   ========================================================================== */

.menu {
    position: fixed;
    right: -200px;
    width: 260px;
    height: 100%;
    top: 0;
    z-index: 10;
    text-align: left;
}

.menu.menu-open {
    right: 0px;
}

.menu-wrap {
    position: absolute;
    top: 0;
    left: 60px;
    background: #1a1a1a;
    width: 200px;
    height: 100%;
}

.menu h1.logo a {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 40px;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 20px;
    text-align: left;
}

.menu h1.logo a:hover {

}

.menu img.logo {
    margin: 20px 0;
    max-width: 160px;
}

.menu a {
    font-family: "Montserrat", sans-serif;
    margin-left: 20px;
    color: #808080;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu a:hover {
    color: #ffffff;
    text-decoration: none;
}

.menu a:active {
    color: #ffffff;
}

.menu a > i {
    float: left;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    width: 25px;
    font-size: 14px;
    line-height: 40px;
    margin: 25px 2px;
}

.menu-close {
    cursor: pointer;
    display: block;
    position: absolute;
    font-size: 14px;
    color: #808080;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 20px;
    right: 5px;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.menu-close:hover {
    color: #ffffff;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

/* Push the body after clicking the menu button */
.body-push {
    overflow-x: hidden;
    position: relative;
    left: 0;
}

.body-push-toright {
    left: 200px;
}

.body-push-toleft {
    left: -200px;
}

.menu,
.body-push {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#menuToggle {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 11;
    display: block;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

#menuToggle:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

/* ==========================================================================
   Wrap Sections
   ========================================================================== */

#headerwrap {
    background: url(../img/Background_home.jpg) no-repeat center top;
    margin-top: 0px;
    padding-top: 120px;
    text-align: center;
    background-attachment: relative;
    background-position: center center;
    min-height: 100%;
    width: 100%;

    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.img {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

#headerwrap h1 {
    color: white;
    margin-top: 40%;
    letter-spacing: 8px;
    font-size: 50px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6);
    font-size: 2.8em;
}

/* About Wrap & Conf */
#aboutwrap {
    margin-top: 80px;
    margin-bottom: 80px;
}

.name {
    text-align: center;
}

.name p {
    font-size: 22px;
    font-weight: lighter;
    margin-top: 15px;
    letter-spacing: 2px;
    text-align: center;
}

.cv {
    width: 170px;
    border-top: 1px solid #000;
    text-align: center;
    margin: auto;
}

.cv p {
    font-size: 16px;
    color: black;
}

.cv a:hover {
    font-size: 16px;
    text-decoration: underline;
    color: black;
}

.cv p i {
    font-size: 30px;
}

.name-zig {
    width: 110px;
    height: 45px;
    margin: 38px 0 38px;
    background: url(../img/tmv.png) 0 0 no-repeat;
    background-size: 110px auto;
}

.name-desc h2 {
    /*font-family: 'Oswald', sans-serif;*/
    font-size: 33px;
    line-height: 1.45;
    font-weight: bold;
    text-align: justify;
}

/* Separator About - Parallax Section */
.sep {
    background-attachment: fixed;
    background-position: 50% 0;
    background-repeat: no-repeat;
    height: 450px;
    position: relative;
}

.about {
    background-image: url(../img/sep1.jpg);
}

/* Portfolio Wrap Section */
#portfoliowrap {
    display: block;
    margin-top: 80px;
    margin-bottom: 80px;
}

#portfoliowrap h1 {
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
}

.mt {
    margin-top: 50px;
}

.mb {
    margin-bottom: 60px;
}

#portfoliowrap i {
    font-size: 50px;
}

.proc {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: solid 2px transparent;
}

#portfoliowrap .proc:hover {
    background-color: #eee;
    border-bottom: solid 2px #2f2f2f
}

.portfolio {
    background-image: url(../img/sep2.jpg);
}

/*Qualitées*/

#portfoliowrap .citation {
    font-size: 25px;
}

/* Service Wrap */
#servicewrap {
    display: block;
    margin-top: 80px;
    margin-bottom: 80px;
}

#servicewrap h1 {
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}

.service {
    text-align: left;
    padding-top: 15px;
    padding-bottom: 2px;

}

.service:hover {
    background-color: #eee;
    border-bottom: solid 2px #2f2f2f;
    padding-bottom: 0px;
}

.service small {
    font-size: 12px;
    font-weight: bold;
}

.service small i {
    font-size: 12px;
}

.service i {
    float: left;
    margin-right: 15px;
    font-size: 35px;
    vertical-align: middle;
}

.service .text {
    color: #767676;
    font-weight: 100;
}

.service p {
    font-weight: bold;
}

/* Contact Wrap */
#contactwrap {
    background-color: #2f2f2f;
    margin-top: 0px;
    padding-top: 25px;
    padding-bottom: 25px;
}

#contactwrap p {
    color: #f2f2f2;
}

#contactwrap small {
    font-size: 13px;
}

.contact {
    background-image: url(../img/sep3.jpg);
}

#contactwrap label {
    color: #f2f2f2;
    margin-top: 10px;
}

.formulaire {
    border-radius: 0px;
    border: 0px solid #ccc;
}

/* Réalisation */
.projet {
    position: relative;

}

.hoverProjet {
    background: #000;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    color: white;
    cursor: zoom-in;
}

.hoverProjet p {
    text-align: center;
    margin-top: 10%;
    margin-left: 5%;
    margin-right: 5%;

}

.hoverProjet img {
    height: 40px;
    width: auto;
}

.more {
    position: absolute;
    bottom: 5%;
    right: 50%;
    transform: translate(+50%);
}

.logoRealisation {
    position: absolute;
    bottom: 5%;
    right: 5%;

}

.logoRealisation i {
    font-size: 30px;
}

.date {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 100px;
}

.date p {
    text-align: left;
}

/*Modale*/
.modalContent {
    border-radius: 0px;
}

.modal-header .modalClose {
    margin-top: -22px;
}

.modalDescription h1 {
    margin-bottom: 40px;
}

#modalDate {
    position: relative;
    bottom: 0%;
}

#modalDate p {
    margin-bottom: 0px;
}

#modalDate p i {
    font-size: 16px;
}

#modalLink {
    position: relative;
    bottom: 0%;

}

#modalLink p {
    text-align: right;
    margin-bottom: 0px;

}

#modalLink p a {
    color: black;
}

#modalLink p:hover {
    text-decoration: underline;
}

#modalLink p i {
    font-size: 16px;

}

/* Gallery Configuration */
.photo-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #2f2f2f;
    -webkit-transition: background-color 0.4s;
    -moz-transition: background-color 0.4s;
    -o-transition: background-color 0.4s;
    transition: background-color 0.4s;
}

.project .overlay {
    position: absolute;
    text-align: center;
    color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;

}

.project:hover .photo-wrapper {
    background-color: #2f2f2f;
    background-image: url(../img/zoom.png);
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: relative;
}

.project:hover .photo {
    opacity: 10;
    filter: alpha(opacity=4000);
    opacity: 0.1;
    filter: alpha(opacity=40);
}

.project:hover .overlay {
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
}

.desc {
    margin-top: 25px;
}