* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	font-family: "Calibri", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #4e4a4a;
}
p {
    font-size: 17px;
}
img {
    max-width: 100%;
}
a,
a:hover {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.Mobile header.header,
.Tablet header.header {
    position: fixed;
    top: 0;
    z-index: 1111;
    width: 100%;
}
.header-top {
    background: #014e9e;
}
.bloc-header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
}
.Mobile .bloc-header-top {
    gap: 10px;
}
.tel-top {
    display: flex;
    align-items: center;
    gap: 7px;
}
.Mobile .tel-top {
    gap: 3px;
}
.tel-top a {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}
.tel-top img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.space {
    background-color: #33ccff;
    border: 1px #33ccff;
    width: 1px;
    height: 65%;
    margin: 8px 27px 7px;
}
.Mobile .space { 
    margin: 8px 10px 7px;
}

.header-bottom {
    background: #000033;
}
.Desktop .header-bottom .container {
    max-width: 1425px;
}
.Mobile .header-bottom .container,
.Tablet .header-bottom .container {
    padding-left: 0;
}
.bloc-header-bottom {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
    gap: 60px;
}
.Mobile .bloc-header-bottom { 
    gap: 40px;
}
.logo-header {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    background-color: #fff;
    justify-content: flex-start;
    align-items: center;
    width: 250px;
    display: flex;
}
.logo {
    display: flex;
    justify-content: center;
}
.logo-header a {
    width: 250px;
    padding-right: 20px;
}
.Mobile .logo-header a,
.Mobile .logo-header {
    width: 220px;
}
.logo img {
    width: 133px;
    height: 100px;
    object-fit: contain;
}
.Mobile .logo img,
.Tablet .logo img {
    width: 150px;
    height: 90px;
}
.menu-mob {
    border-left: 1px solid #615e5e;
    padding-left: 13px;
}
.navmob {
    width: 28px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.navmob-1 {
    width: 24px;
    height: 2px;
    background: #fff;
}
.navmob-2 {
    background: #fff;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
}
.Mobile .nav,
.Tablet .nav {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    top: 136px;
    background: #014e9e;
}
.Desktop .nav-list {
    display: flex;
    align-items: center;
}
.Mobile .nav-list,
.Tablet .nav-list {
    max-height: 450px;
    overflow-y: scroll;
}
.Desktop .nav-item {
    position: relative;
    line-height: 1.2;
    margin: 0 7px;
    padding: 12px 0;
}
.nav-item > a {
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 600;
    overflow: hidden;
    transition: all .3s ease;
}
.Desktop .nav-item.active > a {
    color: #33ccff;
}
.Mobile .nav-item > a,
.Tablet .nav-item > a {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #ffffff26;
}
.Mobile .nav-item.active > a,
.Tablet .nav-item.active > a,
.Mobile .nav-submenu-item.active a,
.Tablet .nav-submenu-item.active a {
    background: #000033;
}
.nav-item > a span {
    position: relative;
    display: inline-block;
    transition: transform .3s;
}
.nav-item > a span::before {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    content: attr(data-hover);
    color: #33ccff;
    transition: transform .3s;
}
.nav-item:hover > a span,
.nav-item:focus > a span {
    transform: translateY(-100%);
    transition: transform .3s;
}
.Desktop .nav-submenu {
    position: absolute;
    z-index: 999;
    display: block;
    width: max-content;
    border-radius: 20px;
    overflow: hidden;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .3s ease;
}
.Desktop .nav-item:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-submenu-item a {
    display: block;
    padding: 14px 20px;
    color: #000033;
    transition: all .3s ease;
}
.Mobile .nav-submenu-item a,
.Tablet .nav-submenu-item a {
    padding: 10px;
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid #ffffff26;
}
.Desktop .nav-submenu-item a:hover,
.Desktop .nav-submenu-item.active a {
    background: #000033;
    color: #fff;
}

/* 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 #fff;
  border-radius: 100%;
  padding: 0;
  width: 25px;
  height: 25px;
  background: none;
  font-size: 14px;
  color: #fff;
  transition: all .3s ease;
  cursor: pointer;
}
.slick-dots li:hover button,
.slick-dots .slick-active button{
  background: #fff;
  color: #003366;
}
.slick-dots li button:focus{
  outline: 0 !important;
}
.homeslider {
    position: relative;
    height: 700px;
    overflow: hidden;
}
.fullImg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 700px;
    position: relative;
}
.Mobile .homeslider,
.Mobile .fullImg {
    height: 650px;
}
.fullImg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000052;
    top: 0;
    left: 0;
}
.caption {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-56%);
    z-index: 4;
}
.Mobile .caption {
    transform: translateY(-37%);
}
.Tablet .caption {
  transform: translateY(-40%);
}
.Desktop .block-slider {
    display: grid;
    grid-template-columns: auto 380px;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.titre-s {
    font-size: 18px;
    line-height: 1.1;
    color: #fff;
    font-weight: 600;
    padding-left: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    margin-bottom: 15px;
}
.Mobile .titre-s {
    font-size: 15px;
}
.titre-s::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 4px;
    background: #fff;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.text-top {
    color: #fff;
    margin: 20px 0 40px;
    font-size: 32px;
    font-style: italic;
    line-height: 1.1;
}
.text-top_ {
    color: #fff;
    margin: 20px 0 40px;
    line-height: 1.1;
    font-size: 60px;
    font-weight: 600;
}
.Mobile .text-top {
    font-size: 26px;
}
.text-top::first-line {
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
}
.Mobile .text-top::first-line,
.Mobile .text-top_ {
    font-size: 32px;
}
.btn_ {
    display: flex;
    gap: 15px;
}
.Mobile .btn_ {
    flex-direction: column;
    width: max-content;
}
.btn-rea {
    padding: 8px 20px 8px 40px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    background-color: #7e7f836e;
    position: relative;
    transition: all .3s ease;
}
a.btn-rea:hover {
    background: #014e9e;
    color: #fff;
    transition: all .3s ease;
}
.btn-rea::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 12px;
    background-image: url(../images/img/check.webp);
    background-size: cover;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.btn-rea::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #7e7f836e;
    left: 0;
    top: 0;
    filter: blur(3px);
}
.devis_formulaire {
    background-color: #f7f7f7f2;
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    padding: 38px 25px 40px;
    max-width: 380px;
}
.Mobile .devis_formulaire,
.Tablet .devis_formulaire {
    margin: 0 20px;
    padding: 30px 15px;
    max-width: 100%;
}
.titre-df {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: .5px;
}
input#mail {
    display: none;
}
.input-form {
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    height: 35px;
    margin-bottom: 20px;
    padding: 8px 12px;
    font-family: inherit;
    line-height: 1.42857;
    width: 100%;
    max-width: 100%;
    outline: none;
}
textarea {
    min-height: 100px;
    height: 100px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
.btn-devis-t {
    background-color: #014e9e;
    border: 1px solid #33ccff;
    color: #fff;
    border-radius: 10px;
    width: 100%;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.realisations .btn-devis-t { 
    width: fit-content;
} 
.btn-devis-t:hover {
    background-color: #000033;
    border-color: #000033;
    color: #fff;
    transition: all .3s ease;
}
.section-marquee {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    margin-top: -120px;
    padding: 120px 0;
}
.marquee {
    position: absolute;
    width: 100%;
    top: 30%;
    left: 0;
    overflow: hidden;
    background: #33ccff;
    color: #000;
    padding: 24px;
    white-space: nowrap;
    font-size: 30px;
    font-weight: 600;
    transform: rotate(-2deg);
}
.Mobile .marquee {
    font-size: 18px;
}
.marquee-content {
    display: inline-flex;
    align-items: center;
    padding-left: 100%;
    animation: marquee 60s linear infinite;
}
.marquee-content img {
    width: 21px;
    height: 20px;
    object-fit: contain;
    margin: 0 10px;
}
.Mobile .marquee-content img {
    width: 17px;
    height: 16px;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/*footer*/
.section-map {
    background: #efefef;
    padding: 50px 0;
}
.bloc-sect-map {
    display: grid;
    grid-template-columns: 470px auto;
    gap: 50px;
}
.Mobile .bloc-sect-map {
    grid-template-columns: 100%;
    gap: 30px;
}
.info-contact {
    background: #fff;
    padding: 21px 20px 36px 44px;
    border-radius: 10px;
}
.Mobile .info-contact {
    padding: 20px;
}
.Mobile div#Map {
    height: 250px;
}
.titre-ic {
    color: #000;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.1;
}
.Mobile .titre-ic {
    font-size: 32px;
}
.about {
    border-bottom: 1px solid #bbb;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.coord {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 18px;
}
.coord img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}
.links {
    display: flex;
    align-items: center;
    gap: 10px;
}
.links a {
    display: flex;
    transition: all .3s ease;
}
.links a:hover {
    transform: rotate(10deg);
    transition: all .3s ease;
}
.links img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.bloc-footer {
    background: #000033;
    padding: 110px 0 48px;
}
.Mobile .bloc-footer {
    padding: 50px 0 40px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
}
.Tablet .footer-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 0;
}
.Mobile .footer-top {
    flex-direction: column;
    gap: 30px;
}
.Desktop .item-f {
    max-width: 33.33%;
}
.titre-foot {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: .5px;
}
ul.ul-f {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
ul.ul-f li a {
    color: #fff;
    display: block;
    overflow: hidden;
}
ul.ul-f li > a span {
    position: relative;
    display: inline-block;
    transition: transform .3s;
}
ul.ul-f li > a span::before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
    transform: translate3d(0, 0, 0);
    transition: transform .3s;
}
ul.ul-f li:hover > a span,
ul.ul-f li:focus > a span {
    transform: translateY(-100%);
    transition: transform .3s;
}
.bloc-f {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: #fff;
}
.btn-f {
    display: flex;
    margin-top: 20px;
}
.btn-f .btn-devis-t:hover {
    border-color: #fff;
}
.text-ag {
    margin-top: 15px;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
}
.footer-bottom {
    background: #fff;
    border-radius: 10px;
    height: 147px;
    padding-left: 4%;
    padding-right: 4%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
}
.Mobile .footer-bottom {
    height: auto;
    flex-direction: column;
    padding: 25px 15px;
    gap: 25px;
}
.Mobile .btn-footer {
    order: 1;
}
.links-f {
    display: flex;
    align-items: center;
    gap: 10px;
}
.links-f span {
    font-size: 24px;
    line-height: 1.1;
}
.Tablet .links-f span,
.Mobile .links-f span {
    display: none;
}
.copyright {
    display: flex;
    justify-content: space-around;
    font-weight: 600;
    color: #fff;
}
.Mobile .copyright {
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.logo-ag {
    display: flex;
}
.logo-ag img {
    width: 150px;
    height: 25px;
    object-fit: contain;
}
a.mention-l {
    transition: transform .2s ease;
}
a.mention-l:hover {
    transform: scale(1.05);
    transition: transform .2s ease;
}

/*section-1*/
.titre-sect-1 {
    background-image: url(../images/img/fond-sect-1.svg);
    background-position: 0 0;
    background-size: 10px 10px;
}
.bloc-titre-1 {
    padding: 75px 20px;
}
.Mobile .bloc-titre-1 {
    padding: 50px 0;
}
.bloc-titre-1 h1 {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    max-width: 70%;
    line-height: 1.2;
    margin: 0 auto 30px;
}
.Mobile .bloc-titre-1 h1 {
    font-size: 28px;
    max-width: 100%;
    text-align: left;
}
.bloc-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.Mobile .bloc-1 {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.item-bloc-1 {
    display: flex;
    align-items: center;
    gap: 8px;
}
.item-bloc-1 img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.item-bloc-1 img:first-child {
    width: 29px;
    height: 29px;
}
.item-bloc-1 span {
    color: #000;
}
.bloc-sect-1 {
    padding: 40px 0 100px;
}
.Mobile .bloc-sect-1 {
    padding: 50px 0;
}
.row-sect-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-content: center;
}
.Mobile .row-sect-1 {
    grid-template-columns: 100%;
    gap: 30px;
}
.bloc-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
h2, .h2 {
    color: #000;
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.1;
}
.Mobile h2 , .Mobile .h2{
    font-size: 26px;
}
.btn-c {
    display: flex;
    margin-top: 35px;
}
.btn-c .btn-devis-t {
    width: max-content;
    font-size: 18px;
}
.count {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Mobile .count {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.item-count {
    padding-left: 15px;
    padding-right: 20px;
    width: 100%;
}
.bord-lr {
    border-left: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
}
.item-count span {
    color: #020202;
    font-size: 36px;
    font-weight: 900;
    line-height: 40px;
    font-family: "Arial", sans-serif;
}
.item-count p {
    font-size: 18px;
    color: #595b67;
}

/*cat*/
.p-100 {
    padding: 100px 0;
}
.Mobile .p-100 {
    padding: 50px 0;
}
.section-2 {
    background-color: #000033;
    border-radius: 10px;
}
.bloc-titre-2 {
    margin-bottom: 60px;
    text-align: center;
}
.titre-s.m-auto {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.titre-2 {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: .5px;
    line-height: 1.1;
}
.Mobile .titre-2 {
    font-size: 32px;
}
.bloc-sect-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.Mobile .bloc-sect-2 {
    grid-template-columns: 100%;
}
.item-sect-2 {
    padding: 40px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 20px;
    border: 4px solid transparent;
    transition: all .9s ease;
}
.Mobile .item-sect-2,
.Tablet .item-sect-2 {
    padding: 30px 15px;
}
.item-sect-2:hover {
    border-color: #014e9e;
    transition: all .9s ease;
}
.arrow,
.icon-fl {
    position: absolute;
    inset: 24px 24px auto auto;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #014e9e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(70px);
    transition: all .3s ease;
}
.Mobile .arrow,
.Mobile .icon-fl {
    width: 40px;
    height: 40px;
    opacity: 1;
    transform: translateX(15px);
}
.arrow img,
.icon-fl img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transform: rotate(-30deg);
}
.Mobile .arrow img,
.Mobile .icon-fl img {
    width: 15px;
    height: 15px;
}
.Desktop .item-sect-2:hover .arrow {
    opacity: 1;
    transform: translateX(0);
    transition: all .3s ease;
}
.icon-sect-2 {
    width: 70px;
    height: 70px;
    border: 1px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.icon-sect-2 img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.section-2 .btn-c {
    justify-content: center;
}
.section-2 .btn-c .btn-devis-t {
    background: none;
}
.section-2 .btn-c .btn-devis-t:hover {
    background: #014e9e;
    transition: all .3s ease;
}

/*logo-part*/
.logo-divers {
    padding-top: 100px;
}
.Mobile .logo-divers {
    padding-top: 50px;
}
.bloc-logo-divers {
    display: flex;
    overflow: hidden;
}
.Desktop .bloc-logo-divers img {
    margin: 0 50px;
    width: 200px !important;
    height: 100px;
    object-fit: contain;
}
.bloc-logo-divers img {
    margin: 0 15px;
    height: 45px;
    object-fit: contain;
}

/*section-3*/
.section-3 {
    background-image: linear-gradient(180deg, #ffffff, #ececec 56.72%, #dadada 96.15%);
}
.Desktop .bloc-sect-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 160px;
    justify-content: center;
}
.Mobile .bloc-sect-3,
.Tablet .bloc-sect-3 {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}
.c-black {
    color: #000;
}
.c-black::before {
    background: #000;
}
.text-3 {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.Mobile .text-3 {
    flex-direction: column;
}
.icon-3 {
    border: 1px solid #014e9e;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 65px;
    width: 65px;
    height: 65px;
}
.icon-3 img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.bloc-img-3 {
    max-width: 487px;
}
img.img-3-1 {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.Mobile img.img-3-1 {
    width: 80%;
    height: 320px;
    float: right;
}
img.img-3-2 {
    border: 10px solid #fff;
    border-radius: 10px;
    width: 247px;
    height: 247px;
    object-fit: cover;
    margin-top: -130px;
    margin-left: -84px; 
}
.Mobile img.img-3-2 {
    border: 7px solid #fff;
    width: 200px;
    height: 200px;
    margin-left: 0;
}

/*section-cat*/
.section-cat {
    background: #000033;
}
.titre-cat {
    display: flex;
    gap: 100px;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.Mobile .titre-cat {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.titre-cat span {
    max-width: 300px;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.1;
}
.titre-cat p {
    font-size: 18px;
}
.box_cat {
    margin-top: 80px;
    display: flex;
    overflow: hidden;
}
.Mobile .box_cat {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.Desktop .box_cat .slick-track {
    display: flex;
}
.cat-item {
    margin: 0 8px;
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
    transition: flex 0.5s ease;
}
.Mobile .cat-item {
    margin: 0;
    border-radius: 20px;
}
.Desktop .cat-item:hover {
    flex: 1.5;
    transition: flex 0.5s ease;
}
.img-cat {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background: #afa0a0;
}
.Mobile .img-cat {
    height: 220px;
}
.cat-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 25px;
    width: 95%;
    min-height: 90px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 40%);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: padding 0.4s ease;
}
.Mobile .cat-text {
    min-height: 80px;
    padding: 10px;
    border-radius: 15px;
}
.cat-text a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    display: block;
}
.Mobile .cat-text a {
    font-size: 16px;
}
.cat-item:hover .icon-fl {
    opacity: 1;
    transform: translateX(0);
    transition: all .3s ease;
}

/*section-4*/
.section-4 {
    background-image: linear-gradient(#fff,#ececec 56.72%,#dadada 96.15%);
}
.bloc-sect-4 {
    display: grid;
    grid-template-columns: 45% 55%;
    justify-content: center;
}
.Mobile .bloc-sect-4 {
    grid-template-columns: 100%;
    gap: 30px;
}
.Desktop .bloc-img-4 {
    padding-right: 80px;
}
.titre-4 {
    font-weight: 600;
    font-size: 36px;
    line-height: 1.1;
    color: #000;
    margin-bottom: 30px;
}
.img-4 {
    box-shadow: 0px 0px 4px #000000bf;
    border-radius: 20px;
    display: flex;
}
.img-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0px 0px 4px #000000bf;
}
.text-4 {
    background: #fff;
    box-shadow: 0 4px 4px #00000040, 0 4px 4px #00000040;
    border-radius: 10px;
    display: flex;
    gap: 24px;
    padding: 40px;
}
.Mobile .text-4 {
    gap: 20px;
    padding: 30px 15px;
    flex-direction: column;
}
.text-4 .icon-3 {
    border-color: #000;
}

/*section-5*/
.section-5 {
    padding: 50px 0;
}
.bloc-sect-5 {
    color: #fff;
    background-image: linear-gradient(90deg, #000000b3 47%, #eb111000), url(../images/img/bg-sect-5.webp);
    background-position: 0 0, 50%;
    background-size: auto, cover;
    border-radius: 10px;
    padding: 35px 60px;
}
.Mobile .bloc-sect-5 {
    padding: 30px 15px;
}
.Desktop .bloc-sect-5 .text {
    max-width: 80%;
}
.bloc-sect-5 h2 {
    color: inherit;
}
.btn-5 {
    flex-direction: column;
    gap: 15px;
    transition: all .3s ease;
}
.btn-call {
    background-color: #fff;
    color: #014e9e;
    border: 1px solid #014e9e;
    border-radius: 10px;
    padding: 12px 30px;
    width: max-content;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    transition: all .3s ease;
}
.Mobile .btn-call {
    width: 100%;
    font-size: 17px;
    padding: 15px;
}
.btn-call:hover {
    background-color: #000033;
    border-color: #000033;
    color: #fff;
    transition: all .3s ease;
}
.btn-rp {
    padding-left: 45px !important;
    box-shadow: 0px 0px 1px 1px #0000001a;
    animation: pulse-animation 2s infinite;
    transition: all .3s ease;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
a.btn-rp::before {
    left: 20px;
    width: 18px;
    height: 18px;
    background-image: url(../images/img/fixe-bl.webp);
}
.bloc-sect-5-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-content: center;
    padding: 50px 0;
}
.Mobile .bloc-sect-5-1 {
    grid-template-columns: 100%;
    padding: 0;
}
.bloc-img-5 {
    display: flex;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}
.bloc-img-5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}
.bloc-5:hover img {
    transform: scale(1.1);
    transition: all .3s ease;
}
/*modal*/
.modal-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.modal-window:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.modal-window > div {
    width: 800px;
    max-width: 90%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #cccbcb;
}
.modal-close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    z-index: 1;
}
.modal-close img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.modal-close:hover {
  filter: invert(50%);
}
.d-flex {
    padding: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}
.d-flex::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: #fff;
    top: 0;
    right: 0;
    z-index: -1;
}
form#rappel_immediat {
    padding-right: 2em;
    width: 50%;
}
.Mobile form#rappel_immediat {
    padding-right: 0;
    width: 100%;
}
.devis-titre.text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-bottom: 30px;
}
.devis-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
img.logo-devis {
    width: 300px;
    height: 160px;
    object-fit: contain;
    margin: auto;
}
.tel-devis {
    margin: 30px 0;
}
.tel-devis a {
    color: #000;
    font-weight: 600;
    font-size: 28px;
    display: block;
}
span.titre-h3 {
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    display: block;
}
#bloc-rappel .form-input {
    background: #fff;
    color: #6c6b6f;
    border: 1px solid #69727d;
    padding: 0.7rem 1rem;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    margin-bottom: 5px;
    border-radius: 10px;
    margin-top: 10px;
    outline: none;
}
/*fin-modal*/

.section-1-p {
    padding-bottom: 100px;
}
.Mobile .section-1-p {
    padding-bottom: 50px;
}

.blog_pageIntrouvable {
    background: #33ccff;
    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: #000;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #000;
}
.blog_pageIntrouvable span,
.blog_pageIntrouvable a {
    color: #000;
}
@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: #33ccff;
    color: #000;
    text-align: center;
    padding: 10px;
    line-height: 1.4;
}
.Mobile div#Messages,
.Tablet div#Messages {
    position: absolute;
    width: 100%;
    z-index: 11111;
    padding: 5px;
}

/*contact*/
.titre-contact {
    margin-bottom: 60px;
    text-align: center;
}
.titre-contact h1 {
    color: #000;
    font-size: 42px;
}
.bloc-sc {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
.Mobile .bloc-sc {
    flex-direction: column;
    gap: 30px;
}
.Mobile .bloc-sc .devis_formulaire {
    margin: 0;
}
.img-sc {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.Mobile .img-sc {
    height: 250px;
}
.img-sc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-sc div#Map {
    height: 100%;
}
.coord-sc {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 35px;
}
.Mobile .coord-sc,
.Tablet .coord-sc {
    grid-template-columns: 100%;
}
.item-sc {
    background: #f4f4f7;
    display: flex;
    gap: 20px;
    padding: 40px 20px 40px 30px;
    border-radius: 20px;
}
.icon-sc img {
    min-width: 40px;
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-top: 5px;
}
.titre-sc {
    margin-bottom: 15px;
}
.titre-sc span {
    color: #000;
    font-size: 25px;
    font-weight: 600;
}
.Mobile .titre-sc span {
    font-size: 22px;
}
.titre-sc p {
    line-height: 1.3;
}
.Desktop .titre-sc p {
    font-size: 19px;
}
.text-sc a,
.adresse {
    color: #014e9e;
    font-weight: 600;
    font-size: 18px;
}
.tel-sc {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #014e9e;
    font-weight: 600;
    font-size: 18px;
}

.intro {
    display: block;
    margin: 30px 0;
    width: 100%;
    text-align: left;
}
/*========================= DEBUT AVIS =========================*/

section.section-avis {
    padding: 100px 0;
}


.imgAvis.bg {
    background-color: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0;
}
.Mobile .imgAvis.bg {
    padding: 10px;
}
b.titreAvis {
    display: block;
    font-size: 26px;
    color: #376371;
    text-transform: uppercase;
}
b.titreAvis::after {
    content: "";
    display: block;
    margin: 2rem auto ;
    width: 35px;
    border-bottom: 3px solid #376371;
}
.block-avis {
    margin: 0 auto;
    padding: 40px;
    border-radius: 7px;
    text-align: center;
}
#temoignages .item-tem p {
    margin-bottom: 0;
}

.temoin { 
    color: black;
    padding: 80px 0;
}
 
.Desktop .temoin .grid-row {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-gap: 20px;
}
.Tablet .temoin .grid-row,
.Mobile .temoin .grid-row {
    display: block;
}
.col-right .blockFormulaire {
    background: #eee;
    border-radius: 10px;
    padding: 40px;
}
.Desktop .col-right {
    margin-left: 1rem;
}

.temoin .item-tem { 
    padding-bottom: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 0 8px #6262628f;
    padding: 30px;
    border-radius: 10px;
}


h1.Titrecontenu {
    font-size: 36px;
    margin-bottom: 2rem;
}
.Mobile h1.Titrecontenu {
    font-size: 22px;
}
h2.Titrecontenu {
    color: #333333;
}
#avis_form {
    margin-top: 15px;
}

#avis_form label {
  display: block;
  margin-bottom: 8px
}

#avis_form .form-control {
  margin: 0 0 15px 0;
  width: 100%
}
#MonAvis span {
  font-size: 18px;
  color: v#1faed8;
  display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}

.avis a {
  width:10%;
  float:left;
  height:100%;

}
.avis > i {
    background: url(../images/img/rating-sprit.webp) no-repeat;
    display: inline-block;
    height: 23px;
    width: 120px;
    margin-right: 15px;
    margin-bottom: 20px;
}
.avis-0 {
  background-position: 0 0 !important;
}
.avis-1 {
  background-position: 0 -25px !important;
}
.avis-2 {
  background-position: 0 -50px !important;
}
.avis-3 {
  background-position: 0 -75px !important;
}
.avis-4 {
  background-position: 0 -100px !important;
}
.avis-5 {
  background-position: 0 -125px !important;
}
.avis-6 {
  background-position: 0 -150px !important;
}
.avis-7 {
  background-position: 0 -175px !important;
}
.avis-8 {
  background-position: 0 -200px !important;
}
.avis-9 {
  background-position: 0 -225px !important;
}
.avis-10 {
  background-position: 0 -250px !important;
}
#temoignages a.btn-rea {
    margin-top: 1rem;
    padding: 7px 35px;
}
.item-tem img {
    margin: 0;
    width: 50px;
    height: 50px;
}
img.google {
    width: 60px;
    height: 25px;
    object-fit: contain;
}
.avis-nom {
    display: flex;
    align-items: center;
    gap: 10px;
}

.temoignages .col-left .avis > i {
    background: url(../images/img/rating-sprit.png) no-repeat;
    height: 9px;
    width: 50px;
    margin: 0;
}
.temoignages .col-left .avis-0 {
  background-position: 0 0 !important;
}
.temoignages .col-left .avis-1 {
  background-position: 0 -11px !important;
}
.temoignages .col-left .avis-2 {
  background-position: 0 -22px !important;
}
.temoignages .col-left .avis-3 {
  background-position: 0 -32px !important;
}
.temoignages .col-left .avis-4 {
  background-position: 0 -43px !important;
}
.temoignages .col-left .avis-5 {
  background-position: 0 -53px !important;
}
.temoignages .col-left .avis-6 {
  background-position: 0 -65px !important;
}
.temoignages .col-left .avis-7 {
  background-position: 0 -75px !important;
}
.temoignages .col-left .avis-8 {
  background-position: 0 -85px !important;
}
.temoignages .col-left .avis-9 {
  background-position: 0 -95px !important;
}
.temoignages .col-left .avis-10 {
  background-position: 0 -105px !important;
}
.avis-t {
    display: flex;
    align-items: center;
    gap: 10px;
}
.slide-temoignage .avis-t {
    justify-content: center;
    margin: 10px 0 5px;
}
.Mobile .slide-temoignage .avis-t {
    flex-wrap: wrap;
    gap: 0;
}
.temoignages .col-left img.google {
    width: 36px;
    height: 15px;
    object-fit: contain;
}
.sa-titre {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin: 0 0 40px;
}

.sa-item {
    background: #eee;
    padding: 50px;
    position: relative;
    margin: 0 20px;
    height: 350px;
}
.Tablet .sa-item,
.Mobile .sa-item { 
    padding: 20px; 
    margin: 0 10px;
}
.sa-item:after{
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;   
    width: 40px;
    height: 40px; ;
    background-image: url(../images/img/right-quote.svg);
    background-size: contain;
}
.sa-content .avis {
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.sa-item p {
    font-style: italic;
    font-size: 18px;
    margin: 0 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.avis-nom img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.sa-item .avis b {
    display: flex;
    align-items: center;
    gap: 15px;
}
section.section-avis .btn-content {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}
.titreAvis {
    font-size: 36px;
    font-weight: 600;
    padding: 30px 60px;
    border-bottom: 2px solid #F2F3F6;
    margin-bottom: 30px;
    color: #000;
}
.Mobile .titreAvis {
    font-size: 28px; 
    padding: 0 0 20px; 
    margin: 0;
}
.avis-nom span {
    text-transform: capitalize;
}


._avis_btn a {
    background: #232323;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    display: block;
    width: max-content;
}
._avis_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0;
}

.intro {
    display: block;
    margin: 0 0 30px;
    width: 100%;
}

/*========================= FIN AVIS =========================*/