* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Calibri";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
}
p {
    line-height: 1.8;
}
img {
    max-width: 100%;
}
a,
a:hover {
    text-decoration: none;
}
h1 {
    font-size: 36px;
    margin: 15px 0;
    text-transform: uppercase;
}
.Mobile h1 {
    font-size: 26px;
}
h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.Mobile h2 {
    font-size: 24px;
}
h3 {
    font-size: 24px;
    margin: 10px 0 5px;
}
.Mobile h3 {
    font-size: 22px;
}
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: auto;
}

@media screen and (min-width: 1300px) {
    header.header .container {
        max-width: 1300px;
    }
}

.Tablet .container {
    padding: 0 30px;
}

.header-top {
    background: #fff;
}
.bloc-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.bloc-cont-top img {
    width: 20px;
    height: 20px;
}
.bloc-cont-top {
    display: flex;
    gap: 25px;
}
.adr-top,
.bloc-cont-top a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
    font-size: 18px;
}
.links {
    display: flex;
    gap: 7px;
}
.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8A8585;
    transform: skew(-22deg);
    width: 30px;
    height: 30px;
    transition: all .3s ease;
}
.links a:hover {
    background: #ac4627;
    transition: all .3s ease;
}
.links img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: invert(1);
    transform: skew(22deg);
}
.header-bottom {
    position: absolute;
    z-index: 111;
    width: 100%;
    background: rgba(0, 0, 0, 0.70);
    border-top: 1px solid rgba(6, 6, 6, 0.7);
}
.bg-head {
    position: absolute;
    right: 80%;
    width: 100%;
    height: 100%;
    transform: skew(-20deg);
    background: #fff;
}
.bloc-header-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Desktop .menu {
    max-width: 80%;
}
.Desktop .nav-list {
    display: flex;
}
li.nav-item {
    position: relative;
    display: block;
    text-align: center;
    padding: 15px 3px 15px 5px;
    transition: all 0.3s ease 0s;
}
.Desktop li.nav-item {
    transform: skew(-22deg);
}
.Desktop li.nav-item.active,
.Desktop li.nav-item:hover {
    background: #aa3f22;
}
li.nav-item a {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 15px;;
}
.Desktop li.nav-item a {
    transform: skew(22deg);
}
ul.nav-submenu {
    display: none;
    transition: all 0.3s ease 0s;
}
.Desktop ul.nav-submenu {
    background: #aa3f22;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
}
.Desktop li.nav-item:hover .nav-submenu {
    display: block;
    transition: all 0.3s ease 0s;
}
li.nav-submenu-item {
    display: block;
    transform: skew(0deg);
    border-bottom: 1px solid #ffffff29;
    transition: all 0.3s ease 0s;
}
li.nav-submenu-item a {
    padding: 8px 15px;
    transition: all 0.3s ease 0s;
}
.Desktop li.nav-submenu-item:hover,
li.nav-submenu-item.active {
    background: #fff;
    transition: all 0.3s ease 0s;
}
.Desktop li.nav-submenu-item:hover > a,
li.nav-submenu-item.active > a {
    color: #000;
    transition: all 0.3s ease 0s;
}
.logo-top {
    position: relative;
    transform: skew(-20deg);
}
.Desktop .logo-top {
    min-width: 15%;
}
.logo-top span {
    position: absolute;
    right: -10px;
    height: 100%;
    transform: rotate(0deg);
    width: 5px;
    background: #fff;
}
a.logo {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.Desktop a.logo {
    justify-content: center;
}
a.logo img {
    width: 140px;
    height: 150px;
    object-fit: contain;
    transform: skew(20deg);
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-dots {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.slick-dots li button {
  border: 1px solid #ffffff;
  border-radius: 100%;
  padding: 0;
  width: 25px;
  height: 25px;
  background: none;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.slick-dots li:hover button,
.slick-dots .slick-active button{
  background: #ffffff;
  color: #003366;
}
.slick-dots li button:focus{
  outline: 0 !important;
}

.homeslider {
    position: relative;
    overflow: hidden;
    height: 800px;
}
.homeslider::before {
    content: "";
    position: absolute;
    top: 160.5px;
    z-index: 1;
    background: rgba(6, 6, 6, 0.7);
    width: 68%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0%, 66% 100%, 0% 100%);
}
.img-slider {
    height: 800px;
    background-size: cover;
    background-repeat: no-repeat;
}
.shape-1 {
    position: absolute;
    top: 160px;
    right: 35.2%;
    z-index: 2;
}
.shape-2 {
    position: absolute;
    bottom: -5px;
    right: 38.4%;
    z-index: 2;
}
.shape-3 {
    position: absolute;
    bottom: -5px;
    right: 44%;
    z-index: 2;
}
.shape-1 img,
.shape-2 img,
.shape-3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: movebounce2 4s linear infinite;
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
.caption {
    position: absolute;
    z-index: 11;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    max-width: 90%;
}
.Desktop .caption {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
}
.btn_ {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}
.btn-cont {
    position: relative;
    transform: skew(-22deg);
    background: #b5543a;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.btn-cont::before {
    content: "";
    top: 0;
    position: absolute;
    right: -6px;
    bottom: 0;
    background: #b5543a;
    width: 3.5px;
    transition: all 0.3s ease 0s;
}
.btn-cont:hover::before {
    right: 0;
    transition: all 0.3s ease 0s;
}
.btn-cont a {
    display: block;
    transform: skew(22deg);
    color: #fff;
    font-weight: 600;
    font-size: 17px;
}
.sub-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
    padding-left: 160px;
}
.sub-title::before {
    content: "";
    width: 140px;
    height: 8px;
    background: #b5543a;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.title-slider {
    margin-top: 20px;
    color: #b5543a;
    font-style: italic;
    font-size: 30px;
}
.title-slider::first-line {
    color: #fff;
    text-transform: uppercase;
    font-size: 42px;
    font-weight: 600;
    font-style: normal;
}
.title-slider-p {
    margin-top: 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 42px;
    font-weight: 600;
    font-style: normal;
}

/*section-1*/
.section-1 {
    position: relative;
    z-index: 0;
    background-image: url(../images/img/image-1.png);
    background-position: center center;
    background-size: cover;
    background-color: #232323;
    color: #fff;
}
.p-100 {
    padding: 100px 0;
}
.Mobile .p-100 {
    padding: 50px 0;
}
.bg-sect-1 {
    background-image: url(../images/img/bg-sect-1.webp);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: -1;
    inset: 0;
}
.Desktop .bloc-sect-1 {
    max-width: 60%;
}
.p-1 {
    position: relative;
    padding-left: 50px;
    margin-top: 30px;
}
.p-1::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 100%;
    background: #ac4627;
    left: 0;
    top: 0;
}

/*section-p*/
.bloc-sect-p {
    text-align: center;
}
.titre-s-p {
    font-size: 26px;
    color: #000;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 50px;
}
.titre-s-p::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 10px;
    background: #ac4627;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/*section-2*/
.section-2 {
    background: #232323;
    color: #fff;
}
.bloc-sect-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
}
.bloc-img-2 {
    position: relative;
    z-index: 0;
    padding: 15px;
}
.form-2 {
    position: absolute;
    z-index: -1;
    width: 345px;
    height: 318px;
    top: 160px;
    left: 280px;
    border: 13px solid #ac4627;
}
.img-2 {
    width: 100%;
    height: 450px;
    mask-image: url(../images/img/mask-img-2.webp);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center left;
}
.img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bloc-text-2 {
    padding: 15px 50px 15px 15px;
}
.text-2 {
    margin-top: 30px;
}
.bloc-sect-3 {
    display: grid;
    grid-template-columns: 45% 55%;
    justify-content: center;
    align-items: center;
}
.bloc-img-3 {
    border-style: solid;
    border-width: 0px 0px 0px 15px;
    border-color: #ac4627;
    padding: 0 0 0 15px;
}
.bloc-img-3 img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: cover;
}
.bloc-text-3 {
    padding: 15px 15px 15px 50px;
}

/*section-cat*/
.bloc-titre-cat .sub-title {
    width: max-content;
    margin: auto;
}
.titre-cat {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin: 20px auto 0;
}
.Desktop .titre-cat {
    max-width: 49%;
}
.Tablet .titre-cat {
  max-width: 75%;
}
.titre-cat span {
    color: #ac4627;
}
.categorie {
    display: flex;
    overflow: hidden;
    margin-top: 40px;
}
.cat-item {
    width: 100%;
    height: 320px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 15px;
    border-radius: 15px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}
.Desktop .cat-item {
    min-width: 350px;
}
.Mobile .cat-item,
.Tablet .cat-item {
    min-width: 290px;
}
.icon {
    width: 50px;
    height: 50px;
    background: #ac4627;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    transition: all .3s ease;
}
.icon img {
    width: 16px;
    height: 16px;
    object-fit: cover;
    transition: all .3s ease;
}
.titre-cat-item {
    background: rgba(39, 40, 42, .7);
    border-radius: 15px;
    padding: 10px 25px;
    border-left: 5px solid #ac4627;
    min-height: 75px;
    display: flex;
    align-items: center;
    transition: all .3s ease;
}
.titre-cat-item a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s ease;
}
.cat-item:hover .titre-cat-item {
    background: rgb(255 255 255 / 70%);
    transition: all .3s ease;
}
.cat-item:hover .titre-cat-item a {
    color: #ac4627;
    transition: all .3s ease;
}
.cat-item:hover .icon {
    background: #232323;
    transition: all .3s ease;
}
.cat-item:hover .icon img {
    transform: rotate(45deg);
    transition: all .3s ease;
}

/*section-4*/
.section-4 {
    position: relative;
    z-index: 0;
    background-image: url(../images/img/bg-sect-4.webp);
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
}
.section-4::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: .8;
}
.text-4 {
    margin-top: 30px;
    color: #fff;
    position: relative;
    z-index: 0;
}
.Desktop .text-4 {
    padding-left: 45%;
}
.Desktop .text-4::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 110%;
    background: #333333A6;
    z-index: -1;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
}
.Desktop .text-4 h2 {
    position: absolute;
    width: 45%;
    left: 0;
    font-size: 40px;
}

/*section-5*/
.bloc-sect-5 {
    display: grid;
    grid-template-columns: 35% 65%;
    justify-content: center;
    align-items: center;
}
.bloc-img-5 {
    position: relative;
}
.img-5 {
    width: 360px;
    max-width: 100%;
    height: 360px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin: auto;
}
.img-5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-5-1 {
    width: 330px;
    height: 330px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: #ac4627;
    position: absolute;
    z-index: -1;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
}
.form-5-2 {
    width: 330px;
    height: 330px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: #ac4627;
    position: absolute;
    z-index: -1;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
}
.black {
    color: #000;
}

/*section-6*/
.section-6 {
    position: relative;
    z-index: 0;
}
.bg-sect-6 {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff8f3;
    display: grid;
    grid-template-columns: 35% 60% 5%;
    justify-content: center;
}
.sect-6-1 {
    background-position: bottom center;
    background-size: cover;
    position: relative;
    z-index: 0;
}
.sect-6-1::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #ac4627;
    opacity: .78;
}
.sect-6-2 {
    background-image: url(../images/img/bg-sect-6.webp);
    background-position: bottom left;
    background-size: contain;
    background-repeat: no-repeat;
}
.Desktop .bloc-sect-6 {
    display: grid;
    grid-template-columns: 45% 55%;
    justify-content: center;
}

/*section-7*/
.Desktop .section-7 {
    margin-bottom: 140px;
}
.bloc-sect-7 {
    background: #f3ebe5;
    border: 1px solid #36210f38;
    border-radius: 20px;
    padding: 80px 50px 0;
}
.bloc-text-7 {
    margin-bottom: 60px;
    position: relative;
    z-index: 0;
}
.Desktop .bloc-text-7 {
    padding-left: 35%;
}
.Desktop .bloc-text-7 h2 {
    position: absolute;
    width: 35%;
    left: 0;
    font-size: 32px;
}
.bloc-perso {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-bottom: -140px;
}
.item-p {
    background: #ac4627;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
}
.light {
    background: #ff6600;
    color: #000;
}
.icon-p {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff1a;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.light .icon-p {
    background: #0000001a;
}
.icon-p img {
    width: 27px;
    height: 27px;
}
.light .icon-p img {
    filter: invert(1);
}
.titre-p {
    font-size: 22px;
    margin-bottom: 15px;
}
.item-p p {
    line-height: 1.5;
}

/*section-devis*/
.section-devis {
    position: relative;
    z-index: 0;
    background: #232323;
}
.bg-devis {
    background-image: url(../images/img/bg-devis.webp);
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.5;
    position: absolute;
    z-index: -1;
    inset: 0;
}
.Desktop .bloc-sect-devis {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: center;
    align-items: center;
}
.form-input {
    display: block;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    font-family: inherit;
    font-size: 15px;
    border: none;
    border-bottom: 1.5px solid #69727d;
    padding: 15px 10px 8px;
    outline: none;
    margin-bottom: 10px;
    background: none;
    border-radius: 3px;
    color: #fff;
}
.form-input::placeholder {
    color: #fff;
}
input#mail {
    display: none;
}
.titre-d-r {
    color: #fff;
    font-size: 30px;
    margin: 30px 0 20px;
}
input.btn-devis {
    background: #b5543a;
    padding: 15px 30px;
    cursor: pointer;
    border: none;
    color: #fff;
    width: 100%;
    clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
}

/*footer*/
footer.footer {
    position: relative;
    z-index: 0;
    padding-top: 100px;
    background: #222;
}
.bg-footer {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url(../images/img/bg-footer.webp);
    background-size: cover;
    background-position: center center;
}
.footer-top {
    display: grid;
    grid-template-columns: 24% 26% 25% 25%;
    justify-content: center;
}
.bloc-f {
    padding-right: 20px;
}
a.logo-f {
    position: relative;
    transform: skew(-20deg);
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin: auto;
}
a.logo-f img {
    display: block;
    transform: skew(20deg);
    width: 140px;
    height: 150px;
    object-fit: contain;
}
.bloc-f p {
    color: #fff;
    line-height: 1.5;
    margin: 30px 0 10px;
}
.footer-item {
    padding: 0 20px;
}
.cord-f {
    padding-left: 20px;
}
.titre-f {
    color: #fff;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 600;
}
.titre-f span {
    display: block;
    position: relative;
    width: 30px;
    height: 7px;
    margin: 15px auto 30px 25px;
    transform: skew(-22deg);
    border-top-width: 3px;
    border-top-style: solid;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-color: #ac4627;
}
.titre-f span::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 1px;
    left: -25px;
    top: 50%;
    background: #ac4627;
    margin-top: -0.5px;
}
.titre-f span::after {
    content: '';
    position: absolute;
    width: 82px;
    height: 1px;
    right: -92px;
    top: 50%;
    background: #ac4627;
    margin-top: -0.5px;
}
.footer-item li {
    display: block;
}
.footer-item a {
    color: #fff;
    margin-bottom: 10px;
    display: block;
    width: max-content;
    max-width: 100%;
    padding-bottom: 5px;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
}
.footer-item a:hover {
    color: #ac4627;
    background-size: 100% 1px;
    transition: all 500ms ease;
}
.cord > div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    margin-bottom: 15px;
}
.cord img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}
.cord a {
    color: #fff;
}
.footer-bottom {
    margin-top: 60px;
    color: #fff;
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 9px 0;
    background-color: #ac4627;
    clip-path: polygon(3% 0%, 97% 0%, 100% 100%, 0% 100%);
}
p.copyright-text a {
    color: #fff;
}
a.agence_ {
    position: relative;
    top: 5px;
}

/*page-presta*/
.bloc-img-pr {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    padding: 10px 10px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.exp {
    background: #ac4627;
    border-radius: 15px;
    padding: 20px 40px;
    color: #fff;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}
.exp span {
    font-size: 42px;
    font-family: "Arial";
}
.bloc-p {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.item-p_ {
    background: #f2f6f9;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.icon-p_ {
    width: 80px;
    height: 80px;
    background: #ac4627;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-p_ img {
    width: 40px;
    height: 40px;
}
.tp span {
    color: #000;
    font-size: 36px;
    font-weight: 600;
}
.tp p {
    text-transform: uppercase;
    font-size: 18px;
}
ul.engagement li {
    display: block;
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
}
ul.engagement li::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/img/check.webp);
    background-size: cover;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.bloc-engagement {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.img-eng {
    border-radius: 15px;
    overflow: hidden;
}
.img-eng img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bloc-sect-3-2 {
    display: grid;
    grid-template-columns: 55% 45%;
    justify-content: center;
    align-items: center;
}
.section-1-p .text-4::before {
    display: none;
}
.bloc-sect-5-2 {
    display: grid;
    grid-template-columns: 65% 35%;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}
.m-t {
    height: 161px;
}
.c-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 30px 60px;
}
.c-cont .item-p_ {
    border-radius: 0;
    transform: skew(-20deg);
}
.c-cont .icon-p_ img {
    filter: invert(1);
    transform: skew(20deg);
}
.c-cont .icon-p_ {
    border-radius: 0;
}
.c-tp {
    transform: skew(20deg);
}
.c-tp p {
    line-height: 1.5;
}
.c-tp span {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.c-tp a {
    color: inherit;
}
.c-tp em {
    margin: 0 5px;
}

/*resp*/
.Mobile .bloc-header-top,
.Tablet .bloc-header-top {
    justify-content: center;
}
.Mobile header.header,
.Tablet header.header {
    position: fixed;
    z-index: 111;
    width: 100%;
    top: 0;
}
.nav-mobile {
    height: 45px;
    width: 45px;
    background: #1a1a23;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}
span.icon-bar {
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 1px;
    background: #fff;
}
.Mobile a.logo img {
    width: 110px;
    height: 120px;
}
.Mobile .logo-top {
    width: 140px;
}
.Tablet .logo-top {
    width: 170px;
}
.Mobile .homeslider::before,
.Tablet .homeslider::before {
    top: 0;
    background: rgba(6, 6, 6, 0.7);
    width: 100%;
    clip-path: none;
}
.Mobile .btn_ {
    flex-direction: column;
    gap: 8px;
}
.Mobile .shape-1,
.Tablet .shape-1 {
    top: 170px;
    right: 0;
}
.Mobile .shape-1 img,
.Tablet .shape-1 img {
    filter: brightness(0.5);
}
.Mobile .title-slider::first-line,
.Mobile .title-slider-p {
    font-size: 24px;
}
.Mobile .title-slider {
    font-size: 22px;
}
.Mobile .btn-cont {
    width: max-content;
}
.Mobile .caption .btn-cont {
    width: 250px;
    text-align: center;
}
.Mobile .caption .btn-cont.btn-c {
    align-self: flex-end;
}
.Mobile .homeslider,
.Tablet .homeslider {
    height: 650px;
}
.Mobile .sub-title {
    font-size: 16px;
    padding-left: 70px;
}
.Mobile .sub-title::before {
    width: 60px;
    height: 5px;
}
.Mobile .header-bottom,
.Tablet .header-bottom {
    background: #232323;
}
.Tablet .caption {
  top: 50%;
}
.Mobile .titre-cat {
    font-size: 25px;
}

.Mobile .section-1 {
    padding-bottom: 100px;
    background-image: none;
}
.Mobile .bg-sect-1 {
    inset: auto;
    bottom: 0;
    width: 100%;
    height: 300px;
    filter: brightness(0.4);
}
.Tablet .bg-sect-1{
  filter: brightness(0.4);
}
.Mobile .bloc-sect-2,
.Tablet .bloc-sect-2,
.Mobile .bloc-sect-3-2,
.Tablet .bloc-sect-3-2,
.Mobile .bloc-sect-5-2,
.Tablet .bloc-sect-5-2 {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}
.Mobile .bloc-text-2,
.Mobile .bloc-text-3 {
    padding: 0;
}
.Mobile .img-2 {
    height: 250px;
}
.Mobile .form-2 {
    width: 50%;
    height: 125px;
    top: auto;
    bottom: 10px;
    left: auto;
    right: 0;
    border-width: 8px;
}
.Mobile .bloc-sect-3,
.Tablet .bloc-sect-3,
.Mobile .bloc-sect-5,
.Tablet .bloc-sect-5,
.Mobile .footer-top {
    grid-template-columns: 100%;
    gap: 40px;
}
.Mobile .bloc-img-3 img,
.Tablet .bloc-img-3 img {
    max-height: 350px;
}
.Mobile .img-5 {
    height: 320px;
}
.Mobile .bloc-text-3 {
    margin-top: 40px;
}
.Mobile .section-6 {
    padding-bottom: 40px;
}
.Mobile .bg-sect-6,
.Tablet .bg-sect-6 {
    grid-template-columns: 100%;
}
.Mobile .sect-6-1::before,
.Tablet .sect-6-1::before {
    background: #fff;
    opacity: .7;
}
.Mobile .sect-6-2,
.Tablet .sect-6-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.Mobile .bloc-sect-7 {
    padding: 40px 15px;
}
.Mobile .bloc-perso {
    grid-template-columns: 100%;
    margin: 0;
}
.Mobile .item-p {
    padding: 30px 15px;
}
.Tablet .footer-top {
  grid-template-columns: 50% 50%;
  gap: 40px 0;
}
.Tablet .bloc-f,
.Tablet .cord-f {
  grid-row-start: 1;
}
.Mobile .footer-item,
.Mobile .cord-f,
.Mobile .bloc-f {
  padding: 0;
}
.Mobile p.copyright-text a {
    display: block;
    margin: 5px 0;
}
.Mobile .bloc-img-pr,
.Tablet .bloc-img-pr {
    height: 350px;
}
.Mobile .exp {
    align-self: center;
}
.Mobile .bloc-p {
    grid-template-columns: 100%;
}
.Mobile .bloc-engagement {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
}

.Mobile .menu,
.Tablet .menu {
    display: none;
    position: fixed;
    width: 100%;
    top: 173px;
    left: 0;
    background: #222;
}
.Tablet .menu {
    top: 203px;
}
.Mobile li.nav-item:first-child > a {
    padding-right: 40px;
}
span.nav-click {
    height: 35px;
    width: 35px;
    background: #1a1a23;
    border: 1px solid #fff;
    position: absolute;
    right: 8px;
    top: 6px;
}
span.nav-click i {
    width: 35px;
    height: 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
i.nav-arrow.nav-rotate {
    transform: rotate(180deg);
    transition: all .3s ease;
}
span.nav-click i::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/img/drop.webp);
    background-size: cover;
}
.Mobile li.nav-item,
.Tablet li.nav-item {
    padding: 0;
}
.Mobile li.nav-item a,
.Tablet li.nav-item a {
    padding: 15px 10px;
}
.Mobile li.nav-item.active > a,
.Tablet li.nav-item.active > a {
    background: #aa3f22;
}

b.titre-album {
    display: block;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}
.row-rea {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.Tablet .row-rea {
    grid-template-columns: repeat(3, 1fr);
}
.Mobile .row-rea {
    grid-template-columns: 100%;
}
a.swipebox {
    position: relative;
    display: block;
    height: 260px;
}
a.swipebox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a.swipebox div {
    position: absolute;
    bottom: 0;
    background: #000000ba;
    color: #fff;
    text-align: center;
    width: 100%;
    left: 0;
    padding: 10px 5px;
}
.Mobile.mentions ol {
    padding-left: 15px;
}
.mentions p {
    margin-bottom: 15px;
}

.blog_pageIntrouvable {
    background: #ac4627;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 200000 !important;
    text-align: center;
    top: 0;
}
.blog_pageIntrouvable .d-flex {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.blog_pageIntrouvable > div {
    height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #fff;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
}
.blog_pageIntrouvable span,
.blog_pageIntrouvable a {
    color: #fff;
}
@media (max-width: 767px) {
  .blog_pageIntrouvable h1 {
    font-size: 100px;
  }
  .blog_pageIntrouvable p {
    font-size: 17px;
    letter-spacing: 5px;
    margin-top: -10px;
  }
  .blog_pageIntrouvable {
    font-size: 14px;
  }
  .blog_pageIntrouvable a {
    display: block;
  }
}
div#Messages {
    background: #ac4627;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
}
.Mobile div#Messages,
.Tablet div#Messages {
    position: absolute;
    width: 100%;
    z-index: 11111111;
    font-size: 16px;
    padding: 5px;
}

.Mobile .c-cont {
    padding: 30px 20px;
}
.Mobile .c-cont .icon-p_ img {
    width: 20px;
    height: 20px;
}
.Mobile .c-cont .icon-p_ {
    display: none;
}
.generali img {
    width: 130px;
    height: 105px;
    object-fit: contain;
}
.Tablet .bloc-perso {
  margin-bottom: -70px;
}