*, ::after, ::before {
    box-sizing: border-box;
}

html {font-size: 12px;-webkit-font-smoothing: antialiased}
body {font-family: Poppins, sans-serif;font-size: 1rem;font-weight: 400;letter-spacing: .025em;line-height: 2.1428;color: #666;overflow-x: hidden;-webkit-overflow-scrolling: touch;background-color:#FAFAFA;}

::-webkit-scrollbar {width: 8px;height: 8px;}
::-webkit-scrollbar-thumb {cursor: pointer;background: #3f6534;}
::selection {background-color: #3f6534;color: #fff;}
-webkit-::selection {background-color: #3f6534;color: #fff;}
::-moz-selection {background-color: #3f6534;color: #fff;}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

h1,.h1 {
    font-weight: 700;
    font-size: 3.428rem;
    line-height: 1.2;
    font-weight: 600;
    color: #000;
    letter-spacing: -.025em;
    margin: .5em 0;
}
h2,.h2 {
    font-weight: 600;
    font-size: 2.571rem;
    line-height: 1.166;
    color: #000;
    letter-spacing: 0;
    margin: 2.6rem 0;
}
h3,.h3 {
    font-weight: 600;
    font-size: 2.142rem;
    line-height: 1.2;
    letter-spacing: -.05em;
    color: #000;
    margin: 2.6rem 0;
}
h4,.h4 {
    font-weight: 600;
    font-size: 1.714rem;
    line-height: 1.25;
    letter-spacing: .025em;
    color: #000;
    margin: 2.6rem 0;
}
h5,.h5 {
    font-weight: 600;
    font-size: 1.571rem;
    line-height: 1.1;
    letter-spacing: 0;
    color: #000;
    margin: 2.6rem 0;
}
h6,.h6 {
    font-weight: 600;
    font-size: 1.285rem;
    line-height: 1.3333;
    letter-spacing: 0;
    color: #000;
    margin: 2.6rem 0;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
    color: inherit;
}
h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
    text-decoration: none;
}
strong {
    font-weight: 600
}
p,
blockquote {
    margin-bottom: 2.6rem
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button;
}

button, select {
    text-transform: none;
}
button, input {
    overflow: visible;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; 
}
button {
    border-radius: 0;
}

.btn:hover {
    background-color:inherit;
}

.btn-primary {
    background-color:#3f6534;
    border:none;
    border-radius:0px;
}

.color-primary {
    color: #4a9235;
    text-shadow: 1.5px 1.5px #ccc;
    /*color:#3f6534;*/
}


/********** HEADER **********/
header {
    position:fixed !important;
    top:0;
    left:0;
    right:0;
    display: flex;
    height:105px;
    align-items:center;
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    z-index:99;
}

header.navbar {background-color:#fff;}
header.navbar-white {background-color:transparent;}
header.navbar-white * {
    color:#fff !important;
}

header .brand {
    margin-right:4rem;
}

header .brand img,.menu .brand img {
    height:4.0rem;
}

header .navbar-address {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom:0px;
    margin-right:4rem;
}

header .btn-offerte {
    text-transform: uppercase;
    font-size:1.4rem;
    padding: 0.5em 2.28em 0.5em !important;
}

header .btn-offerte:hover {
    background: #000;
}

header.navbar .brand-img {
    display: block;
}

header.navbar .brand-img-white {
    display: none;
}

header.navbar .navbar-toggle .icon-bar {
    background: #000;
}

header.navbar-white .brand-img {
    display: none;
}

header.navbar-white .brand-img-white {
    display: block;
}

header.navbar-white .navbar-toggle .icon-bar {
    background: #fff;
}

header .navbar-toggle {
    position: relative;
    padding: 9px 10px;
    margin: 0px;
    background-color: transparent !important;
    background-image: none !important;
    border:none;
    border-radius: 0px;
    cursor:pointer;
}

header .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #000;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

header .navbar-toggle .icon-bar+.icon-bar {
    margin-top:4px;
}
/********** END HEADER **********/


.click-capture{
    position:absolute;
    top:0;bottom:0;right:0;left:0;
}

.menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    width: 35%
}
.menu-is-opened .menu {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    box-shadow: 0 0 65px rgba(0,0,0,.07);
}

.menu .brand {
	display:flex;align-items:center;height:105px;padding-left:15%;
}

.menu .menu-list {
    padding-left: 15%;
   	overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    font-weight: 600;
    letter-spacing: -.025rem;
    list-style: none;
    margin: 0;
    -webkit-transition: transform .5s .6s ease, opacity .5s .6s ease;
    -o-transition: transform .5s .6s ease, opacity .5s .6s ease;
    transition: transform .5s .6s ease, opacity .5s .6s ease;
    max-height:calc(100% - 205px);
    height:calc(100% - 205px);
}
.menu .menu-list>li {
	font-size:2.0rem;
	line-height:1;
}
.menu .menu-list li a {
	color:#999;
	text-decoration:none;
}
.menu .menu-list li a:hover,.menu .menu-list li.active > a{
	color:#000;
	text-decoration:none;
}
.menu .menu-list>li+li {
	margin-top:2.7rem;
}

.menu .menu-footer {
    position: absolute;
    padding-left: 15%;
    bottom: 2rem;
}

.close-menu {
    position: absolute;
    z-index: 2;
    top: 2.1rem;
    font-size: 1.6rem;
    line-height: 1;
    color: #000;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    right: 2.2857rem;
    padding: 20px;
}

.main-content {
    margin-top:105px;
    margin-bottom:50px;
}
.main-content .page-header {
    padding: 12.8rem 0 10.8rem;
    text-align:center;
}
.main-content .page-header h1 {
    letter-spacing:-2px;
}

.main-content .main-projects {
    padding:30px;
}

.main-content .main-projects .grid .grid-item {
    padding: 30px 15px 0;
    width:20%;
    max-width:100%;
    position:relative;
}

.main-content .main-projects .grid .grid-item img {
    width:100%;
}

.slider {
    height: 100vh;
    width: 100vw;
}

.slider .slider-item {
    height:inherit;
    width: inherit;
    background-size: cover !important;
}
.slider .slider-item .slider-inner {
    display:flex;
    align-items:center;
    height:inherit;
    width: inherit;
    background-color: rgba(0,0,0,0.4);
}

.slick-list,.slick-track {
    height: inherit;
    width: inherit;
}

.slider h2 {
    font-size: 5.14rem;
    line-height: 1;
    letter-spacing: -.05em;
    margin: 0;
    text-transform: uppercase;
    color:#fff;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

.slick-dots {
    bottom:25px !important;
}

.slick-dots li button:before {
    font-size:50px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #3f6534;
}

input[type=text], input[type=address], input[type=url], input[type=password], input[type=email], input[type=search], input[type=tel], textarea, select {
    display: inline-block;
    width: 100%;
    font-size: 1rem;
    border-radius: .75em;
    color: #3d3d3d;
    background-color: #fff;
    border: 0;
    border: 1px solid #d1d1d1;
    border-radius: 0;
    padding: .2rem 1rem 0;
    height: 3.6em;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

input.input-gray, textarea.input-gray {
    background: #f6f6f6;
}

textarea.form-control {
    padding-top: .8rem;
    height: 15rem;
    resize: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.section-info {
    color: #999;
    line-height: 1.111;
    font-size: 1.28rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4rem;
}

.section-info .title-hr {
    margin: 0 0 2rem;
}

.title-hr {
    width: 7rem;
    max-width: 100%;
    height: .28rem;
    background: #3f6534;
}

.info-title {
    width: 1px;
}

.btn, input[type=submit] {
    color: #fff;
    letter-spacing: .025em;
    font-size: 1rem;
    display: inline-block;
    border: 0;
    border-radius: 0;
    padding: 1.1em 2.28em 1em;
    background-color: #3f6534;
    text-decoration: none;
    -webkit-transition: all .3s ease-out!important;
    transition: all .3s ease-out!important;
}

.btn-yellow {
    background: #3f6534;
    color: #000;
}

.btn-upper {
    font-weight: 600;
    text-transform: uppercase;
}

.btn-yellow:hover, .btn-yellow:focus {
    background: #000;
}

@media (max-width:992px) {
    .slider h2 {font-size: 4rem;word-break: break-word;}
    .menu {width:100%;}
    .menu .brand,.menu .menu-list,.menu .menu-footer {padding-left:3rem;}
    .menu .menu-list>li{font-size:1.4rem;}
    .menu .menu-list>li+li {margin-top:1.5rem;}
    .menu .menu-list li.active {font-size:2.57rem;}
    .menu .menu-footer {bottom: 2rem;}

    .main-content .page-header {padding: 3rem 0 2rem;}
    .main-content .main-projects {padding:30px;}
    .main-content .main-projects .grid .grid-item {width:50%;}
}

@media (max-width:768px) {
    .main-content .main-projects .grid .grid-item {width:50%;}
    .btn-offerte {
        position:fixed;
        bottom:0px;
        left:0px;
        right:0px;
        padding:10px;
    }
}

@media (max-width:576px) {
    .main-content .main-projects .grid .grid-item {width:100%;}

    #form-offerte input[type="submit"] {width: 100%;}
}
