
/* Table of Content
==================================================
	- Google fonts & font family -
	- typography -
	- General -
    - Preloader -
	- Header -
    - home section -
    - About section -
    - Services section -
    - Contact section -
    - Responsive media queries -
*/


/* Google fonts & font family
==================================================*/

@import 'https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Inconsolata|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i|Overpass+Mono:300|Playfair+Display:400,400i,700,700i,900,900i';

/*
font-family: 'Lato', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: Palanquin+Dark, sans-serif;
*/


/* typography
==================================================*/
p {
    font-family: 'Open Sans', sans-serif!important;
    font-weight: 300!important;
}

h1 {
    font-family: 'Palanquin', sans-serif;
    font-size: 65px;
    line-height: 70px;
    color: #000;
    font-weight: 700;

}
h6 {
    font-family: 'lato', sans-serif;
    font-size: 20px;
    line-height: 53px;
    color: #1d42e4;
    font-weight: 300;

    letter-spacing: 1px;

}

h3 {
    font-family: 'Palanquin', sans-serif!important;
    font-weight: 700!important;
}

h4 {
    font-family: 'Lato', sans-serif;
    text-transform: capitalize;
    letter-spacing: 2px;
    position: relative;
    color: #1d42e4;
    margin-left: 40px;
    font-weight: 700;
}

h4:before {
    position: absolute;
    width: 30px;
    left: -40px;
    content: "";
    display: block;
    height: 2px;
    background: #071dcd;
    top: 9px;
}

#croix{
display: block;
padding-top: 3%;
padding-left: 3%;
font-size: 20px;
color: #071dcd;

}
/* Bouton ===FR/EN===*/
.button{
  display: inline;
  position: absolute;
  font-family: 'Palanquin', sans-serif;
  letter-spacing : 3px;
  text-transform: uppercase;
  color: #fff!important;
  font-size: 10px;
  font-weight: 360;
  background-color: black;
  border: 1px solid #000 !important;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 7px;
  padding-right: 7px;
  margin: 0 auto;
}

.button:hover{
  color: #000!important;
  font-size: 10px;
  background-color: #fff;
  border: 1px solid #000 !important;
  text-decoration: none;
}

/* Bouton ===En Savoir plus===*/
.button_2{
  display: inline;
  position: absolute;
  font-family: 'Palanquin', sans-serif;
  letter-spacing : 1px;
  color: #fff!important;
  font-size: 14px;
  font-weight: 360;
  background-color: #071dcd;
  border: 1px solid #071dcd !important;
  margin: 0 auto;
  padding: 12px;
  font-weight: 700;
}

.button_2:hover{
  color: #071dcd !important;
  background-color: #f3f3f3;
  border: 2px solid #071dcd  !important;
  text-decoration: none;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 24px;
}

.size-50 {
    font-size: 50px;
    line-height: 50px
}

.h-50 {
    height: 50px;
}


/* preloader
==================================================*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 10000
}

#status,
.preloader {
    top: 50%;
    left: 50%;
    position: absolute
}

#status {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    margin: -50px 0 0 -50px
}

.preloader {
    height: 40px;
    width: 40px;
    margin-top: -20px;
    margin-left: -20px
}

.preloader:before {
    content: "";
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    height: 100%;
    width: 100%;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    border: 2px solid #071dcd;
    border-top: 2px solid transparent;
    border-radius: 100%
}

.preloader>.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 25px;
    width: 10.6px;
    margin-top: -12.5px;
    margin-left: -5.3px;
    -webkit-animation: wink 1s ease-in-out infinite alternate;
    animation: wink 1s ease-in-out infinite alternate
}

@media only screen and (min-width:768px) {
    .preloader {
        height: 60px;
        width: 60px;
        margin-top: -30px;
        margin-left: -30px
    }
    .preloader:before {
        left: -2px;
        top: -2px;
        border-width: 2px
    }
    .preloader>.icon {
        height: 37.5px;
        width: 15.9px;
        margin-top: -18.75px;
        margin-left: -7.95px
    }
}

@media only screen and (min-width:1200px) {
    .preloader {
        height: 60px;
        width: 60px;
        margin-top: -30px;
        margin-left: -30px

    }
    .preloader>.icon {
        height: 50px;
        width: 21.2px;
        margin-top: -25px;
        margin-left: -10.6px
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@-webkit-keyframes wink {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes wink {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}


/* Header
==================================================*/

header {
    text-align: center;
    -webkit-transition: all .5s;
    transition: all .5s;
    height: 65px;
}

nav ul {
    font-family: 'Palanquin', sans-serif;
    display: inline-block;
    padding-left: 0;
    list-style: none;

   
    margin-bottom: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
}


nav li {
    display: inline-block;
    margin: 10px;
}

nav li a {
 padding-left: 1px!important;
 padding-right: 1px!important;
    
    color: #000!important;
    font-size: 17px;
    font-weight: bold;
}
.navbar-default{
    background: #fff;
    border-bottom: 1px solid #f3f3f3
}
.bg-nav {
    background: #fff;
    border-bottom: 1px solid #f3f3f3
}

.bg-nav ul {
    padding: 10px;
}

a:focus {
    color: #071dcd!important;
    text-decoration: none;
}

a:hover {
    color: #1d42e4!important;
    text-decoration: none;
}

a.active {
    color: #1d42e4!important;
}

.navbar-default .navbar-toggle .icon-bar
{
    background-color: #000;
    border-radius:none!important;
}
.navbar-toggle
{
    
    border:none!important;
}

.icon-bar:hover, .icon-bar:focus
{
    background-color: #fff;
    border-radius:none!important;
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover  
{
    color: #fff;
    border: none!important;
    border-radius: 0px!important;

    background-color: #1d42e4!important;
}



/* home section
==================================================*/

.box-intro {
    background-image: url(../img/banner.jpg);
    background-color:;
    background-size: cover;
    text-align: center;
    display: table;
    height: 100vh;
    margin: 0 auto;
    width: 100%;

    
}

.box-intro .table-cell {
    display: table-cell;
    vertical-align: middle;
}

.box-intro em {
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 6px;
}

b i:last-child {
    color: #fbd5bc !important;
}

.box-intro h5 {
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    line-height: 1.7
}

.table-cell {
    display: table-cell; 
    vertical-align: middle;
    
}
.trait {
    position: absolute;
    display: block;
    float: left;
    height: 80vh;
    border: solid 10px red;

}

.disply-table {
    display: table;
    height: 100vh;
}

/* mouse effect */

.mouse {
    position: absolute;
    width: 20px;
    height: 35px;
    bottom: 40px;
    left: 50%;
    margin-left: -12px;
    border-radius: 15px;
    border: 2px solid #000;
    -webkit-animation: intro 1s;
    animation: intro 1s;
    margin-bottom: 10px;
}

.scroll {
    display: block;
    width: 3px;
    height: 3px;
    margin: 6px auto;
    border-radius: 5px;
    background: #000;
    -webkit-animation: finger 2s infinite;
    animation: finger 2s infinite;
}

@-webkit-keyframes intro {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes intro {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes finger {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes finger {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

/* about section
==================================================*/

#about {
    padding: 100px 0;
}

.about-img-div img {
    margin: 0 auto;
}

.about-border {
    position: absolute;
    border: 10px solid #071dcd;
    width: 400px;
    height: 400px;
    top: 40px;
    left: 50px;
    z-index: 1;
}
.home-border {
    position: absolute;
    /*border: 10px solid #1234a1;*/
    width: 200px;
    height: 500px;
    color: #071dcd;
    font-size: 700px;
    font-family:font-family: 'Lato', sans-serif;
    top: 300px;
    right: 120px;
    z-index:2


}

/* ambition section
==================================================*/
.h-20{

   height: 20px;
}  
#ambition {

   margin: 3%;
   background-color: #f5f5f5;
   padding-top: 50px;
   padding-bottom: 60px;
}

.ambition-img-div img {
    margin: 10 auto;
}

/*.ambition-border {
    position: absolute;
    border: 10px solid #1234a1;
    width: 400px;
    height: 400px;
    top: 40px;
    left: 50px;
    z-index: 1;*/
}
.ambition-border {
    position: absolute;
    /*border: 10px solid #1234a1;*/
    width: 200px;
    height: 500px;
    color: #071dcd;
    font-size: 700px;
    font-family:font-family: 'Lato', sans-serif;
    top: 300px;
    right: 120px;
    z-index:2;

}
/* services section
==================================================*/
#services{

    padding-bottom: 100px;
    
}
/* projects section
==================================================*/

#projects {
    padding: 100px 0;
}

.portfolio .categories-grid span {
    font-size: 30px;
    margin-bottom: 30px;
    display: inline-block;
}

.portfolio .categories-grid .categories ul li {
    list-style: none;
    margin: 20px 0;
}

.portfolio .categories-grid .categories ul li a {
    display: inline-block;
    color: #60606e;
    padding: 0 10px;
    margin: 0 14px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.portfolio .categories-grid .categories ul li a:hover,
.portfolio .categories-grid .categories ul li a:focus {
    text-decoration: none;
}

.portfolio .categories-grid .categories ul li a.active {
    background-color: #1234a1;
    padding: 0px 20px;
    color: white;
    text-decoration: none;
}

.portfolio_filter {
    padding-left: 0;
}

.portfolio_item {
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
}

.portfolio_item .portfolio_item_hover {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: #1234a1;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: #333;
}

.portfolio_item .portfolio_item_hover .item_info {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 10px;
    width: 100%;
    font-weight: bold;
}

.portfolio_item .portfolio_item_hover .item_info span {
    display: block;
    color: #fff;
    font-size: 18px;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
    opacity: 0;
}

.portfolio_item .portfolio_item_hover .item_info em {
    font-style: normal;
    display: inline-block;
    background-color: #1234a1;
    padding: 5px 20px;
    color: #fff;
    margin-top: 10px;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
    opacity: 0;
    font-size: 10px;
    letter-spacing: 2px;
}

.portfolio_item:hover .portfolio_item_hover {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio_item:hover .item_info em,
.portfolio_item:hover .item_info span {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio .categories-grid .categories ul li {
    float: left;
}

.portfolio .categories-grid .categories ul li a {
    padding: 0 10px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.portfolio_filter {
    padding-left: 0;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.portfolio_item img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.portfolio-padding {
    padding: 50px 0;
}

.portfolio-inner {
    padding-bottom: 0 !important;
    padding-top: 55px;
}

.modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
    border: none;
}

.popup-modal {
    background: #fff;
}

.close-popup-modal {
    float: right;
    margin: 20px;
    font-size: 22px;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
    position: fixed;
    z-index: 100000;
    right: 14px;
}

.animatedModal-on .close-popup-modal {
    opacity: 1;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 50px;
}


/* contact
==================================================*/

#contact {
    padding: 100px 0;
    background: #f5f5f5;
}

#contact-form input,
#contact-form textarea {
    height: 50px;
    margin-bottom: 10px;
    border-radius: 0;
}

#contact-form label {
    display: block;
    margin-bottom: .2em;
    font-size: 13px;
    line-height: 13px;
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: #000;
}

#contact-form label.error {
    margin-top: 10px;
    margin-bottom: 1em;
    font-size: 12px;
    line-height: 12px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    color: #D33E43;
    margin-left: 10px
}

#contact-form input[type="text"].error,
#contact-form input[type="password"].error,
#contact-form input[type="date"].error,
#contact-form input[type="datetime"].error,
#contact-form input[type="datetime-local"].error,
#contact-form input[type="month"].error,
#contact-form input[type="week"].error,
#contact-form input[type="email"].error,
#contact-form input[type="number"].error,
#contact-form input[type="search"].error,
#contact-form input[type="tel"].error,
#contact-form input[type="time"].error,
#contact-form input[type="url"].error,
#contact-form textarea.error {
    border-color: #D33E43
}

textarea {
    resize: none;
}

fieldset {
    border: 0px;
    margin: 0;
    padding: 0
}

.required {
    color: #e9266d
}

#success,
#error {
    display: none
}

#success p,
#error p {
    display: block;
}

#success p {
    color: #071dcd;
    font-size: 15px;
    text-align: center;
    padding: 10px;
    border: 2px solid #071dcd;
    margin-top: 10px;
}

#error p {
    color: #D33E43;
    font-size: 15px;
    text-align: center;
    padding: 10px;
    border: 2px solid #D33E43;
    margin-top: 10px;
}

#submit {
    background-color: #071dcd;
    color: #fff;
    padding: 10px 40px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    width: 100%;
}

.social {
    padding-left: 0;
    list-style: none;
    margin-top: 20px;
}

.social li {
    float: left;
}

.social li a {
    color: #333;
    font-size: 35px;
    margin-right: 15px;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.social li a:hover {
    color: #071dcd;
}

/* footer
==================================================*/

footer {
    padding: 30px 0;
    text-align: center;
    background: #000;
}

.copyright {
    color: #ccc;
    margin-bottom: 0;
}

footer img {
    margin: 0 auto;
}
/* Responsive media queries
==================================================*/

@media (max-width: 991px) {
    .about-border {
        visibility: hidden;
    }
    h1 {
        font-family: 'Palanquin', sans-serif;
        font-size: 70px;
        line-height: 40px;
    }
    .portfolio .categories-grid .categories ul li a {
        padding: 0 2px;
    }

}

@media (max-width: 768px) {
        #bs-example-navbar-collapse-1{
    
    padding-bottom:30px;
}
    
    h1 {
        font-family: 'Palanquin', sans-serif;
        font-size: 50px;
        line-height: 40px;
    }
    .timeline-event-copy {
        width: 90%;
        left: 2em;
    }
    .navbar-header
   {
        padding-bottom: 4%;
   }
}

@media (max-width: 500px) {
        #bs-example-navbar-collapse-1{
    
    padding-bottom:30px;
}
    h1 {
        font-family: 'Palanquin', sans-serif;
        font-size: 40px;
        line-height: 40px;
    }
    #home,
    .disply-table {
        height: 600px;
    }
    .about-border {
        width: 265px;
    }
    .portfolio .categories-grid .categories ul li {
        list-style: none;
        margin: 10px 0;
    }
   .navbar-header
   {
        padding-bottom: 4%;
   }
}

@media (max-width: 420px) {
    #bs-example-navbar-collapse-1{
    
    padding-bottom:30px;
}
    h1 {
        font-family: 'Palanquin', sans-serif;
        font-size: 40px;
        line-height: 40px;
    }
    nav li {
        margin: 6px;
    }
    nav li a {
        font-size: 20px;
    }
}