body {
    background-color: #F3F3F3;
}


/*============================================section slideshow============================================*/

.btn {
    display: inline-block;
    padding: 13px 20px;
    color: var(--lcv_white);
    text-decoration: none;
    position: relative;
    background: transparent;
    border: 3px solid var(--lcv_green);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.4em;
    text-align: center;
    text-indent: 2px;
    text-transform: uppercase;
    transition: color 0.1s linear 0.05s;
}

.btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 1;
    opacity: 0;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}

.btn::after {
    transition: border 0.1s linear 0.05s;
}

.btn .btn-inner {
    position: relative;
    z-index: 2;
}

.btn:hover {
    transition: color 0.1s linear 0s;
}

.btn:hover::before {
    top: 0;
    height: 100%;
    opacity: 1;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}

.btn:hover::after {
    border-color: var(--lcv_green);
    transition: border 0.1s linear 0s;
}

.slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    z-index: 1;
    margin-top: 2px;
}

.slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slideshow .slide.is-active {
    display: block;
}

.slideshow .slide.is-loaded {
    opacity: 1;
}

.slideshow .slide .caption {
    padding: 0 100px;
}

.slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 1;
    background-size: cover;
    image-rendering: optimizeQuality;
}

.slideshow .slide .image-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lcv_black);
    opacity: 0.8;
}

.slideshow .slide .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.slideshow .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: var(--lcv_white);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slideshow .slide .title {
    margin: 0 auto 15px;
    max-width: 1000px;
    font: 700 50px/1.2 "Montserrat", sans-serif;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.slideshow .slide .text {
    margin: 0 auto;
    max-width: 1000px;
    font-size: 18px;
    line-height: 1.4;
}

.slideshow .slide .btn {
    margin: 15px 0 0;
    border-color: var(--lcv_green);
}

.slideshow .slide .btn::before {
    background: var(--lcv_green);
}

.slideshow .pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
}

.slideshow .pagination .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
}

.slideshow .pagination .item+.page {
    margin-left: -2px;
}

.slideshow .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
}

.slideshow .pagination .item::after {
    width: 0;
    background: var(--lcv_white);
    z-index: 2;
    transition: width 0.2s ease;
}

.slideshow .pagination .item:hover::before,
.slideshow .pagination .item.is-active::before {
    background-color: var(--lcv_green);
}

.slideshow .arrows .arrow {
    margin: -33px 0 0;
    padding: 20px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
}

.slideshow .arrows .prev {
    left: 30px;
}

.slideshow .arrows .prev:hover .svg {
    left: -10px;
}

.slideshow .arrows .next {
    right: 30px;
}

.slideshow .arrows .next:hover .svg {
    left: 10px;
}

.slideshow .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: var(--lcv_white);
    transition: left 0.2s ease;
}

@media (max-width: 700px) {
    .slideshow .slide .title {
        font-size: 30px;
    }
    .slideshow .slide .text {
        font-size: 14px;
    }
    .btn {
        font-size: 12px;
    }
    .slideshow .arrows .prev {
        left: 10px;
    }
    .slideshow .arrows .next {
        right: 10px;
    }
}


/*============================================section__types/catalogue location============================================*/

.section__types {
    margin: auto;
    max-width: 1280px;
    width: calc(100% - 50px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    padding-top: 50px;
    padding-bottom: 100px;
}

.section__types h2 {
    font-size: 35px;
    width: 100%;
}

.section__types h2 i {
    color: var(--lcv_green);
}

.section__types .bx__type {
    width: 300px;
    height: 150px;
    background-color: var(--lcv_white);
    margin: 10px;
    color: #000000;
    text-align: center;
    text-decoration: none;
}

.section__types .bx__type {
    display: flex;
    position: relative;
}

.section__types .bx__type:before,
.section__types .bx__type:after {
    position: absolute;
    content: "";
    transition: all .25s;
}

.section__types .bx__type:before {
    border-bottom: 3px solid var(--lcv_green);
    border-left: 3px solid var(--lcv_green);
    width: 10%;
    height: 33%;
    left: 0px;
    bottom: 0px;
}

.section__types .bx__type:after {
    border-top: 3px solid var(--lcv_green);
    border-right: 3px solid var(--lcv_green);
    width: 10%;
    height: 33%;
    top: 0px;
    right: 0px;
}

.section__types .bx__type:hover:before {
    width: 102%;
    height: 98%;
}

.section__types .bx__type:hover:after {
    width: 102%;
    height: 98%;
}

.section__types .bx__type img {
    height: 80%;
    padding-top: 5%;
}

.section__types .bx__type .title__type {
    font-size: 20px;
    font-weight: 600;
    margin: auto;
}

.section__types .bx__type .delimiter__type {
    background-color: var(--lcv_green);
    height: 50%;
    width: 3px;
    margin: auto;
}

.section__types .bx__type .description__type {
    color: #000000;
    padding: 20px;
    text-align: justify;
    padding-bottom: 30px;
}

.btn__type {
    text-align: center;
    position: absolute;
    bottom: 0;
    right: calc(30% - 74px);
    z-index: 2;
}

.btn__noirvert {
    text-align: center;
    background: var(--lcv_black);
    color: var(--lcv_white);
    padding: 12px;
    margin: 12px;
    text-decoration: none;
    font-size: 18px;
}

.btn__noirvert:hover {
    background: var(--lcv_green);
}

@media (max-width: 900px) {
    .section__types h2 {
        font-size: 25px;
    }
}

@media (max-width: 700px) {
    .section__types {
        flex-direction: column;
    }
}


/*============================================section__agence============================================*/

.section__agence {
    width: 100%;
    background-color: var(--lcv_black);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
    padding-top: 50px;
    padding-bottom: 50px;
}

.section__agence .agence__wrapper {
    color: var(--lcv_white);
    max-width: 1280px;
    padding: 25px;
    width: calc(100% - 50px);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.section__agence .agence__wrapper .agence__description {
    width: calc(50% - 50px);
    padding: 100px 25px 25px 25px;
}

.section__agence .agence__wrapper .agence__description h2 {
    font-size: 35px;
}

.section__agence .agence__wrapper .agence__description h2 i {
    color: var(--lcv_green);
}

.section__agence .agence__wrapper .agence__description p {
    padding-top: 25px;
    text-align: justify;
}

div.agence__btn {
    text-align: center;
    margin-top: 20px;
    padding-top: 40px;
}

div.agence__btn p {
    font-size: 12px;
}

a.agence__btnnoirvert {
    background: var(--lcv_green);
    color: var(--lcv_white);
    padding: 12px 40px 12px 40px;
    margin: 12px;
    text-decoration: none;
    font-size: 22px;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

a.agence__btnnoirvert:hover {
    background: #2d8e8c;
}

.section__agence .second__agence__wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 0px;
}

.section__agence .second__agence__wrapper .agence_space {
    width: 50%;
}

.section__agence .agence__wrapper .agence__map {
    width: calc(50% - 100px);
    height: 400px;
    margin: 50px;
}

.section__agence .agence__wrapper .agence__map svg {
    width: 100%;
    height: 100%;
}

.section__agence .agence__wrapper .agence__map svg g a path {
    fill: var(--lcv_white);
    stroke: var(--lcv_black);
}

.section__agence .agence__wrapper .agence__map svg g a path:hover {
    fill: var(--lcv_green);
}

.section__agence .agence__wrapper .agence__map svg circle {
    fill: var(--lcv_black);
    stroke: var(--lcv_white);
}

.section__agence .agence__wrapper .agence__map svg circle:hover {
    fill: var(--lcv_green);
}

@media (max-width: 900px) {
    .section__agence .agence__wrapper .agence__description h2 {
        font-size: 25px;
    }
    .section__agence .agence__wrapper .agence__description p {
        padding-top: 18px;
    }
    a.agence__btnnoirvert {
        font-size: 18px;
    }
}

@media (max-width: 700px) {
    .section__agence .agence__wrapper .agence__description {
        width: calc(100% - 50px);
    }
    .section__agence .agence__wrapper .agence__map {
        width: calc(100% - 100px);
        margin-top: 0px;
        margin-bottom: 0px;
    }
}


/*============================================section__machines============================================*/

.section__machines {
    margin: auto;
    max-width: 1280px;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 50px);
    padding-top: 50px;
    padding-bottom: 100px;
}

.section__machines h2 {
    font-size: 35px;
    width: 100%;
}

.section__machines h2 i {
    color: var(--lcv_green);
}

.section__machines .bx__machine {
    width: 300px;
    height: 480px;
    background-color: var(--lcv_white);
    color: #000000;
    text-decoration: none;
    margin: 1%;
}

.section__machines .bx__machine {
    display: block;
    position: relative;
}

.section__machines .bx__machine:before,
.section__machines .bx__machine:after {
    position: absolute;
    content: "";
    transition: all .25s;
    z-index: 0;
}

.section__machines .bx__machine:before {
    border-bottom: 3px solid var(--lcv_green);
    border-left: 3px solid var(--lcv_green);
    width: 10%;
    height: 33%;
    left: 0px;
    bottom: 0px;
}

.section__machines .bx__machine.zero_emission:before {
    border-bottom: 3px solid var(--lcv_green_zero_emission);
    border-left: 3px solid var(--lcv_green_zero_emission);
}

.section__machines .bx__machine:after {
    border-top: 3px solid var(--lcv_green);
    border-right: 3px solid var(--lcv_green);
    width: 10%;
    height: 33%;
    top: 0px;
    right: 0px;
}

.section__machines .bx__machine.zero_emission:after {
    border-top: 3px solid var(--lcv_green_zero_emission);
    border-right: 3px solid var(--lcv_green_zero_emission);
}

.section__machines .bx__machine:hover:before {
    width: 102%;
    height: 98%;
}

.section__machines .bx__machine:hover:after {
    width: 102%;
    height: 98%;
}

.section__machines .bx__machine img {
    width: 80%;
    margin: 0 10% 0 10%;
}

.section__machines .bx__machine .title__machine {
    padding: 3%;
    font-size: 22px;
    font-weight: 600;
    color: var(--lcv_white);
    background-color: var(--lcv_black);
}

.section__machines .bx__machine .adjectif__machine {
    margin-right: 3%;
    margin-left: 3%;
    padding-top: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--lcv_green);
}

.section__machines .bx__machine .price__machine {
    margin-right: 3%;
    margin-left: 3%;
    padding-top: 10px;
    font-size: 20px;
}

.section__machines .bx__machine .price__machine span {
    font-size: 10px;
    font-weight: 400;
    color: #000000;
}

.section__machines .bx__machine .localisation__machine {
    margin-right: 3%;
    margin-left: 3%;
    color: #888686;
    font-size: 12px;
    font-weight: 400;
}

.section__machines .bx__machine .btn__type {
    text-align: center;
    margin: auto;
    position: absolute;
    bottom: 0;
    right: 75px;
    z-index: 2;
}

.section__machines .bx__machine .btn__noirvert {
    text-align: center;
    background: var(--lcv_black);
    color: var(--lcv_white);
    padding: 12px;
    margin: 12px;
    text-decoration: none;
    font-size: 18px;
}

.section__machines .bx__machine .btn__noirvert:hover {
    background: var(--lcv_green) !important;
}

@media (max-width: 900px) {
    .section__machines h2 {
        font-size: 25px;
    }
}

@media (max-width: 700px) {
    .section__machines {
        flex-direction: column;
    }
}