        @import url("https://fonts.googleapis.com/css?family=Open+Sans:200,300,400,600,700,800");
        body {
            font-family: 'Open Sans', sans-serif;
            color: #0d0d0d;
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        p {
            font-size: 1em;
            font-weight: 300;
            text-align: justify;
        }

        h2 {
            text-transform: uppercase;
            font-size: 30px;
            text-align: center;
            padding: 30px 0;
            margin: 0;
        }

        h3 {
            text-transform: uppercase;
            font-size: 24px;
            text-align: left;
            margin: 10px 0 0 0;
            position: relative;
        }

        h3:before {
            content: "";
            position: absolute;
            width: 75px;
            height: 10px;
            bottom: -5px;
            border-bottom: 3px solid #c32026;
        }

        h4 {
            color: #274393;
            font-size: 18px;
            margin: 0;
        }

        .ecart {
            line-height: 23px;
        }

        li {
            list-style: none;
            font-size: 1em;
            font-weight: 300;
        }

        .button {
            font-size: 22px;
            line-height: 22px;
            text-align: center;
            font-weight: 500;
            border-radius: 5px;
            padding: 18px 0;
            background-color: #c32026;
            color: #ffffff;
            display: block;
            text-decoration: none;
            margin: 0 auto;
        }

        .button:hover {
            background-color: #98151a;
        }

        #services .button,
        #tarifs .button {
            max-width: 280px;
        }

        section {
            max-width: 1500px;
        }

        .content {
            padding: 3%;
        }

        .both {
            clear: both;
        }

        .asterisque {
            color: #888888;
            font-weight: 100;
            font-size: 12px;
        }

        #back-to-top {
            position: fixed;
            bottom: 40px;
            right: 1%;
            z-index: 9999;
            width: 70px;
            height: 70px;
            text-align: center;
            line-height: 34px;
            background: black;
            color: white;
            cursor: pointer;
            border: 0;
            border-radius: 2px;
            text-decoration: none;
            transition: opacity 0.2s ease-out;
            opacity: 0;
        }

        #back-to-top::before {
            color: white;
            border-style: solid;
            border-width: 0.45em 0.45em 0 0;
            border-radius: 5px 0;
            content: '';
            display: inline-block;
            height: 1em;
            left: 0.05em;
            position: relative;
            top: 1.7em;
            transform: rotate(-45deg);
            vertical-align: top;
            width: 1em;
        }

        #back-to-top:hover {
            background: #403d40;
        }

        #back-to-top.show {
            opacity: 1;
        }
        /************************************** HEADER ********************************/

        header {
            width: 100%;
        }

        #infoscontainer {
            background-color: #c32026;
        }

        #infos {
            display: flex;
            align-items: center;
            margin: 0 auto;
            background-color: #c32026;
            width: 100%;
            height: 80px;
        }

        #ulinfos {
            display: inline-block;
            margin: 0 auto;
            padding: 0;
            width: 100%;
        }

        #ulinfos li {
            text-align: left;
            color: white;
            font-size: 14px;
            position: relative;
        }

        #ulinfos li:before {
            position: absolute;
            content: "";
            width: 20px;
            top: 8px;
            height: 20px;
            background-image: url("/img/icons_header.svg");
            background-size: 20px 60px;
        }

        #ulinfos #adresse {
            margin-left: 35px;
            font-size: 20px;
            line-height: 20px;
        }

        #ulinfos #adresse:before {
            left: -28px;
            background-position: 0 0;
        }

        #ulinfos #tel {
            margin-left: 35px;
            font-size: 18px;
            font-weight: 700;
        }

        #ulinfos #tel a {
            text-align: left;
            color: white;
            text-decoration: none;
        }

        #ulinfos #tel:before {
            left: -28px;
            top: 3px;
            background-position: 0 -20px;
        }

        #ulinfos #adresse {
            display: flex;
        }

        #ulinfos li span {
            font-weight: 700;
        }

        #ulinfos li div {
            display: inline-block;
        }

        #ulinfos #horaires {
            display: none;
        }

        #rdvtel {
            text-align: center;
            width: 50%;
            color: white;
            padding: 15px 20px;
            margin: 10px 10px;
            border-radius: 5px;
            float: right;
            background-color: #2e2e2e;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 1px;
            text-decoration: none;
        }

        #logo {
            background-color: #ffffff;
            margin: 0 auto;
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: row;
        }

        #logo p {
            display: none;
        }

        #logo img {
            max-width: 270px;
            margin: 0 auto;
            height: 100px;
            flex: 1 1 auto;
        }

        #logo #rdv {
            color: white;
            padding: 15px 40px;
            margin: 10px 10px;
            border-radius: 5px;
            float: right;
            background-color: #2e2e2e;
            font-size: 30px;
            font-weight: 600;
            display: none;
            text-decoration: none;
        }

        #logo #rdv:hover {
            background-color: black;
        }

        #containernav {
            background-color: #274393;
        }

        #menu {
            background-color: #274393;
            width: 100%;
            height: 70px;
            top: 0;
            margin: 0 auto;
        }

        #menu ul {
            position: absolute;
            width: 400px;
            top: 55px;
            left: 10px;
            background-color: #0f2562;
            z-index: 10;
            float: left;
            margin: 0;
            padding: 0;
            display: none;
        }

        #menu ul li a {
            text-decoration: none;
            color: #fff;
            font-size: 28px;
            font-weight: 500;
            text-transform: uppercase;
            display: block;
            padding: 15px 40px;
            background-color: #0f2562;
            cursor: pointer;
        }

        #menu ul li a:hover {
            background-color: #425fbb;
        }

        #menu ul li a:focus,
        header nav a:focus {
            background-color: #274393;
        }

        header h1 {
            color: white;
            text-transform: uppercase;
            font-size: 34px;
            font-weight: 100;
            text-align: center;
            padding-top: 12px;
            margin: 0;
        }

        #nav-icon {
            width: 60px;
            left: 10px;
            bottom: 65%;
            height: 45px;
            position: relative;
            background-color: #0f2562;
            border-radius: 5px;
            cursor: pointer;
            z-index: 20;
        }

        #nav-icon span {
            display: block;
            position: absolute;
            right: 0;
            height: 4px;
            width: 26px;
            background: #fff;
            opacity: 1;
            left: 0;
            margin: 1px auto auto;
        }

        #nav-icon span:nth-child(1) {
            top: 12px;
        }

        #nav-icon span:nth-child(2),
        #nav-icon span:nth-child(3) {
            top: 20px;
        }

        #nav-icon span:nth-child(4) {
            top: 28px;
        }

        #nav-icon.open {
            background-color: #fff;
        }

        #nav-icon.open span {
            background-color: #294292;
        }

        #nav-icon.open span:nth-child(1) {
            top: 15px;
            width: 0;
            left: 50%;
        }

        #nav-icon.open span:nth-child(2) {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        #nav-icon.open span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

        #nav-icon.open span:nth-child(4) {
            top: 15px;
            width: 0;
            left: 50%;
        }
        /**************************** INTRO *****************************************/

        #banner-mobile img,
        #banner-desktop img {
            width: 100%;
        }

        #banner-desktop {
            display: none;
        }

        #intro {
            position: relative;
        }
        /* #intro img {
	width: 100px;
	height: 100px;
} */

        #intro img.velo {
            width: 120px;
        }

        #textintro {
            opacity: 1;
            position: absolute;
            text-align: right;
            color: white;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 5px;
            padding: 30px;
            width: fit-content;
            left: 50%;
            top: 12%;
            transform: translate(-50%,-20%);
        }

        #textintro h1 {
            font-size: 60px;
            margin: 0;
            text-align: center;
            line-height: 50px;
            text-shadow: 0 1px 3px rgb(0, 0, 0);
        }

        #textintro p {
            font-size: 30px;
            margin: 0;
            font-weight: 500;
            text-align: center;
            color: white;
            padding: 10px;
            line-height: 28px;
            text-shadow: 0 1px 3px rgb(0, 0, 0);
        }

        #textintro div {
            text-align: center;
            font-size: 21px;
            text-shadow: 0 1px 3px rgb(0 0 0);
        }

        #textintro div strong {
            font-weight: 600;
        }

        #desc-ordi a.txt_rdv,
        #desc-ordi a.tel_rdv {
            color: #274393;
            text-decoration: none;
            font-weight: 600;
        }

        #rdv2 {
            text-transform: uppercase;
            max-width: 300px;
            border-radius: 5px;
        }
        /*********************************** SERVICES *********************************/

        #services {
            background-color: #ffffff;
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
            width: 88%;
            margin: 10% auto 3% auto;
            position: relative;
        }

        #services h2 {
            color: #274393;
        }

        #services p {
            font-weight: 400;
        }

        #desc-ordi {
            display: none;
        }

        @supports (-ms-ime-align:auto) {
            #services {
                margin: 60% auto 3% auto;
            }
            #intro {
                height: 725px;
            }
        }

        @-moz-document url-prefix() {
            /* #services {
		margin: 60% auto 3% auto;
	} */
            #intro {
                height: 750px;
            }
        }
        /*********************************** DESCRIPTION *********************************/

        #containerdescription {
            background-color: #2e2e2e;
        }

        #description h1 {
            color: white;
            text-transform: uppercase;
            line-height: 30px;
        }

        #description h1 span {
            color: white;
            text-transform: lowercase;
            font-weight: 100;
            font-size: 26px;
        }

        #description p {
            color: #9b9b9b;
        }

        #description p a {
            color: #9b9b9b;
        }

        #description img {
            height: auto;
            width: 100%;
        }
        /*********************************** CONTROLE TECHNIQUE *********************************/

        #containercontroletechnique {
            background-color: #f4f6f9;
        }

        #containercontroletechnique h2 {
            font-weight: bold;
            color: #c32026;
            margin: 0;
            padding: 25px 0;
        }

        #containercontroletechnique h2 span {
            color: #274393;
            font-weight: 100;
        }

        #accueil-CT {
            transform: translateY(20px);
        }

        #accueil-CT img {
            width: 100%;
        }

        #vos-controles {
            background-color: white;
            margin-bottom: 15px;
        }

        #vos-controles h3 span {
            padding-bottom: 4px;
        }

        #vos-controles a {
            color: #274393;
            text-decoration: none;
        }

        #points-controles {
            background-color: white;
            padding-bottom: 10px;
        }

        #listepointcontrole {
            width: 100%;
            margin: 0 auto;
            display: flex;
        }

        #points-controles img {
            text-align: center;
            float: left;
            max-width: 200px;
            width: 45%;
            max-height: 150px;
        }

        #points-controles ul {
            margin: 0;
            line-height: 25px;
        }

        #points-controles li {
            display: flex;
            align-items: center;
        }

        #points-controles li img {
            width: auto;
            padding-right: 10px;
        }

        .tiret {
            display: none;
        }
        /********************************Contre visite*************************************************/
        #containercontrevisite {
            background-color: white;
            margin-bottom: 30px;
        }

        #containercontrevisite h2 {
            font-weight: bold;
            color: #c32026;
            margin: 0;
        }

        #containercontrevisite h2 span {
            color: #274393;
            font-weight: 100;
        }

        #description {
            padding: 3%;
        }

        #contre-visite em {
            color: #0d0d0d;
            font-style: normal;
            font-size: 16px;
            font-weight: 300;
        }

        #description-contre-visite {
            background-color: #f4f6f9;
        }

        #description-contre-visite #photo_centre {
            width: 100%;
        }

        #description-contre-visite img {
            width: 100%;
            height: auto;
        }

        #description-contre-visite h3 span {
            padding-bottom: 4px;
        }

        #description-contre-visite h4 {
            color: #274393;
        }

        #description-contre-visite ul {
            padding: 20px 40px;
            margin: 0;
        }

        #description-contre-visite li {
            font-size: 1em;
            font-weight: 100;
            line-height: 27px;
        }

        #eviter-contre-visite {
            background-color: #f4f6f9;
            padding-bottom: 10px;
            margin-top: 10px;
        }

        #eviter-contre-visite h4:nth-child(2) {
            padding-top: 20px;
        }

        #eviter-contre-visite ul li {
            font-size: 14px;
            font-weight: 700;
            list-style: initial;
        }
        /********************************Tarifs*************************************************/

        #tarifscontainer {
            background-color: #f4f6f9;
        }

        #tarifs {
            background-color: #f4f6f9;
            margin-top: 20px;
            padding-bottom: 15px;
        }

        #tarifs h2 {
            color: #c32026;
        }

        #tarifs h2 span {
            color: #274393;
            font-weight: 100;
        }

        #tariflex {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: normal;
            width: 90%;
            margin: 0 auto;
        }

        #tarifs ul {
            box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
        }

        #tarifs ul li:first-child {
            color: white;
            padding: 15px 10px;
            border-radius: 10px 10px 0 0;
            font-size: 55px;
        }

        #tarifs .asterisque {
            text-align: center;
            display: block;
            padding-top: 5px;
        }

        .box {
            padding: 0;
            text-align: center;
        }

        .box li:nth-child(2n) {
            background-color: #fafbfc;
        }

        .box li:nth-child(2n+1) {
            background-color: white;
        }

        .box li:not(:first-child) {
            padding: 10px 0;
            font-size: 22px;
            font-weight: 100;
        }

        .box li img {
            padding-bottom: 5px;
        }

        #firstprice li:first-child {
            background-color: #6b92ff;
        }

        #secondprice li:first-child {
            background-color: #406ade;
        }

        #thirdprice li:first-child {
            background-color: #2c4daa;
        }

        .asterisque2 {
            font-size: 20px;
            color: #878787;
            font-weight: 100;
        }
        /************************************Maps************************************************/

        #iw_container {
            width: 100%;
            height: 60px;
        }

        #maps {
            width: 100%;
            height: 500px;
        }
        /********************************Contact*************************************************/

        #containercontact {
            background-color: #2e2e2e;
            position: relative;
            padding-bottom: 20px;
        }

        #contact {
            text-align: center;
        }

        #contact h2 {
            padding: 25px 0;
            margin: 0 auto;
            display: block;
            text-align: center;
            text-transform: uppercase;
            font-weight: bold;
            font-size: 30px;
            color: white;
        }

        #contact p {
            color: white;
        }

        #contact p.blue {
            color: #294292;
            font-weight: 800;
            padding: 10px;
            background-color: white;
        }

        #contact p.red {
            color: #ff000c;
            font-weight: 800;
            padding: 10px;
            background-color: white;
        }

        #contact form {
            display: inline-block;
            text-align: left;
            margin: 0 auto;
            width: 100%;
        }

        #contact form label {
            font-size: 24px;
            font-weight: 300;
            color: #b5b5b5;
        }

        #contact form input,
        textarea {
            width: 100%;
            background-color: #3e3e3e;
            border: none;
            color: white;
            font-size: 15px;
        }

        #contact form input {
            height: 70px;
            margin-bottom: 20px;
            margin-top: 5px;
            padding: 0 5px;
        }

        #contact form textarea {
            height: 250px;
            margin-bottom: 20px;
            margin-top: 5px;
            padding: 5px;
            font-family: 'Open Sans', sans-serif;
        }

        .g-recaptcha {
            margin: 0 auto;
            max-width: 304px;
        }

        #contact form #submit {
            border-radius: 5px;
            background-color: #c32026;
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
            font-size: 32px;
            font-weight: 200;
            text-align: center;
            color: #ffffff;
            cursor: pointer;
            height: 90px;
        }

        #footer-info {
            border: 1px solid #274393;
            margin: 15px auto;
            padding: 20px 40px;
        }

        #footer-info h3:before {
            display: none;
        }

        #footer-info h3 {
            color: white;
            text-transform: uppercase;
            text-align: center;
            font-size: 26px;
            font-weight: 600;
            padding: 0;
            margin: 0;
        }

        #footer-info p {
            color: #b5b5b5;
            margin: 0;
            padding: 0 0 20px;
            line-height: 28px;
            text-align: center;
        }

        #footer-info p span {
            font-weight: 700;
            color: white;
        }

        #footer-info p span a {
            color: #c32026;
            text-decoration: none;
        }

        #footer-info p:nth-child(4) span {
            font-weight: 700;
            color: #c32026;
            font-size: 30px;
        }

        .red {
            color: #c50a13;
            font-weight: bold;
        }

        .blue {
            color: #294292;
        }
        /***************** footer **************************************************************************/

        footer {
            background-color: black;
        }

        #menufooter {
            display: none;
        }

        #mentions {
            padding: 25px 0;
            color: #c4c4c4;
            font-size: 24px;
            margin: 0 auto;
            text-align: center;
        }

        #mentions .fb {
            position: relative;
        }

        #mentions .fb:before {
            position: absolute;
            width: 32px;
            height: 32px;
            left: -15px;
            content: "";
            background: url("../img/facebook.svg");
        }

        #mentions .fb:hover:before {
            background-position: 32px 32px;
        }

        #mentions p {
            font-weight: 500;
            padding-top: 15px;
            color: #c4c4c4;
            text-align: center;
        }

        #mentions .autovision {
            color: white;
            font-weight: 700;
            text-decoration: none;
            float: none;
        }

        #mentions span:nth-child(4) {
            color: #5d5c5c;
        }

        #copyright p {
            text-transform: initial;
            color: #c4c4c4;
            font-weight: 200;
            text-align: center;
        }

        #copyright p a {
            color: white;
            text-decoration: none;
        }
        /***************** RESPONSIVE ***************************/

        @media (max-width:374px) {
            #textintro {
                /* right:8%; */
                top: 4%;
                width: 100%;
            }
            #textintro a {
                margin-top: 3px;
            }
            #textintro strong {
                font-size: 18px;
            }
        }

        @media (min-width: 320px) and (max-width: 580px) {
            @supports (-ms-ime-align: auto) {
                #services {
                    margin: -14% auto 3% auto;
                }
                .container {
                    margin-top: 30px;
                }
                /* #intro {
			height: 750px;
		} */
            }
            @-moz-document url-prefix() {
                #services {
                    margin: -14% auto 3% auto;
                }
                #intro {
                    height: 750px;
                }
                .container {
                    margin-top: 30px;
                }
            }
        }

        @media (min-width: 580px) and (max-width: 700px) {
            @supports (-ms-ime-align: auto) {
                #services {
                    margin: -14% auto 3% auto;
                }
                #containerdescription {
                    margin-top: 45px;
                }
                #intro {
                    height: 850px;
                }
                #textintro {
                    top: -50%;
                    display: none;
                }
            }
            @-moz-document url-prefix() {
                #services {
                    margin: -14% auto 3% auto;
                }
                #intro {
                    height: 850px;
                }
            }
        }

        @media (min-width: 700px) and (max-width: 850px) {
            @supports (-ms-ime-align: auto) {
                #services {
                    margin: -8% auto 3% auto;
                }
                #intro {
                    height: 900px;
                }
            }
            @-moz-document url-prefix() {
                #services {
                    margin: -8% auto 3% auto;
                }
                #intro {
                    height: 900px;
                }
            }
        }

        @media (max-width: 320px) {
            #textintro {
                top: -41%;
                left: 0;
                display: none;
            }
        }

        @media (max-width: 420px) {
            h1,
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 19px;
            }
            header h1 {
                padding-top: 20px;
            }
            #nav-icon {
                bottom: 55%;
            }
            #nav-icon {
                bottom: 52%;
            }
            #menu ul {
                width: 280px;
                top: 52px;
                left: 10px;
            }
            #menu ul li a {
                width: 200px;
                font-size: 18px;
            }
            #description h1 span {
                font-size: 18px;
            }
            #contact form #submit {
                font-size: 20px;
                height: 60px;
            }
            nav h1 {
                font-size: 22px;
                text-align: right;
                padding-right: 10px;
            }
            #textintro h1 {
                font-size: 25px;
            }
            #textintro p {
                font-size: 19px;
                margin-top: -10px;
                line-height: 23px;
            }
            #textintro #rdv2 {
                padding: 10px 30px;
                margin: 0 auto;
                font-size: 15px;
                max-width: 200px;
            }
        }

        @media (max-width: 460px) {
            header #rdvtel {
                font-size: 12px;
            }
            #services {
                margin-top: -40px;
            }
            #listepointcontrole {
                margin: 0 auto;
                display: block;
            }
            #points-controles img {
                float: none;
                width: 80%;
                display: block;
            }
            #points-controles ul {
                display: block;
                margin: 0 auto;
                padding: 0;
            }
            #ulinfos #adresse {
                font-size: 11px;
                line-height: 13px;
            }
            #ulinfos #tel {
                margin-left: 35px;
                font-size: 11px;
                font-weight: 700;
            }
            .button {
                font-size: 15px;
            }
            #tarifs ul li:first-child {
                font-size: 50px;
            }
        }

        @media (min-width: 375px) and (max-width: 425px) {
            #textintro {
                top: 6%;
                /* right:15%; */
                width: 100%;
            }
            #textintro a {
                font-size: 10px;
            }
        }

        @media (min-width: 426px) and (max-width: 500px) {
            #textintro {
                top: 7%;
                width: 100%;
            }
            #textintro h1 {
                font-size: 12px;
            }
            #textintro p {
                font-size: 5px;
                /* display: none; */
            }
            #textintro a {
                font-size: 12px;
            }
        }

        @media (min-width: 501px) and (max-width: 700px) {
            #textintro {
                /* right:18%; */
                width: 100%;
                top: 15%;
            }
            #textintro h1 {
                font-size: 12px;
            }
            #textintro p {
                font-size: 8px;
            }
        }

        @media (min-width: 701px) and (max-width: 768px) {
            #textintro {
                /* right:25%; */
                width: 100%;
                height: 50%;
                top: 13%;
            }
        }

        @media (min-width: 420px) and (max-width: 700px) {
            header h1 {
                font-size: 30px;
                text-align: right;
                padding-right: 20px;
            }
            textintro {
                top: 31%;
                right: 8%;
                display: none;
            }
            #textintro h1 {
                font-size: 35px;
            }
            #textintro p {
                font-size: 20px;
            }
            #textintro #rdv2 {
                margin: 5px auto;
                font-size: 15px;
            }
            #ulinfos #adresse {
                font-size: 14px;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            #textintro {
                top: 8%;
            }
            #textintro a {
                margin-top: 10px;
            }
            #services {
                margin: -8% auto 3% auto;
                margin-top: -80px;
            }
            #points-controles ul {
                padding-left: 0;
            }
        }

        @media (max-width: 1023px) {
            #containercontroletechnique h2 {
                background-color: white;
            }
            #containercontrevisite h2 {
                background-color: #f4f6f9;
            }
            #copyright {
                margin-bottom: -16px;
            }
        }
        /***************** WEB *******************/

        @media (min-width: 1024px) {
            h2,
            h2 span {
                font-size: 30px;
            }
            h3 {
                font-size: 15px;
            }
            .button {
                font-size: 18px;
            }
            p {
                font-size: 14px;
                font-weight: 300;
            }
            section {
                margin: 0 auto;
            }
            #ulinfos {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin: 0 auto;
                padding: 0;
                width: 100%;
                height: 40px;
            }
            #ulinfos #horaires {
                display: flex;
                justify-content: flex-end;
            }
            #ulinfos li:before {
                position: absolute;
                content: "";
                width: 30px;
                height: 30px;
                background: url("/img/icons_header.svg") 30px 90px;
                top: 0px;
            }
            #ulinfos #adresse {
                margin-bottom: 0;
                font-size: 14px;
                line-height: 16px;
            }
            #ulinfos #adresse:before {
                left: -38px;
                background-position: 0 0;
            }
            #ulinfos #tel {
                margin: 0;
                font-size: 16px;
                font-weight: 700;
            }
            #ulinfos #tel:before {
                left: -40px;
                top: -5px;
                background-position: 0 -30px;
            }
            #ulinfos #horaires:before {
                top: 3px;
                right: 220px;
                background-position: 0 -60px;
            }
            #infos {
                display: flex;
                flex-direction: column;
                max-width: 1200px;
                margin: 0 auto;
                height: auto;
            }
            #logo {
                max-width: 1200px;
            }
            #logo p {
                display: block;
                position: absolute;
                left: 0;
                font-size: 22px;
                text-transform: uppercase;
                font-weight: bold;
                top: 10px;
            }
            #logo img {
                width: 100%;
                float: none;
            }
            #logo #rdv {
                display: block;
                position: absolute;
                right: 0;
                top: 28px;
                width: 19%;
                margin: 0;
                padding: 10px;
                text-align: center;
                font-size: 18px;
            }
            #nav-icon {
                display: none;
            }
            header h1 {
                display: none;
            }
            #menu {
                width: 100%;
                text-align: center;
                height: 40px;
            }
            #menu ul {
                background-color: #274393;
                position: initial;
                display: block;
                padding: 0;
                margin: 0 auto;
                width: 100%;
                float: none;
                overflow: hidden;
            }
            #menu ul li {
                list-style: none;
                float: left;
                text-align: center;
                width: 20%;
                /* fallback for non-calc() browsers */
                width: calc(100% / 5);
            }
            #menu ul li a {
                display: block;
                text-decoration: none;
                font-size: 14px;
                background-color: transparent;
                line-height: 40px;
                padding: 0;
            }
            #menu ul li a:hover {
                background-color: #102b78 !important;
            }
            #menu ul li a:focus {
                background-color: #102b78;
            }
            header #rdvtel {
                display: none;
            }
            #containertextintro {
                position: relative;
                height: 55%;
            }
            #banner-desktop {
                display: block;
            }
            #banner-mobile {
                display: none;
            }
            /* #textintro {
		left: 45%;
		top: 9%;
	} */
            #textintro h1 {
                font-size: 65px;
            }
            #textintro p {
                padding: 20px 0px 16px 0px;
                line-height: normal;
            }
            #rdv2 {
                font-size: 22px;
                font-weight: 700;
                margin: 20px auto;
            }
            #services {
                max-width: 1200px;
                margin: -8% auto 3% auto;
                width: 98%;
                position: relative;
                margin-top: -400px;
            }
            #services p:nth-child(2) {
                font-size: 16px;
                padding-bottom: 15px;
            }
            #desc-ordi {
                display: flex;
                justify-content: space-between;
                width: 100%;
            }
            #desc-ordi h4:before {
                content: "";
                position: absolute;
                width: 33px;
                height: 10px;
                top: 35px;
                border-bottom: 2px solid #c32026;
            }
            #desc-ordi h4 {
                position: relative;
                padding-top: 20px;
                padding-left: 20px;
                text-transform: uppercase;
                font-size: 15px;
            }
            #desc-ordi p {
                padding: 10px 20px;
                font-size: 15px;
                line-height: 18px;
                color: #626262;
            }
            #desc-ordi p span {
                font-weight: bold;
            }
            .desc-img img {
                margin: 0 auto;
                display: block;
            }
            .desc-ct {
                width: 25%;
                text-align: left;
            }
            .cont-text {
                text-align: left;
            }
            @supports (-ms-ime-align:auto) {
                #services {
                    margin: -8% auto 3% auto;
                }
                #intro {
                    height: 1150px;
                }
            }
            @-moz-document url-prefix() {
                #intro {
                    height: 1500px;
                }
            }
            #description {
                padding: 0;
            }
            #description .spc {
                display: none;
            }
            #description h1 {
                font-size: 23px;
                text-align: left;
            }
            #description h1 span:nth-child(2) {
                font-size: 20px;
            }
            #description img {
                max-width: 56%;
                float: right;
                width: 400px;
            }
            #textedescription {
                float: left;
                max-width: 56%;
                padding: 0 20px;
            }
            #controle-technique {
                display: flex;
                justify-content: space-between;
                padding-bottom: 25px;
            }
            #controle-technique h3:before {
                width: 30px;
                border-bottom: 2px solid #c32026;
            }
            #controle-technique h3 span {
                font-size: 15px;
            }
            #vos-controles {
                width: 49%;
                margin: 0 5px 0 5px;
            }
            #accueil-CT {
                width: 49%;
                margin: 0 5px 0 5px;
            }
            #points-controles {
                width: 49%;
                padding: 0;
                margin: 0 5px 0 5px;
            }
            #listepointcontrole {
                width: 100%;
                margin-left: -30px;
            }
            #points-controles li {
                font-size: 14px;
            }
            #points-controle img {
                width: 40%;
            }
            .tiret {
                display: initial;
            }
            #contre-visite {
                display: flex;
                justify-content: space-between;
            }
            #contre-visite h3:before {
                width: 30px;
                border-bottom: 2px solid #c32026;
            }
            #contre-visite h3 span {
                font-size: 15px;
            }
            #description-contre-visite {
                width: 49%;
                padding: 0;
            }
            #description-contre-visite ul {
                padding: 15px 0;
            }
            #description-contre-visite li {
                font-size: 14px;
                line-height: 18px;
            }
            #description-contre-visite h3:nth-child(5) {
                margin-bottom: 15px;
                margin-top: 5px;
            }
            #eviter-contre-visite {
                width: 49%;
                padding: 0;
                margin: 0;
            }
            #eviter-contre-visite h4 {
                font-size: 14px;
                padding-top: 10px;
                margin-top: 10px;
            }
            #tariflex {
                flex-direction: row;
                align-items: baseline;
                width: 100%;
            }
            .box {
                width: 32%;
                padding: 0;
            }
            .box li:not(:first-child) {
                font-size: 18px;
            }
            .asterisque2 {
                font-size: 14px;
            }
            #contact {
                padding: 0;
            }
            #contact form #submit {
                width: 38%;
                height: 50px;
                font-size: 18px;
                margin: 0 auto;
            }
            #contact form {
                width: 60%;
                float: left;
            }
            #inputflex {
                display: flex;
                justify-content: space-between;
            }
            #contactinfos {
                width: 40%;
            }
            #contact form label {
                font-size: 16px;
            }
            #contact form input {
                height: 46px;
            }
            #contacttexte {
                width: 53%;
            }
            #contact form textarea {
                height: 215px;
            }
            #formflex {
                display: flex;
                justify-content: space-between;
            }
            .g-recaptcha {
                margin: 0 30px 0 0;
            }
            #footer-info {
                margin-top: 25px;
                padding: 20px 0;
                width: 35%;
                float: right;
            }
            #footer-info h3 {
                font-size: 20px;
            }
            #footer-info p {
                margin: 10px 0;
                padding-bottom: 10px;
                line-height: 18px;
                font-size: 16px;
            }
            #footer-info p:nth-child(4) span {
                color: #c32026;
                font-size: 20px;
            }
            #footer-info span {
                font-weight: 700;
            }
            #footer {
                display: flex;
                align-items: center;
            }
            #menufooter {
                display: block;
                color: white;
                font-size: 14px;
            }
            #menufooter ul {
                margin: 0;
                border-left: 3px solid #3e3e3e;
                padding-left: 10px;
            }
            #menufooter ul:first-child {
                float: left;
            }
            #menufooter ul:last-child {
                float: right;
                margin-left: 25px;
            }
            #menufooter ul li a {
                color: #c4c4c4;
                text-decoration: none;
            }
            #menufooter ul li a:hover {
                color: white;
            }
            #mentions a {
                float: left;
                padding-top: 10px;
            }
            #mentions p {
                margin: 0;
                padding-left: 30px;
                line-height: 18px;
                padding-top: 0;
                padding-right: 0;
                text-align: left;
            }
            #copyright {
                margin-right: 5px;
            }
            #copyright p,
            #copyright p span {
                font-size: 14px;
                padding: 0;
            }
            #back-to-top {
                right: 2%;
                width: 40px;
                height: 40px;
            }
            #back-to-top::before {
                border-width: 0.25em 0.25em 0 0;
                border-radius: 5px 0 5px 0;
                height: 0.45em;
                top: 1em;
                width: 0.45em;
            }
        }

        @media (min-width: 1124px) and (max-width: 1200px) {
            #accueil-CT {
                transform: initial;
            }
            #accueil-CT img {
                height: 390px;
            }
            #textintro {
                top: 10%;
            }
            #textintro h1 {
                font-size: 40px;
            }
            #textintro p {
                font-size: 20px;
            }
        }

        @media (min-width: 1024px) and (max-width: 1123px) {
            #accueil-CT {
                transform: initial;
            }
            #accueil-CT img {
                height: 390px;
            }
            #textintro {
                top: 5%;
            }
            #textintro h1 {
                font-size: 40px;
            }
            #textintro p {
                font-size: 20px;
            }
        }

        @media (min-width: 1200px) and (max-width: 1500px) {
            #textintro h1 {
                font-size: 50px;
            }
            #textintro p {
                font-size: 25px;
            }
            #containerdescription {
                background-color: #2e2e2e;
                /* margin-top:250px; */
            }
        }

        @media (min-width: 1024px) and (max-width: 1500px) {
            #logo p {
                margin-left: 10px;
            }
            #logo #rdv {
                margin-right: 10px;
            }
            #services {
                margin-top: -150px;
            }
        }

        @media (min-width: 1200px) {
            #ulinfos li {
                color: white;
                font-size: 14px;
            }
            #services .button {
                font-size: 18px;
            }
            #description h1 {
                font-size: 23px;
            }
            #description p {
                font-size: 14px;
            }
            #textedescription {
                max-width: 62%;
                padding: 20px 0;
            }
        }

        @media (min-width: 1500px) {
            #textintro {
                top: 9%;
            }
            #textintro h1 {
                font-size: 60px;
            }
            #textintro p {
                font-size: 30px;
            }
            #banner-mobile {
                display: none;
            }
            @supports (-ms-ime-align:auto) {
                #textintro {
                    top: 8%;
                }
            }
            @-moz-document url-prefix() {
                #textintro {
                    top: 8%;
                }
            }
        }

        @media (min-width: 1500px) and (max-width:1700px) {
            #containerdescription {
                margin-top: -30px;
            }
        }

        @media(min-width:1700px) {
            #intro {
                height: 1600px;
            }
            #textintro {
                top: 9%;
            }
        }

        @media(min-width:1850px) {
            #intro {
                height: 1700px;
            }
            #textintro {
                top: 12%;
            }
        }

        @media(min-width:2000px) {
            #intro {
                height: 1800px;
            }
            #textintro {
                top: 12%;
            }
        }
        /* ------Remise a niveau-------- */
        /*  Remise a niveau du responsive mbienvenu*/

        #intro {
            height: 1500px;
        }

        @media screen and (max-width: 1000px) {
            #textintro {
                top: 16%;
                width: min-content;
            }
            #services {
                margin-top: -20px;
            }
            #intro {
                height: 830px;
            }
        }

        @media screen and (max-width: 790px) {
            #services {
                margin-top: 15px;
            }
        }

        @media screen and (max-width: 680px) {
            #services {
                margin-top: 60px;
            }
            #textintro {
                top: 9%;
                width: fit-content;
            }
        }

        @media screen and (max-width: 510px) {
            #services {
                margin-top: 65px;
            }
            .content {
                margin-top: 100px;
            }
        }

        @media screen and (max-width: 400px) {
            .content {
                margin-top: 115px;
            }
        }

        #infos {
            height: 65px;
        }

        #ulinfos {
            height: 100%;
        }

        #ulinfos #horaires:before {
            top: 13px;
            right: 150px;
            background-position: 0 -60px;
        }
