/*----------------------------------------------------------

[Master Stylesheet]

Project: droitne

----------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,500&display=swap");
/**********************************/
/* Helper Classes
/**********************************/
.bg-gray {
    background-color: #f5f5f5;
}

.h-30 {
    height: 80px;
}

.h-40 {
    height: 40px;
}

.h-60 {
    height: 60px;
}

@media (max-width: 767px) {
    .h-30-sm {
        height: 30px;
    }

    .h-40-sm {
        height: 40px;
    }
}

.p-80 {
    padding: 60px 0;
}

.p-60 {
    padding: 60px 0;
}
/**********************************/
/* Content
/**********************************/
body {
    margin: 0;
    padding: 0;
    min-width: 320px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    color: #5b5b5b;
    background-color: #fff;
}

.vlt-entry-content {
    position: relative;
}

.vlt-entry-content.blured {
    -webkit-filter: blur(2px) grayscale(80%);
    filter: blur(2px) grayscale(80%);
}

.vlt-vertical-lines {
    background: transparent url("../img/vertical_lines.png") repeat-y fixed center;
}

.vlt-vertical-lines-white {
    background: transparent url("../img/vertical_lines_white.png") repeat-y fixed center;
}

::-moz-selection {
    color: #fff;
    background-color: #333;
}

::selection {
    color: #fff;
    background-color: #333;
}
/**********************************/
/* Image
/**********************************/
img {
    max-width: 100%;
    height: auto;
}
/**********************************/
/* Paragraph
/**********************************/
p {
    margin: 0 0 30px;
}

p:empty {
    display: none;
}
/**********************************/
/* Link
/**********************************/
a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

a:hover {
    color: #8f0b12;
}
/**********************************/
/* Headings
/**********************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    padding: 0;
    margin: 10px 0;
    color: #333;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5;
}

h1,
.h1 {
    font-size: 70px;
}

h2,
.h2 {
	font-size: 28px;
}

h3,
.h3 {
	font-size: 22px;
}

h4,
.h4 {
    font-size: 18px;
}

h5,
.h5 {
    font-size: 14px;
	font-weight: 500;
	text-align: center;
	padding: 40px 0px 5px;
	margin: 0px;
}
/**********************************/
/* Footer
/**********************************/
.vlt-footer {
    padding: 30px 0;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    background-color: #333;
}

.vlt-footer__copyright {
    margin-bottom: 0;
}
/**********************************/
/* Header
/**********************************/
.vlt-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 3;
}

.vlt-header__inner {
    padding: 10px 0 20px;
}

.vlt-header[data-is-sticky="1"] {
    position: fixed;
    background-color: #fff;
}

.vlt-header[data-is-sticky="1"].headroom--pinned {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.vlt-header[data-is-sticky="1"].headroom--top {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.vlt-header[data-is-sticky="1"].headroom--unpinned {
    background-color: transparent;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.vlt-header[data-is-sticky="1"].headroom {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/**********************************/
/* Header logo
/**********************************/
.vlt-header__logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.vlt-header__logo h2 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 500;
}
/**********************************/
/* Preloader
/**********************************/
.vlt-site-preloader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
}

.vlt-site-preloader .signal {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
}

.vlt-site-preloader .signal::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #333;
    border-radius: 50%;
    -webkit-animation: signal 2s linear infinite;
    animation: signal 2s linear infinite;
}

@-webkit-keyframes signal {
    from {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes signal {
    from {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
/**********************************/
/* Back to top
/**********************************/
.vlt-back-to-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    width: 40px;
    height: 40px;
    right: 25px;
    bottom: 25px;
    color: #fff;
    font-size: 14px;
    z-index: 95;
    background-color: #333;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.vlt-back-to-top:hover {
    color: #fff;
    text-decoration: none;
    background-color: #474747;
}

@media (max-width: 767px) {
    .vlt-back-to-top {
        display: none;
    }
}

.vlt-back-to-top.hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}

.vlt-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
/**********************************/
/* Call to action
/**********************************/
.vlt-call-to-action {
    padding: 80px 0;
    color: #aaa;
    background-color: #393939;
}

.vlt-call-to-action h3 {
    margin: 0 0 20px;
    color: #fff;
    text-transform: uppercase;
}

.vlt-call-to-action p {
    margin-bottom: 30px;
}
/**********************************/
/* Hero Header
/**********************************/
.vlt-hero-header {
    padding: 70px 0 30px;
    color: #222;
	background-color: #efefef;
	position: relative;
	top: 0px;
	display: block;
	height:280px;
	width:100%;
}
.vlt-hero-header .logo-hub
{
    width: 80vw;
    max-width: 400px;
    margin: 0 auto;
}

.bg-hero-header {
	text-align: center;
	background-size: cover;
	background-image: url(../img/Banner_imgRouge_1800x200.png);
	background-repeat: repeat-x;
	background-position: center center;
	position: relative;
	top: 0px;
	display: block;
	/*height: 230px;*/
	width: 100%;
}
	
.vlt-hero-header h1 {
	font-weight: 100;
    position: relative;
    display: inline-block;
    margin: 10px 0 5px;
    letter-spacing: 3px;
	color:#222;
}

.vlt-hero-header h3 {
    position: relative;
    display: inline-block;
    margin: 0px 0 20px;
    letter-spacing: 1px;
	color:#222;
}

@media (max-width: 767px) {
    .vlt-hero-header h1 {
        font-size: 44px;
		font-weight: 100;
    }
}

.vlt-hero-header h1 span {
    position: absolute;
    top: 0;
    right: -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 22px;
    width: 22px;
    color: #222;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    background-color: #333;
    border-radius: 50%;
}

.vlt-hero-header p {
    margin-bottom: 40px;
}
/**********************************/
/* Shortcode: Buttons
/**********************************/
.vlt-btn {
    position: relative;
    display: inline-block;
    padding: 17px 44px;
    outline: 0;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1;
    cursor: pointer;
    border: none;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.vlt-logo {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    width: 180px;
    height: 80px;
    outline: 0;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1;
    cursor: pointer;
    border: none;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .vlt-logo {
        width: 120px;
        height: 40px;
    }
}

.vlt-btn:disabled {
    pointer-events: none;
    cursor: not-allowed;
}

.vlt-btn i {
    margin-left: 5px;
}

.vlt-btn--primary {
    color: #fff;
    background-color: #444;
}

.vlt-btn--primary:hover {
    color: #fff;
    background-color: #111;
}

.vlt-btn--primary.vlt-btn--inverse {
    color: #333;
    background-color: #fff;
}

.vlt-btn--primary.vlt-btn--inverse:hover {
    color: #333;
    background-color: #efefef;
}

.vlt-btn--secondary {
    color: #333;
    -webkit-box-shadow: inset 0 0 0 2px #333;
    box-shadow: inset 0 0 0 2px #333;
    background-color: transparent;
}

.vlt-btn--secondary:hover {
    color: #fff;
    background-color: #333;
}

.vlt-btn--secondary.vlt-btn--inverse {
    color: #fff;
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
    background-color: transparent;
}

.vlt-btn--secondary.vlt-btn--inverse:hover {
    color: #333;
    background-color: #efefef;
    -webkit-box-shadow: inset 0 0 0 2px #efefef;
    box-shadow: inset 0 0 0 2px #efefef;
}

.vlt-btn--rounded {
    border-radius: 100px;
	margin: 30px 0px 0px;
}

.vlt-btn--lg {
    padding: 22px 58px;
}

.vlt-btn--sm {
    padding: 13px 32px;
}

.vlt-btn--xs {
    padding: 10px 26px;
}
/**********************************/
/* Shortcode: Premium Plugins
/**********************************/
.vlt-premium-plugin__icon {
    float: left;
}

.vlt-premium-plugin__icon img {
    width: 50px;
}

.vlt-premium-plugin__content {
    padding-left: 20px;
}

.vlt-premium-plugin__content h5 {
    margin: 0 0 5px;
	text-align: left;
}

.vlt-premium-plugin__content p {
    margin: 0;
    color: #000;
	font-size:16px;
	line-height: 1.5;
}

.vlt-premium-plugin__content p span {
    color: #737373;
}

.vlt-demo-item {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 5px 6px 15px 0 rgba(51,51,51,0.1);
    box-shadow: 5px 6px 15px 0 rgba(51,51,51,0.1);
    height: 85px;
    display: flex;
    align-items: center;
}
.vlt-demo-item img
{
    max-height: 100%;
    margin: 0 auto;
}


.vlt-demo-item .vlt-demo-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.vlt-demo-item .vlt-demo-item__content h4 {
    letter-spacing: 3px;
    font-size: 18px;
}

.vlt-demo-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vlt-demo-item img {
    display: block;
}

.vlt-demo-item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.vlt-demo-item:hover .vlt-demo-item__content {
    opacity: 1;
}
/**********************************/
/* Shortcode: Counter Up
/**********************************/
.vlt-counter-up {
    text-align: center;
}

.vlt-counter-up__header {
    font-size: 34px;
    line-height: 1;
}

.vlt-counter-up__icon {
    display: block;
    margin-bottom: 20px;
}

.vlt-counter-up__number {
    font-size: 38px;
    color: #333;
}

.vlt-counter-up__title {
    margin: 20px 0 0;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}
/**********************************/
/* Shortcode: Custom Title
/**********************************/
.vlt-custom-title h1,
.vlt-custom-title h2,
.vlt-custom-title h3,
.vlt-custom-title h4,
.vlt-custom-title h5,
.vlt-custom-title h6 {
    margin: 0;
}

.vlt-custom-title p {
    margin-top: 10px;
    margin-bottom: 0;
}
/**********************************/
/* Shortcode: Theme Feature
/**********************************/
.vlt-theme-feature__icon {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1;
    color: #333;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.vlt-theme-feature__content h5 {
    margin: 0 0 10px;
}

.vlt-theme-feature__content p {
    margin: 0;
    color: #999;
}

.vlt-theme-feature:hover .vlt-theme-feature__icon {
    color: #edbc36;
}
