/***********************Global**************************/

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

.container-fluid {
    margin: 0;
    padding: 0;
}

#content .title {
    color: #008080;
    font-weight: 700;
    font-size: 2.5em;
}

#content h1 {
    text-align: center;
}

#content p {
    padding: 10px 0px;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 30px;
}

.contact h1,
.clients h1,
.feds h1,
.about h1 {
    margin-top: 100px;
    font-size: 40px;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* Loader */

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url("../img/loader.gif") center no-repeat #fff;
}


/* BUTTONS
***************/

.btn {
    opacity: 1;
    color: #fff;
    display: inline-block;
    font-size: 1.1em;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 5px;
    padding: 0.45em 1.2em;
    border: none;
    box-shadow: none;
    text-shadow: none;
    background-color: #ED303C;
    background-image: -moz-linear-gradient(top, #ED303C, #8D121A);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ED303C), to(#8D121A));
    background-image: -webkit-linear-gradient(top, #ED303C, #8D121A);
    background-image: -o-linear-gradient(top, #ED303C, #8D121A);
    background-image: linear-gradient(to bottom, #ED303C, #8D121A);
    background-repeat: repeat-x;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 5px rgba(0, 0, 0, .25);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 5px rgba(0, 0, 0, .25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 5px rgba(0, 0, 0, .25);
}

.btn:hover,
.btn:active,
.btn:visited {
    border: none;
    color: #fff;
    background-color: #8D121A;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

#content {
    Padding: 50px 0;
}

.line {
    border: 1px solid #fff;
    width: 200px;
}

a:link {
    text-decoration: none;
}


/***********************Navbar**************************/

.navbar {
    background-color: transparent;
    font-weight: 300;
}

.navbar-brand {
    position: absolute;
    width: 150px;
}

.collapse .active {
    font-weight: 300;
}

.navbar-nav a {
    position: relative;
    display: inline-block;
    outline: none;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}

.navbar-nav a:hover,
.navbar-nav a:focus {
    outline: none;
}

.toggler {
    width: 80px;
}


/* Effect 1: Brackets */

.cl-effect-1 a::before,
.cl-effect-1 a::after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}

.cl-effect-1 a::before {
    margin-right: 5px;
    content: '{';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}

.cl-effect-1 a::after {
    margin-left: 5px;
    content: '}';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}

.cl-effect-1 a:hover::before,
.cl-effect-1 a:hover::after,
.cl-effect-1 a:focus::before,
.cl-effect-1 a:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}


/*On JS*/

.navbar-fixed {
    background-color: #000;
    color: #000;
    opacity: .8;
    transition: ease-in-out .8s;
}


/****************Footer*******************/

#footer {
    background-color: #000;
    padding: 50px 0 10px;
}

#footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#footer a {
    color: #fff;
    padding: 10px;
}

#footer a:hover {
    color: #008080;
    transition: .5s;
}

#footer p {
    margin: 40px 0 0;
    padding: 0;
}

#footer .copy {
    color: #008080;
}


/*******SLIDE ANIMATION*/


/*VERTICAL*/

.slideanim {
    visibility: hidden;
}

.slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}


/*HORIZONTALE right*/

.slideanim-r {
    visibility: hidden;
}

.slideright {
    animation-name: slideleft;
    -webkit-animation-name: slideleft;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}

@keyframes slideright {
    0% {
        opacity: 0;
        transform: translateX(-70%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}


/*HORIZONTALE LEFT*/

.slideanim-l {
    visibility: hidden;
}

.slideleft {
    animation-name: slideright;
    -webkit-animation-name: slideright;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}

@keyframes slideleft {
    0% {
        opacity: 0;
        transform: translateX(70%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}


/*******************************************************
                                HOME PAGE
*******************************************************/


/****************Hero*******************/

#banner {
    position: relative;
    margin-top: -150px;
    height: 1000px;
    width: 100%;
    overflow: hidden;
}

#videobcg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
    z-index: -100;
}

#hero h1 {
    margin-top: 350px;
    font-size: 40px;
    letter-spacing: .1em;
}

#hero p {
    font-size: 30px;
    font-weight: 300;
}

#hero a {
    color: inherit;
}

.choice {
    width: 300px;
    margin-top: 30px;
}

.fa-arrow-circle-down {
    margin-top: 180px;
}


/****************Content*******************/


/*Section 1*/

.icons {
    display: flex;
    justify-content: space-between;
}

.icons .fa {
    color: #008080;
    padding: 20px 10px 40px;
}


/*Section 2*/

.technologie {
    border-radius: 0;
    /* The image used */
    background-image: url("../img/board.png");
    /* Create the parallax scrolling effect*/
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.photo-container {
    margin: 10px 0 30px;
    perspective: 700px;
    /*	perspective-origin: 50% 100%;*/
}

.photo-container h4 {
    font-size: 25px;
}

.photo img {
    margin-top: 10px;
    border-radius: 5px;
    max-width: 100%;
    position: relative;
    z-index: 100;
}


/*Section 3*/

.col-md-12 .client {
    max-height: 100px;
    margin: 20px 0 20px;
    padding: 0 20px;
}


/*Section 4*/

.testimonials {
    background-color: #EAEAEA;
}

.testimonials img {
    width: 150px;
    margin: 0 auto;
}

.slide p {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 30px;
}

.slick-dots li button:before {
    font-size: 10px;
}


/*****Google MAP******/

#map {
    width: 100%;
    height: 500px;
}

.gmnoprint,
.gm-style-cc {
    display: none;
}


/*******************************************************
                                CLIENTS PAGE
*******************************************************/

.clients {
    border-radius: 0;
    /* The image used */
    background-image: url("../img/clients.png");
    /*Set a specific height */
    height: 400px;
    /* Create the parallax scrolling effect*/
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*******************************************************
                                FEDs PAGE
*******************************************************/

.feds {
    border-radius: 0;
    /* The image used */
    background-image: url("../img/fed.png");
    /*Set a specific height */
    height: 400px;
    /* Create the parallax scrolling effect*/
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.btn2 {
    width: 100%;
    margin: 10px 0;
    opacity: 1;
    color: #fff;
    display: inline-block;
    font-size: 1.1em;
    font-weight: 300;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 5px;
    padding: 0.45em 1.2em;
    border: none;
    box-shadow: none;
    text-shadow: none;
    background-color: #008080;
}

.btn2:hover,
.btn2:active,
.btn2:visited {
    border: none;
    color: #fff;
    background-color: #9E9E9E;
}

.quote {
    border-radius: 5px;
    display: block;
    margin: 40px auto;
}


/*******************************************************
                        ABOUT PAGE
*******************************************************/

.about {
    border-radius: 0;
    /* The image used */
    background-image: url("../img/about.png");
    /*Set a specific height */
    height: 400px;
    /* Create the parallax scrolling effect*/
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.profile {
    z-index: 100;
    width: 200px;
    margin: -100px auto 10px;
}

.card-img-top {
    height: 150px;
}

.card-title {
    text-align: center;
}

.card h6 {
    text-align: center;
    color: #9E9E9E;
}

.card .fa {
    float: right;
    color: #000;
}

.card .fa:hover {
    color: #686F8C;
    opacity: 1;
    transition: .5s;
}


/*******************************************************
                               RESPONSIVE
*******************************************************/

@media (max-width: 990px) {
    .navbar-brand {
        display: none;
    }
}

@media (max-width:769px) {
    /*Home Page*/
    #banner {
        height: 800px;
    }
    #hero h1 {
        padding: 0 10px;
        margin-top: 280px;
        font-size: 30px;
    }
    #hero p {
        margin-top: 0px;
    }
    .fa-arrow-circle-down {
        margin-top: 80px;
    }
    #content h1 {
        font-size: 1.8em;
    }
    .jfe-logo {
        width: 100px;
    }
}

@media (min-width:320px) and (max-width: 560px) {
    /*Home Page*/
    #hero h1 {
        font-size: 25px;
    }
    .tlt {
        font-size: 20px;
    }
}