* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SF Pro Text", sans-serif;
}

html.overflow-hidden,
body.overflow-hidden {
  overflow: hidden;
  height: 100vh !important;
}

body {
  overflow-x: hidden;
  background-color: black;
}

main {
  background-color: black;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-Bold.woff2") format("woff2"), url("./../assets/font/SFProText-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-BoldItalic.woff2") format("woff2"), url("./../assets/font/SFProText-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-Heavy.woff2") format("woff2"), url("./../assets/font/SFProText-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-HeavyItalic.woff2") format("woff2"), url("./../assets/font/SFProText-HeavyItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-Light.woff2") format("woff2"), url("./../assets/font/SFProText-Light.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-Medium.woff2") format("woff2"), url("./../assets/font/SFProText-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-LightItalic.woff2") format("woff2"), url("./../assets/font/SFProText-LightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-Regular.woff2") format("woff2"), url("./../assets/font/SFProText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-MediumItalic.woff2") format("woff2"), url("./../assets/font/SFProText-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-RegularItalic.woff2") format("woff2"), url("./../assets/font/SFProText-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-Semibold.woff2") format("woff2"), url("./../assets/font/SFProText-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("./../assets/font/SFProText-SemiboldItalic.woff2") format("woff2"), url("./../assets/font/SFProText-SemiboldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
.ccgauto-siteloader {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  background-color: black;
  transition: opacity 0.5s ease-out;
}
.ccgauto-siteloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}
.ccgauto-siteloader img {
  height: 100px;
  width: auto;
}
.ccgauto-siteloader .loader {
  margin-top: 20px;
  width: 30%;
  height: 4.8px;
  display: inline-block;
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.ccgauto-siteloader .loader::after {
  content: "";
  width: 192px;
  height: 4.8px;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  animation: animloader 2s linear infinite;
}
@keyframes animloader {
  0% {
    left: 0;
    transform: translateX(-100%);
  }
  100% {
    left: 100%;
    transform: translateX(0%);
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-siteloader img {
    height: 80px;
  }
  .ccgauto-siteloader .loader {
    width: 50%;
  }
}

.ccgauto-btn {
  color: white;
  background-color: #0194FF;
  font-weight: 600;
  letter-spacing: 1.1px;
  padding: 12px 24px;
  border: solid 1px #0194FF;
  border-radius: 30px;
  min-width: max-content;
  transition: background-color 0.3s ease-out;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.ccgauto-btn.secondary {
  background-color: white;
  color: #0194FF;
}
.ccgauto-btn.secondary:hover {
  background-color: #F5F5F7;
}
.ccgauto-btn:hover {
  background-color: #0077cd;
  border-color: #0077cd;
}

.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

.whatsapp-widget img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.whatsapp-widget:hover img {
  transform: scale(1.1);
}

form .form-error-message {
  color: red;
  display: block;
  margin-top: 8px;
}
form .input {
  width: 100%;
}
form .input input {
  width: 100%;
  padding: 10px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
  font-size: 16px;
}
form .input input:focus {
  outline: none;
}
form .select {
  width: 100%;
}
form .select select {
  width: 100%;
  padding: 10px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
  font-size: 16px;
}
form .select select:focus {
  outline: none;
}
form .select select option {
  background-color: #151517;
  color: white;
}
form .textarea {
  width: 100%;
}
form .textarea textarea {
  width: 100%;
  padding: 10px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
  font-size: 16px;
  resize: none;
  min-height: 100px;
}
form .textarea textarea:focus {
  outline: none;
}
form .submit {
  display: flex;
  justify-content: center;
}

.ccgauto-popup-form {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100vh;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.ccgauto-popup-form.show {
  display: block;
}
.ccgauto-popup-form__container {
  background-color: white;
  width: 100%;
  min-width: 70%;
  max-width: 800px;
  min-height: max-content;
  max-height: 700px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 5px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.ccgauto-popup-form__container--close {
  position: absolute;
  top: 45px;
  right: 30px;
  cursor: pointer;
  height: 14px;
}
.ccgauto-popup-form__container--close path {
  fill: black;
}
.ccgauto-popup-form__container .title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.ccgauto-popup-form__container .steper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.ccgauto-popup-form__container .steper div {
  width: 100%;
  padding-bottom: 6px;
  border-bottom: solid 3px #c0c0c0;
}
.ccgauto-popup-form__container .steper div p {
  color: #c0c0c0;
  font-size: 14px;
}
.ccgauto-popup-form__container .steper div.active {
  border-color: #0194FF;
}
.ccgauto-popup-form__container .steper div.active p {
  color: #0194FF;
}
.ccgauto-popup-form .form {
  margin-top: 30px;
  overflow: hidden;
}
.ccgauto-popup-form .form .container {
  width: 300%;
  display: flex;
}
.ccgauto-popup-form .form section {
  width: 33.33%;
  padding: 20px;
  border-radius: 6px;
  border: solid 1px #c0c0c0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ccgauto-popup-form .form section.final-step {
  flex-direction: column;
}
.ccgauto-popup-form .form section.final-step label {
  width: 100%;
}
.ccgauto-popup-form .form section.final-step .consent {
  font-size: 12px;
}
.ccgauto-popup-form .form section label {
  width: calc(33.33% - 20px);
}
.ccgauto-popup-form .form section label input, .ccgauto-popup-form .form section label select, .ccgauto-popup-form .form section label textarea {
  margin-top: 10px;
}
.ccgauto-popup-form .form section label p {
  margin-top: 6px;
  color: red;
  font-size: 12px;
}
.ccgauto-popup-form .form section input,
.ccgauto-popup-form .form section select,
.ccgauto-popup-form .form section textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #F5F5F7;
  color: black;
  font-size: 16px;
}
.ccgauto-popup-form .form section input::placeholder,
.ccgauto-popup-form .form section select::placeholder,
.ccgauto-popup-form .form section textarea::placeholder {
  color: #c0c0c0;
}
.ccgauto-popup-form .form .submit {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-popup-form__container {
    padding: 20px;
    min-height: 100%;
    border-radius: 0;
  }
  .ccgauto-popup-form__container--close {
    top: 20px;
    right: 20px;
  }
  .ccgauto-popup-form__container .title {
    font-size: 20px;
    text-align: left;
  }
  .ccgauto-popup-form__container .steper {
    gap: 16px;
    flex-direction: column;
  }
  .ccgauto-popup-form__container .steper div {
    padding-bottom: 3px;
  }
  .ccgauto-popup-form__container .steper div p {
    font-size: 14px;
  }
  .ccgauto-popup-form .form section {
    padding: 20px;
  }
  .ccgauto-popup-form .form section label {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-popup-form .form section {
    flex-direction: column;
  }
  .ccgauto-popup-form .form section label {
    width: 100%;
  }
}

.card-vehicule {
  background-color: #F5F5F7;
  border-radius: 12px;
  padding-top: 40px;
  height: 100%;
}
.card-vehicule img {
  height: 150px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.card-vehicule div {
  padding: 20px;
}
.card-vehicule div .title {
  font-weight: 700;
  font-size: 20px;
  color: black;
  display: block;
  margin-bottom: 10px;
}
.card-vehicule div .desc {
  font-size: 14px;
  color: rgb(24, 25, 25);
  display: block;
  margin-bottom: 18px;
}
.card-vehicule div a {
  font-size: 14px;
  text-decoration: none;
  color: #0194FF;
}
@media screen and (max-width: 600px) {
  .card-vehicule {
    width: 80%;
    margin: 0 auto;
    max-height: initial;
  }
  .card-vehicule img {
    width: 80%;
    height: auto;
  }
  .card-vehicule div {
    padding: 30px;
  }
  .card-vehicule div .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .card-vehicule div .desc {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .card-vehicule div a {
    font-size: 16px;
  }
}

.card-vehicule-achat {
  position: relative;
}
.card-vehicule-achat .image {
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
}
.card-vehicule-achat .image img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}
.card-vehicule-achat .image:hover img {
  transform: scale(1.1);
  transition: all 1s;
}
.card-vehicule-achat .content {
  background-color: rgba(0, 0, 0, 0.8);
  width: 90%;
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 12px;
  padding: 12px 24px;
  color: white;
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.card-vehicule-achat .content .name {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
}
.card-vehicule-achat .content .details {
  display: flex;
  align-items: center;
  justify-content: end;
}
.card-vehicule-achat .content .details a {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  width: max-content;
}
@media screen and (max-width: 880px) {
  .card-vehicule-achat .content {
    padding: 12px 0;
    position: initial;
    background-color: initial;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .card-vehicule-achat .content .details {
    display: initial;
    margin-top: 10px;
  }
  .card-vehicule-achat .content .details a {
    color: #0194FF;
  }
}
@media screen and (max-width: 500px) {
  .card-vehicule-achat .image {
    height: 200px;
  }
}

.card-vehicule-mad {
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  color: white;
}
.card-vehicule-mad .brand {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.card-vehicule-mad .model {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
.card-vehicule-mad:hover {
  border: solid 0.5px #F5F5F7;
}
@media screen and (max-width: 450px) {
  .card-vehicule-mad {
    padding: 10px 20px;
  }
  .card-vehicule-mad span {
    font-size: 14px;
  }
  .card-vehicule-mad p {
    font-size: 18px;
  }
}

.pagination {
  height: max-content;
}

.ccgauto-catalogue-pagination {
  z-index: 999;
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  max-height: max-content;
  text-align: center;
}
.ccgauto-catalogue-pagination svg {
  height: 24px;
  width: 24px;
}
.ccgauto-catalogue-pagination div span,
.ccgauto-catalogue-pagination div a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.ccgauto-catalogue-pagination a {
  color: #0194FF;
}

.ccgauto-mad-pagination {
  margin: 20px auto 0;
  width: max-content;
  color: white;
}
.ccgauto-mad-pagination svg {
  height: 24px;
  width: 24px;
}
.ccgauto-mad-pagination div span,
.ccgauto-mad-pagination div a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.ccgauto-mad-pagination a {
  color: #0194FF;
}

.ccgauto-title--2 {
  font-size: 48px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .ccgauto-title--2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-title--2 {
    font-size: 24px;
  }
}

@media screen and (min-width: 1024px) {
  body, * {
    cursor: none;
  }
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999999;
    transition: transform 0.15s ease-out, background-color 0.15s ease-out;
  }
  .custom-cursor.cursor-hover {
    transform: scale(1.5);
    background-color: rgba(0, 0, 0, 0.4);
  }
}
.alert-success {
  position: fixed;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 20px 30px;
  border-radius: 5px;
  font-size: 18px;
  opacity: 1;
  transition: opacity 1s ease;
  z-index: 1000;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .alert-success {
    bottom: 20px;
    left: 20px;
    transform: initial;
  }
}

.ccgauto-cta {
  background-color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0;
  width: 100%;
  height: max-content;
}
.ccgauto-cta h3 {
  margin-bottom: 20px;
}
.ccgauto-cta p {
  max-width: 600px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600) {
  .ccgauto-cta {
    padding: 120px 4%;
  }
}

.ccgauto-faq {
  background-color: black;
  padding: 120px 0;
  width: 100%;
}
.ccgauto-faq h3 {
  font-size: 48px;
  color: white;
  margin-bottom: 40px;
  font-weight: 500;
}
.ccgauto-faq .question {
  border-bottom: 1px solid white;
}
.ccgauto-faq .question button {
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  border: none;
  outline: none;
  font-size: 18px;
  color: white;
  font-weight: 600;
  text-align: left;
}
.ccgauto-faq .question img {
  margin-left: 8px;
  transform: 0;
  transition: all 0.6s ease;
}
.ccgauto-faq .question img.rotate {
  transform: rotate(180deg);
  transition: all 0.6s ease;
}
.ccgauto-faq .question p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s ease;
  color: white;
}
.ccgauto-faq .question p.show {
  opacity: 1;
  padding-bottom: 20px;
  max-height: initial;
}
@media screen and (max-width: 1024px) {
  .ccgauto-faq {
    padding: 80px 0;
  }
  .ccgauto-faq h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-faq {
    padding: 80px 0;
  }
  .ccgauto-faq h3 {
    font-size: 24px;
  }
  .ccgauto-faq button {
    font-size: 16px;
    text-align: left;
  }
}

.ccgauto-layout-max {
  max-width: 1640px;
  margin: auto;
}
@media screen and (max-width: 1640px) {
  .ccgauto-layout-max {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.ccgauto-layout-mid {
  max-width: 1340px;
  margin: auto;
}
@media screen and (max-width: 1640px) {
  .ccgauto-layout-mid {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.ccgauto-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  z-index: 999;
  height: 10vh;
  min-height: 80px;
}
.ccgauto-header .container.sticky {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 100%;
  padding: 10px 4%;
}
.ccgauto-header .logo img {
  height: 50px;
  width: auto;
}
.ccgauto-header__nav ul {
  display: flex;
  gap: 20px;
  padding-inline-start: 0px;
}
.ccgauto-header__nav ul li {
  list-style: none;
  font-size: 16px;
  font-weight: 500;
}
.ccgauto-header__nav ul li a {
  color: #fff;
  text-decoration: none;
}
.ccgauto-header__nav ul li a:hover {
  color: #d7d7d7;
}
.ccgauto-header .toggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .ccgauto-header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .ccgauto-header .site-branding img {
    height: 40px;
  }
  .ccgauto-header__nav ul {
    gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-header .container {
    padding-top: 0px;
    padding-bottom: 0px;
    align-items: center;
    height: 10vh;
    min-height: initial;
    background-color: black;
  }
  .ccgauto-header .toggle {
    display: block;
    height: 40px;
    width: 30px;
    margin-left: auto;
    position: relative;
  }
  .ccgauto-header .toggle span {
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
  }
  .ccgauto-header .toggle span:nth-child(1) {
    top: 25%;
  }
  .ccgauto-header .toggle span:nth-child(3) {
    top: 75%;
  }
  .ccgauto-header .toggle.active span {
    background-color: white;
  }
  .ccgauto-header .toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .ccgauto-header .toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .ccgauto-header .toggle.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .ccgauto-header__nav ul {
    position: absolute;
    top: 10vh;
    left: 0;
    width: 0%;
    height: 90vh;
    transition: all 0.5s;
    padding-top: 60px;
    background-color: black;
  }
  .ccgauto-header__nav ul.active {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ccgauto-header__nav ul.active li {
    opacity: 1;
    font-size: 24px;
    transition: opacity 0.5s;
    height: auto;
  }
  .ccgauto-header__nav ul li {
    opacity: 0;
    white-space: nowrap;
    height: 0;
  }
}
.ccgauto-header.light {
  color: black;
}
.ccgauto-header.light .container {
  background-color: #F5F5F7;
}
.ccgauto-header.light .toggle span {
  background-color: black;
}
.ccgauto-header.light .toggle span.active {
  background-color: black;
}
.ccgauto-header.light .ccgauto-header__nav ul li a {
  color: black;
}
.ccgauto-header.light .ccgauto-header__nav ul li a:hover {
  color: #0194FF;
}
@media screen and (max-width: 600px) {
  .ccgauto-header.light .ccgauto-header__nav ul {
    background-color: #F5F5F7;
  }
}

@media screen and (max-width: 600px) {
  body.menu-open {
    overflow: hidden;
  }
}
.ccgauto-footer {
  background-color: #000000;
  padding-top: 80px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}
.ccgauto-footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  justify-content: space-between;
}
.ccgauto-footer__container .logo img {
  height: 80px;
  width: auto;
}
.ccgauto-footer__container .menu p {
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}
.ccgauto-footer__container .menu p:nth-child(3) {
  margin-top: 20px;
}
.ccgauto-footer__container .menu ul {
  padding-inline-start: 0px;
}
.ccgauto-footer__container .menu li {
  margin: 0 0 6px;
}
.ccgauto-footer__container .menu li,
.ccgauto-footer__container .menu a {
  display: block;
  width: max-content;
  list-style: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
}
.ccgauto-footer__container .menu a:hover {
  color: #d7d7d7;
}
.ccgauto-footer__container .menu-socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: max-content;
}
.ccgauto-footer__container .menu-socials a {
  display: block;
}
.ccgauto-footer__container .menu-socials a:nth-child(2) {
  margin: 0 16px;
}
.ccgauto-footer__signature {
  color: white;
  font-size: 14px;
  font-family: "SF Pro Text", sans-serif;
  text-align: center;
  margin-top: 60px;
}
.ccgauto-footer__signature a {
  color: white;
  font-weight: 900;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .ccgauto-footer {
    padding-top: 80px;
    padding-bottom: 10px;
  }
  .ccgauto-footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ccgauto-footer__container .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  .ccgauto-footer__container .menu {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-footer__container {
    display: flex;
    flex-direction: column;
  }
  .ccgauto-footer__container .menu {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .ccgauto-footer__container .menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ccgauto-footer__container .menu-socials {
    width: max-content;
    margin: 0 auto;
  }
  .ccgauto-footer__signature {
    margin-top: 30px;
  }
}

.laprvd-error section {
  min-height: 500px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
.laprvd-error span {
  font-size: 256px;
  line-height: 1;
}
.laprvd-error p {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .laprvd-error span {
    font-size: 128px;
  }
  .laprvd-error p {
    font-size: 20px;
  }
}

.ccgauto-home-hero {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 10vh auto 120px;
  background-image: url("/static/img/home-hero/1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: contain;
  transition: background-image 0.2s ease-in-out;
}
.ccgauto-home-hero::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  height: 100%;
  width: 100%;
}
.ccgauto-home-hero__content {
  position: sticky;
  top: 0;
  text-align: center;
  z-index: 3;
}
.ccgauto-home-hero__content #dynamic-text-container {
  display: inline-block;
  position: relative;
  min-width: 150px;
  height: 70px;
  text-align: center;
}
.ccgauto-home-hero__content #dynamic-text {
  font-weight: 500;
  color: white;
  font-size: 88px;
  position: relative;
  display: inline-block;
}
.ccgauto-home-hero__content #cursor {
  display: inline-block;
  color: #0194FF;
  font-size: 88px;
  animation: blink 0.7s infinite;
  margin-left: 2px;
}
.ccgauto-home-hero__content p {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 300;
  color: white;
  width: 100%;
}
@media screen and (max-width: 1140px) {
  .ccgauto-home-hero__content #dynamic-text {
    font-size: 58px;
  }
  .ccgauto-home-hero__content #cursor {
    font-size: 58px;
  }
  .ccgauto-home-hero__content p {
    font-size: 42px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-home-hero {
    margin: 10vh auto 120px;
  }
  .ccgauto-home-hero__content #dynamic-text-container {
    height: 50px;
  }
  .ccgauto-home-hero__content #dynamic-text {
    font-size: 42px;
  }
  .ccgauto-home-hero__content #cursor {
    font-size: 42px;
  }
  .ccgauto-home-hero__content p {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .ccgauto-home-hero__content #dynamic-text-container {
    height: 40px;
  }
  .ccgauto-home-hero__content #dynamic-text {
    font-size: 36px;
  }
  .ccgauto-home-hero__content #cursor {
    font-size: 36px;
  }
  .ccgauto-home-hero__content p {
    font-size: 24px;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.ccgauto-home-about {
  display: flex;
  max-width: 1240px;
  margin: auto;
}
.ccgauto-home-about__left {
  width: 40%;
  padding: 0 0 80px 6%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 120px;
  height: max-content;
}
.ccgauto-home-about__left div:nth-child(1) {
  color: white;
}
.ccgauto-home-about__left div:nth-child(1) h1 {
  margin-bottom: 40px;
}
.ccgauto-home-about__left div:nth-child(1) h1 span {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #fe2828, #6a9dff);
  -webkit-text-fill-color: transparent;
}
.ccgauto-home-about__left div:nth-child(1) ul li img {
  height: 40px;
  margin-right: 10px;
}
.ccgauto-home-about__left div:nth-child(1) ul li {
  list-style: none;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.ccgauto-home-about__notifs {
  width: 60%;
  height: 1800px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.ccgauto-home-about__notifs .notification {
  width: 400px;
  padding: 18px 16px;
  margin: 10px 0;
  opacity: 0;
  position: sticky;
  border-radius: 10px;
  color: white;
}
.ccgauto-home-about__notifs .notification__time {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  color: gray;
}
.ccgauto-home-about__notifs .notification.notif-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.ccgauto-home-about__notifs .notification.notif-img img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.ccgauto-home-about__notifs .notification.notif-img div {
  width: calc(100% - 60px);
}
.ccgauto-home-about__notifs .notification.notif-img div span {
  color: black;
  font-weight: 600;
  font-size: 14px;
}
.ccgauto-home-about__notifs .notification.notif-img div p {
  color: black;
  font-size: 15px;
}
.ccgauto-home-about__notifs .notification.active {
  background-color: white !important;
}
.ccgauto-home-about__notifs .notification.ended {
  height: 80px;
  overflow: hidden;
}
.ccgauto-home-about__notifs .notification.ended p {
  display: none;
}
.ccgauto-home-about__notifs .notification.ended#notification1 {
  width: 400px;
}
.ccgauto-home-about__notifs .notification.ended#notification2 {
  width: 420px;
}
.ccgauto-home-about__notifs .notification.ended#notification3 {
  width: 440px;
}
.ccgauto-home-about__notifs .notification.ended#notification4 {
  width: 460px;
}
.ccgauto-home-about__notifs .notification.ended#notification5 {
  width: 480px;
}
.ccgauto-home-about__notifs .notification.ended#notification5 p {
  display: block;
}
.ccgauto-home-about__notifs #notification1 {
  background-color: rgb(25, 25, 25);
  opacity: 1;
  border: solid 1px white;
  position: sticky;
  top: 120px;
}
.ccgauto-home-about__notifs #notification2 {
  background-color: rgb(200, 200, 200);
}
.ccgauto-home-about__notifs #notification3 {
  background-color: rgb(225, 225, 225);
}
.ccgauto-home-about__notifs #notification4 {
  background-color: rgb(239, 239, 239);
}
.ccgauto-home-about__notifs #notification5 {
  background-color: white;
}
.ccgauto-home-about__notifs .counter {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #0194FF;
  color: white;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -18px;
  right: -15px;
  z-index: 5;
}
.ccgauto-home-about__notifs .notification-end {
  position: sticky;
  top: 260px;
  margin-top: 1000px;
  width: 460px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  padding: 18px;
}
.ccgauto-home-about__notifs .notification-end__header {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.ccgauto-home-about__notifs .notification-end__header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}
.ccgauto-home-about__notifs .notification-end__header p {
  font-weight: 600;
}
.ccgauto-home-about__notifs .notification-end__header span {
  position: absolute;
  top: 10px;
  right: 10px;
  color: gray;
  font-size: 12px;
}
.ccgauto-home-about__notifs .notification-end__logo {
  height: 50px;
  width: auto;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-home-about {
    width: 100%;
    flex-direction: column;
    padding: 0 6%;
  }
  .ccgauto-home-about__left {
    position: initial;
    width: 100%;
    padding: 0;
  }
  .ccgauto-home-about__left div:nth-child(1) h1 {
    text-align: center;
  }
  .ccgauto-home-about__left div:nth-child(1) ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ccgauto-home-about__left div:nth-child(1) ul li {
    font-size: 28px;
  }
  .ccgauto-home-about__left div:nth-child(1) ul li img {
    height: 30px;
  }
  .ccgauto-home-about__notifs {
    width: 100%;
    height: initial;
    padding: 30px 0 0;
  }
  .ccgauto-home-about__notifs .notification {
    opacity: 1;
    position: relative;
  }
  .ccgauto-home-about__notifs .notification#notification1 {
    display: none;
  }
  .ccgauto-home-about__notifs .notification#notification2 {
    width: 80%;
    top: initial !important;
  }
  .ccgauto-home-about__notifs .notification#notification3 {
    top: -35px !important;
    width: 85%;
  }
  .ccgauto-home-about__notifs .notification#notification4 {
    top: -70px !important;
    width: 90%;
  }
  .ccgauto-home-about__notifs .notification-end {
    position: relative;
    margin-top: 10px;
    top: -100px;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-home-about__left div:nth-child(1) ul li {
    font-size: 20px;
  }
  .ccgauto-home-about__notifs .notification__time {
    font-size: 12px;
  }
  .ccgauto-home-about__notifs .notification.notif-img img {
    width: 40px;
    height: 40px;
  }
  .ccgauto-home-about__notifs .notification.notif-img div p {
    font-size: 12px;
  }
  .ccgauto-home-about__notifs .notification#notification2 {
    width: 84%;
  }
  .ccgauto-home-about__notifs .notification#notification3 {
    width: 90%;
  }
  .ccgauto-home-about__notifs .notification#notification4 {
    width: 95%;
  }
}

.ccgauto-home-services {
  position: relative;
  height: 200vh;
  background-color: white;
  pointer-events: none;
}
.ccgauto-home-services.no-hover {
  pointer-events: initial;
}
.ccgauto-home-services.no-hover .ccgauto-home-services__accordeon .service div {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.ccgauto-home-services__mask {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  overflow: hidden;
  mask-image: url("/static/img/services-mask.svg");
  mask-position: center center;
  mask-repeat: no-repeat;
  -webkit-mask-size: 80%;
  mask-size: 80%;
  mask-position: 56.7%;
}
.ccgauto-home-services__accordeon {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.ccgauto-home-services__accordeon .service {
  flex: 1;
  transition: all 1s ease-in-out;
  height: 100vh;
  position: relative;
  text-decoration: none;
}
.ccgauto-home-services__accordeon .service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
  z-index: 1;
}
.ccgauto-home-services__accordeon .service div {
  color: white;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 1em;
  min-width: 100%;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 2;
  transform: rotate(-90deg);
  transform-origin: 0% 0%;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.ccgauto-home-services__accordeon .service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
}
.ccgauto-home-services__accordeon .service:hover {
  flex-grow: 6;
}
.ccgauto-home-services__accordeon .service:hover div {
  text-align: center;
  top: calc(100% - 2em);
  color: white;
  font-size: 24px;
  transform: rotate(0deg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 1em;
}
@media screen and (max-width: 1024px) {
  .ccgauto-home-services {
    height: max-content;
    pointer-events: initial;
    padding-top: 60px;
    background-color: black;
  }
  .ccgauto-home-services__mask {
    mask-image: none;
    position: initial;
    display: none;
  }
}
.ccgauto-home-services .ccgauto-home-services__accordeon--responsive {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .ccgauto-home-services .ccgauto-home-services__accordeon--responsive {
    display: block !important;
  }
  .ccgauto-home-services .ccgauto-home-services__accordeon--responsive .service {
    height: 100vh;
    position: relative;
    text-decoration: none;
    display: block;
  }
  .ccgauto-home-services .ccgauto-home-services__accordeon--responsive .service::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    z-index: 1;
  }
  .ccgauto-home-services .ccgauto-home-services__accordeon--responsive .service div {
    color: white;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 1em;
    min-width: 100%;
    text-align: center;
    white-space: nowrap;
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 2;
    transform: rotate(-90deg);
    transform-origin: 0% 0%;
    transition: all 0.5s ease-in-out;
  }
  .ccgauto-home-services .ccgauto-home-services__accordeon--responsive .service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease-in-out;
  }
}

.ccgauto-home-pro {
  background-color: #F5F5F7;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.ccgauto-home-pro .block {
  position: absolute;
  height: 100vh;
  top: 0;
}
.ccgauto-home-pro span.span-gradient {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #fe2828, #6a9dff);
  -webkit-text-fill-color: transparent;
}
.ccgauto-home-pro__1 {
  width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5F5F7;
}
.ccgauto-home-pro__1 h2 {
  font-size: 58px;
  color: black;
  margin-left: 12%;
  font-weight: 500;
}
.ccgauto-home-pro__2 {
  left: 600px;
  width: 1020px;
  padding: 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-home-pro__2 .container {
  display: flex;
  align-items: center;
  height: 500px;
  width: 100%;
  border-radius: 12px;
  background-color: white;
}
.ccgauto-home-pro__2 .container .right,
.ccgauto-home-pro__2 .container .left {
  flex: 1;
}
.ccgauto-home-pro__2 .container .left div {
  text-align: center;
  padding-left: 12%;
}
.ccgauto-home-pro__2 .container .left div h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
.ccgauto-home-pro__2 .container .left div p {
  color: rgb(76, 76, 76);
}
.ccgauto-home-pro__2 .container .right div {
  padding: 12% 0 12% 12%;
  perspective: 800px;
  overflow: hidden;
}
.ccgauto-home-pro__2 .container .right div img {
  width: 100%;
  height: auto;
  transform: translateZ(120px) rotateY(-15deg);
  border-radius: 8px 0 0 8px;
  transition: all 0.6s ease;
  border: solid 2px #F5F5F7;
}
.ccgauto-home-pro__2 .container .right div img:hover {
  transform: translateZ(0) rotateY(0);
}
.ccgauto-home-pro__3 {
  width: 1000px;
  left: 1620px;
  padding-right: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-home-pro__3 .container {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ccgauto-home-pro__3 .container h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  width: 50%;
  text-align: center;
}
.ccgauto-home-pro__3 .container-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  flex: 3;
}
.ccgauto-home-pro__3 .container .box {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.ccgauto-home-pro__3 .container .box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.6s ease;
}
.ccgauto-home-pro__3 .container .box img:hover {
  transform: scale(1.05);
  transition: all 0.6s ease;
}
.ccgauto-home-pro__3 .container .box h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 8px;
}
.ccgauto-home-pro__3 .container .box p {
  text-align: center;
  font-size: 14px;
  color: rgb(76, 76, 76);
}
.ccgauto-home-pro__3 .container .box-2 h4 {
  margin: 0 0 8px;
}
.ccgauto-home-pro__3 .container .box-2 p {
  margin-bottom: 20px;
}
.ccgauto-home-pro__3 .container .box::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 86px;
  left: 0;
  top: 80%;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(0deg, #F5F5F7 22.4%, #0194FF 60.94%, #F5F5F7);
  transition: top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s linear;
  will-change: transform, opacity;
}
.ccgauto-home-pro__3 .container .box:hover::before {
  top: 20%;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .ccgauto-home-pro {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    overflow: initial;
    padding: 120px 6%;
  }
  .ccgauto-home-pro .block {
    position: relative;
    height: max-content;
  }
  .ccgauto-home-pro__1, .ccgauto-home-pro__2, .ccgauto-home-pro__3 {
    width: 100%;
    left: 0;
    padding: 0;
  }
  .ccgauto-home-pro__1 {
    width: 100%;
  }
  .ccgauto-home-pro__1 h2 {
    font-size: 32px;
    margin-left: 0;
    text-align: center;
  }
  .ccgauto-home-pro__2 .container {
    height: 100%;
  }
  .ccgauto-home-pro__3 {
    width: 100%;
  }
  .ccgauto-home-pro__3 .container {
    height: 100%;
  }
  .ccgauto-home-pro__3 .container h3 {
    font-size: 24px;
    width: 100%;
  }
  .ccgauto-home-pro__3 .container-box {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
  }
  .ccgauto-home-pro__3 .container .box {
    width: 100%;
    padding: 40px 20px;
  }
  .ccgauto-home-pro__3 .container .box img {
    height: 200px;
  }
  .ccgauto-home-pro__3 .container .box h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-home-pro {
    padding: 120px 4% 60px;
    gap: 40px;
  }
  .ccgauto-home-pro__2 .container {
    flex-direction: column;
    height: max-content;
  }
  .ccgauto-home-pro__2 .container .left {
    padding: 40px 20px;
  }
  .ccgauto-home-pro__2 .container .left div {
    padding-left: 0;
  }
  .ccgauto-home-pro__2 .container .left div h3 {
    font-size: 24px;
  }
  .ccgauto-home-pro__2 .container .right {
    padding: 0;
    width: 100%;
  }
  .ccgauto-home-pro__2 .container .right div {
    padding: 0 0 8% 0px;
    text-align: center;
  }
  .ccgauto-home-pro__2 .container .right div img {
    width: 90%;
    height: 250px;
    transform: translateZ(0) rotateY(0);
  }
}

.ccgauto-about-intro {
  margin-top: 10vh;
  height: 350px;
  width: 100%;
  background-color: black;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 15px;
  position: sticky;
  top: 0;
}
.ccgauto-about-intro .gallery-1 {
  height: 350px;
}
.ccgauto-about-intro .gallery-1 div:nth-child(1) {
  height: calc(65% - 15px);
  margin-bottom: 15px;
  width: 100%;
}
.ccgauto-about-intro .gallery-1 div:nth-child(2) {
  height: 35%;
  width: 100%;
}
.ccgauto-about-intro .gallery-2 {
  height: 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.ccgauto-about-intro .gallery-2 div:nth-child(1),
.ccgauto-about-intro .gallery-2 div:nth-child(2) {
  width: calc(50% - 7.5px);
  height: 30%;
}
.ccgauto-about-intro .gallery-2 div:nth-child(3) {
  width: 100%;
  height: calc(70% - 15px);
}
.ccgauto-about-intro .gallery-3 {
  height: 350px;
}
.ccgauto-about-intro .gallery-3 div {
  height: 100%;
  width: 100%;
}
.ccgauto-about-intro .gallery-4 {
  height: 350px;
}
.ccgauto-about-intro .gallery-4 div:nth-child(1) {
  height: 35%;
  margin-bottom: 15px;
  width: 100%;
}
.ccgauto-about-intro .gallery-4 div:nth-child(2) {
  height: calc(65% - 15px);
  width: 100%;
}
.ccgauto-about-intro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 880px) {
  .ccgauto-about-intro {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .ccgauto-about-intro .gallery-3 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .ccgauto-about-intro {
    grid-template-columns: 1fr 1fr;
  }
  .ccgauto-about-intro .gallery-2 {
    display: none;
  }
}

.ccgauto-about-presentation {
  padding: 120px 8%;
  background-color: black;
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}
.ccgauto-about-presentation h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 30px;
}
.ccgauto-about-presentation p {
  max-width: 60%;
  margin: auto;
}
.ccgauto-about-presentation__valeurs {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
.ccgauto-about-presentation__valeurs div {
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  background-color: #151517;
}
.ccgauto-about-presentation__valeurs div img {
  margin-bottom: 10px;
  height: 24px;
  width: auto;
}
.ccgauto-about-presentation__valeurs div span {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.ccgauto-about-presentation__valeurs div p {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-about-presentation {
    padding: 120px 6%;
  }
  .ccgauto-about-presentation h1 {
    font-size: 48px;
  }
  .ccgauto-about-presentation p {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-about-presentation {
    padding: 80px 4%;
  }
  .ccgauto-about-presentation h1 {
    font-size: 32px;
  }
  .ccgauto-about-presentation__valeurs {
    grid-template-columns: 1fr;
  }
}

.ccgauto-about-services {
  display: flex;
  padding: 0 8% 120px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  background-color: black;
}
.ccgauto-about-services__img {
  width: 50%;
}
.ccgauto-about-services__img div:nth-child(1) {
  height: 515px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 15px;
}
.ccgauto-about-services__img div:nth-child(1) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.ccgauto-about-services__img div:nth-child(1) img:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
  height: 515px;
}
.ccgauto-about-services__img div:nth-child(1) img:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
  height: 300px;
}
.ccgauto-about-services__img div:nth-child(1) img:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
  height: 200px;
}
.ccgauto-about-services__img div:nth-child(2) {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.ccgauto-about-services__content {
  width: 50%;
  color: white;
}
.ccgauto-about-services__content h2 {
  margin-bottom: 30px;
}
.ccgauto-about-services__content h2 span {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #fe2828, #6a9dff);
  -webkit-text-fill-color: transparent;
}
.ccgauto-about-services__content p {
  margin-bottom: 20px;
}
.ccgauto-about-services__content p:last-child {
  margin-bottom: 0px;
}
.ccgauto-about-services__content ul {
  list-style: none;
}
.ccgauto-about-services__content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.ccgauto-about-services__content ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0194FF;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-about-services {
    flex-direction: column-reverse;
    padding: 0 6% 120px;
  }
  .ccgauto-about-services__content {
    width: 100%;
  }
  .ccgauto-about-services__img {
    width: 100%;
  }
  .ccgauto-about-services__img div:nth-child(1) {
    height: 400px;
    display: block;
  }
  .ccgauto-about-services__img div:nth-child(1) img {
    height: 100%;
  }
  .ccgauto-about-services__img div:nth-child(1) img:nth-child(1) {
    height: 400px;
  }
  .ccgauto-about-services__img div:nth-child(1) img:nth-child(2), .ccgauto-about-services__img div:nth-child(1) img:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-about-services {
    padding: 0 4% 80px;
    gap: 40px;
  }
  .ccgauto-about-services__img div:nth-child(1) {
    height: 300px;
  }
  .ccgauto-about-services__img div:nth-child(1) img:nth-child(1) {
    height: 300px;
  }
}

.ccgauto-about-image {
  height: 600px;
  width: 100%;
  background: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ccgauto-about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.ccgauto-about-image img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ccgauto-about-image {
    height: 400px;
  }
  .ccgauto-about-image img {
    height: auto;
    width: 80%;
    max-width: 400px;
  }
}

.ccgauto-about-partenaires {
  background-color: black;
  position: relative;
  z-index: 2;
  padding: 120px 12%;
}
.ccgauto-about-partenaires__content {
  display: flex;
  align-items: center;
  gap: 80px;
  color: white;
  margin-bottom: 40px;
}
.ccgauto-about-partenaires__content h3 span {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #fe2828, #6a9dff);
  -webkit-text-fill-color: transparent;
}
.ccgauto-about-partenaires__swiper {
  overflow: hidden;
}
.ccgauto-about-partenaires__swiper .swiper-slide {
  width: 250px;
  height: 300px;
  border-radius: 12px;
}
.ccgauto-about-partenaires__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-about-partenaires {
    padding: 120px 6%;
  }
  .ccgauto-about-partenaires__content {
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-about-partenaires {
    padding: 120px 4%;
  }
  .ccgauto-about-partenaires__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.ccgauto-about-cta {
  position: relative;
  z-index: 2;
}

.ccgauto-contact {
  padding-top: 120px;
  display: flex;
  flex-wrap: wrap;
}
.ccgauto-contact__content {
  width: 60%;
  display: flex;
  flex-direction: column;
  padding-right: 8%;
  position: relative;
}
.ccgauto-contact__content h1 {
  font-size: 48px;
  color: white;
}
.ccgauto-contact__content .description {
  margin: 20px 0 40px;
  color: white;
  max-width: 800px;
  line-height: 1.5;
}
.ccgauto-contact__content--info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.ccgauto-contact__content--info div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ccgauto-contact__content--info div img {
  margin-right: 15px;
}
.ccgauto-contact__content--info div p {
  color: white;
}
.ccgauto-contact__content--info div p a {
  color: white;
  text-decoration: none;
}
.ccgauto-contact__content--info div p a:hover {
  text-decoration: underline;
}
.ccgauto-contact__content--socials span {
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
  display: block;
}
.ccgauto-contact__content--socials a {
  text-decoration: none;
}
.ccgauto-contact__content--socials div {
  display: flex;
  gap: 15px;
}
.ccgauto-contact__content--img {
  display: flex;
  justify-content: flex-end;
  margin-right: -20%;
}
.ccgauto-contact__content--img img {
  height: 250px;
  width: auto;
}
.ccgauto-contact__form {
  width: 40%;
  height: 100%;
  background-color: #151517;
  border-radius: 20px;
  padding: 60px 80px;
}
.ccgauto-contact__form form {
  gap: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1300px) {
  .ccgauto-contact__form {
    padding: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .ccgauto-contact__content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .ccgauto-contact__content--img {
    justify-content: center;
    margin-right: 0;
  }
  .ccgauto-contact__content--img img {
    height: 200px;
  }
  .ccgauto-contact__form {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-contact__content h1 {
    font-size: 32px;
  }
  .ccgauto-contact__content--img {
    margin-top: 40px;
  }
  .ccgauto-contact__content--img img {
    height: 150px;
  }
  .ccgauto-contact__form {
    padding: 40px;
  }
}
@media screen and (max-width: 500px) {
  .ccgauto-contact__content--info div img {
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .ccgauto-contact__content--info div p {
    font-size: 14px;
  }
}

.ccgauto-services {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  padding-top: 30vh;
  max-width: 1640px;
  margin: auto;
}
.ccgauto-services__descriptions {
  position: absolute;
  bottom: 0;
  padding: 0 8% 80px;
  background-color: black;
  color: white;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 9;
}
.ccgauto-services__descriptions p {
  display: none;
}
.ccgauto-services__descriptions p.custom-active-desc {
  display: block;
}
.ccgauto-services__descriptions a {
  display: block;
  margin-top: 20px;
  width: max-content;
}
.ccgauto-services__titles {
  overflow: hidden;
}
.ccgauto-services__titles .item {
  width: 100% !important;
  display: inline-block;
  box-sizing: border-box;
  text-align: left;
}
.ccgauto-services__titles h2 {
  font-size: 90px;
  white-space: nowrap;
  padding-left: 90px;
  color: transparent;
  -webkit-text-stroke: 1px white;
  position: relative;
}
.ccgauto-services__titles h2 span {
  font-size: 40px;
  position: absolute;
  top: 10px;
  left: 30px;
}
.ccgauto-services__titles h2.custom-active {
  color: white;
  transition: color 0.3s;
}
.ccgauto-services__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 0;
}
.ccgauto-services__images img {
  width: 0%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.ccgauto-services__images img.custom-active-image {
  opacity: 1;
  width: 100%;
  transition: opacity 0.5s, width 0.3s;
}
@media screen and (max-width: 768px) {
  .ccgauto-services {
    display: none;
  }
}

.ccgauto-services-responsive {
  display: none;
}
@media screen and (max-width: 768px) {
  .ccgauto-services-responsive {
    display: block;
  }
  .ccgauto-services-responsive .service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid white;
    color: white;
    text-align: center;
    height: 100vh;
    position: sticky;
    top: 0;
  }
  .ccgauto-services-responsive .service__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    padding: 0 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .ccgauto-services-responsive .service__content h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .ccgauto-services-responsive .service__content h2 sup {
    font-size: 16px;
    margin-right: 5px;
  }
  .ccgauto-services-responsive .service__content a {
    display: block;
    margin-top: 20px;
    width: max-content;
  }
  .ccgauto-services-responsive .service__img {
    height: 100%;
    width: 100%;
  }
  .ccgauto-services-responsive .service__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 20px;
  }
  .ccgauto-services-responsive .service__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.ccgauto-service-achatvente {
  padding: 90px 4% 0;
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.ccgauto-service-achatvente a {
  border-radius: 8px;
  width: calc(50% - 15px);
  height: 600px;
  position: relative;
  overflow: hidden;
  transition: all 1s;
}
.ccgauto-service-achatvente a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}
.ccgauto-service-achatvente a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.ccgauto-service-achatvente a:hover {
  transition: all 1s;
}
.ccgauto-service-achatvente a:hover img {
  filter: brightness(0.7);
  transform: scale(1.1);
  transition: all 1s;
}
.ccgauto-service-achatvente a:hover div {
  bottom: 100px;
  transition: bottom 0.5s;
}
.ccgauto-service-achatvente a:hover div p {
  opacity: 1;
}
.ccgauto-service-achatvente div {
  color: white;
  position: absolute;
  bottom: 30px;
  z-index: 2;
  font-size: 36px;
  text-align: center;
  width: 100%;
  padding: 0 8%;
  transition: bottom 0.5s;
}
.ccgauto-service-achatvente div h2 {
  font-weight: 700;
  font-size: 42px;
}
.ccgauto-service-achatvente div p {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .ccgauto-service-achatvente {
    padding: 80px 4% 0;
  }
  .ccgauto-service-achatvente a {
    width: 100%;
    border-radius: 0;
  }
  .ccgauto-service-achatvente a:first-child {
    margin-bottom: 40px;
  }
  .ccgauto-service-achatvente a img {
    border-radius: 0;
  }
  .ccgauto-service-achatvente a::after {
    border-radius: 0;
  }
  .ccgauto-service-achatvente div {
    bottom: 100px;
  }
  .ccgauto-service-achatvente div h2 {
    font-size: 32px;
  }
  .ccgauto-service-achatvente div p {
    font-size: 24px;
    opacity: 1;
  }
}

.ccgauto-service-vente__body {
  background-color: #F5F5F7;
}
.ccgauto-service-vente__main {
  background-color: black;
  border-radius: 0 0 20px 20px;
}
.ccgauto-service-vente__svg {
  position: relative;
  margin: 0 auto;
}
.ccgauto-service-vente__svg svg {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ccgauto-service-vente__svg path {
  stroke-width: 30px;
}
@media screen and (min-width: 1800px) {
  .ccgauto-service-vente__svg svg {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .ccgauto-service-vente__svg {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-vente__svg {
    padding: 0 6% 80px;
  }
  .ccgauto-service-vente__svg svg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-vente__svg {
    padding: 0 4% 80px;
  }
}

.ccgauto-service-vente__hero {
  max-width: 1640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 140px;
  margin: auto;
  color: white;
}
@media screen and (min-width: 1800px) {
  .ccgauto-service-vente__hero {
    align-items: center;
    text-align: center;
  }
  .ccgauto-service-vente__hero h1,
.ccgauto-service-vente__hero p {
    max-width: 800px;
  }
}
@media screen and (max-width: 1800px) {
  .ccgauto-service-vente__hero h1,
.ccgauto-service-vente__hero p {
    max-width: 600px;
  }
}
@media screen and (max-width: 1640px) {
  .ccgauto-service-vente__hero {
    padding: 180px 4% 160px;
  }
}
.ccgauto-service-vente__hero h1 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 700;
}
.ccgauto-service-vente__hero p {
  margin-bottom: 30px;
}
.ccgauto-service-vente__hero button {
  display: block;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-vente__hero {
    height: auto;
    padding: 180px 0 120px;
    margin-bottom: 0;
  }
  .ccgauto-service-vente__hero h1 {
    font-size: 36px;
  }
  .ccgauto-service-vente__hero p {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-vente__hero {
    height: auto;
    padding: 120px 0 80px;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-service-vente__hero h1 {
    font-size: 32px;
  }
}

.ccgauto-service-vente__engagement {
  max-width: 1640px;
  margin: 0 auto;
  color: white;
  padding: 0 4% 80px;
  position: relative;
  z-index: 2;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1800px) {
  .ccgauto-service-vente__engagement {
    padding-left: 20%;
    padding-right: 4%;
  }
}
.ccgauto-service-vente__engagement--container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 40px;
}
.ccgauto-service-vente__engagement--container .box {
  color: black;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.ccgauto-service-vente__engagement--container .box::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 86px;
  left: 0;
  top: 80%;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(0deg, rgba(59, 56, 65, 0) 22.4%, #0194FF 60.94%, rgba(59, 56, 65, 0));
  transition: top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s linear;
  will-change: transform, opacity;
}
.ccgauto-service-vente__engagement--container .box:hover {
  background-color: #171717;
  transition: all 0.3s;
}
.ccgauto-service-vente__engagement--container .box:hover::before {
  top: 20%;
  opacity: 1;
}
.ccgauto-service-vente__engagement--container .box img {
  height: 80px;
  width: auto;
}
.ccgauto-service-vente__engagement--container .box h3 {
  font-size: 20px;
  margin-top: 20px;
  color: white;
}
.ccgauto-service-vente__engagement--container .box p {
  margin-top: 20px;
  font-size: 16px;
  color: white;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-vente__engagement {
    padding: 0;
    height: auto;
    font-size: 20px;
    margin-bottom: 80px;
  }
  .ccgauto-service-vente__engagement--container {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .ccgauto-service-vente__engagement--container .box {
    height: auto;
  }
}

.ccgauto-service-vente__about {
  max-width: 1640px;
  margin: 0 auto;
  color: white;
  padding: 0 4% 80px;
  position: relative;
  z-index: 2;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1800px) {
  .ccgauto-service-vente__about {
    padding-left: 20%;
    padding-right: 4%;
  }
}
.ccgauto-service-vente__about h2 {
  max-width: 600px;
}
.ccgauto-service-vente__about--container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 40px;
}
.ccgauto-service-vente__about--container .box {
  color: black;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.ccgauto-service-vente__about--container .box::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 86px;
  left: 0;
  top: 80%;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(0deg, rgba(59, 56, 65, 0) 22.4%, #0194FF 60.94%, rgba(59, 56, 65, 0));
  transition: top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s linear;
  will-change: transform, opacity;
}
.ccgauto-service-vente__about--container .box:hover {
  background-color: #171717;
  transition: all 0.3s;
}
.ccgauto-service-vente__about--container .box:hover::before {
  top: 20%;
  opacity: 1;
}
.ccgauto-service-vente__about--container .box img {
  height: 80px;
  width: auto;
}
.ccgauto-service-vente__about--container .box h3 {
  font-size: 20px;
  margin-top: 20px;
  color: white;
}
.ccgauto-service-vente__about--container .box p {
  margin-top: 20px;
  font-size: 16px;
  color: white;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-vente__about {
    padding: 0;
    height: auto;
    font-size: 20px;
    margin-bottom: 0px;
  }
  .ccgauto-service-vente__about--container {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .ccgauto-service-vente__about--container .box {
    height: auto;
  }
}

.ccgauto-service-vente__offre {
  padding: 120px 4% 120px;
  max-width: 1640px;
  margin: 0 auto;
}
.ccgauto-service-vente__offre h2 {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.ccgauto-service-vente__offre--container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}
.ccgauto-service-vente__offre--container .pricing {
  padding: 30px 20px;
  width: 100%;
  background-color: white;
  box-shadow: 0px 0px 10px 0px rgba(168, 168, 168, 0.5);
  border-radius: 20px;
}
.ccgauto-service-vente__offre--container .pricing h3 {
  text-align: center;
  font-size: 32px;
}
.ccgauto-service-vente__offre--container .pricing-desc {
  text-align: center;
  max-width: 450px;
  margin: 10px auto 0;
}
.ccgauto-service-vente__offre--container .pricing-container {
  margin-top: 60px;
}
.ccgauto-service-vente__offre--container .pricing-container p {
  display: flex;
  align-items: center;
  border-bottom: solid 2px #F5F5F7;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.ccgauto-service-vente__offre--container .pricing-container p img {
  margin-right: 10px;
  height: 20px;
}
.ccgauto-service-vente__offre--container .pricing-container p:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.ccgauto-service-vente__offre button {
  display: block;
  width: max-content;
  margin: 50px auto 0;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-vente__offre {
    padding: 120px 6%;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-vente__offre {
    padding: 80px 4%;
  }
  .ccgauto-service-vente__offre--container {
    grid-template-columns: 1fr;
  }
  .ccgauto-service-vente__offre--container .pricing h3 {
    font-size: 22px;
  }
}

.ccgauto-service-vente__form h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: white;
}
.ccgauto-service-vente__form--section {
  margin-bottom: 60px;
  border: solid white 1px;
  padding: 20px;
  position: relative;
}
.ccgauto-service-vente__form--section:last-child {
  margin-bottom: 0;
}
.ccgauto-service-vente__form--section span {
  position: absolute;
  top: -14px;
  background-color: #181818;
  color: white;
  font-size: 20px;
  display: block;
  padding: 0 12px;
}
.ccgauto-service-vente__form--section .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 40px;
}
.ccgauto-service-vente__form--section .submit {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .ccgauto-service-vente__form h2 {
    font-size: 24px;
    max-width: 80%;
  }
}

.ccgauto-service-achat__body {
  background-color: white;
}
.ccgauto-service-achat__main {
  background-color: black;
  border-radius: 0 0 20px 20px;
}
.ccgauto-service-achat__svg {
  position: relative;
  margin: 0 auto;
}
.ccgauto-service-achat__svg svg {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ccgauto-service-achat__svg path {
  stroke-width: 30px;
}
@media screen and (min-width: 1800px) {
  .ccgauto-service-achat__svg svg {
    display: none;
  }
}
.ccgauto-service-achat__cta h3 {
  max-width: 70%;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-achat__svg {
    width: 100%;
    padding: 0 6% 80px;
  }
  .ccgauto-service-achat__svg svg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-achat__svg {
    padding: 0 4% 80px;
  }
}

.ccgauto-service-achat__hero {
  max-width: 1640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 140px;
  margin: auto;
  color: white;
}
@media screen and (min-width: 1800px) {
  .ccgauto-service-achat__hero {
    align-items: center;
    text-align: center;
  }
  .ccgauto-service-achat__hero h1, .ccgauto-service-achat__hero p {
    max-width: 800px;
  }
}
@media screen and (max-width: 1800px) {
  .ccgauto-service-achat__hero h1, .ccgauto-service-achat__hero p {
    max-width: 600px;
  }
}
@media screen and (max-width: 1640px) {
  .ccgauto-service-achat__hero {
    padding: 180px 4% 160px;
  }
}
.ccgauto-service-achat__hero h1 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 700;
}
.ccgauto-service-achat__hero p {
  margin-bottom: 30px;
}
.ccgauto-service-achat__hero a {
  display: block;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-achat__hero {
    height: auto;
    padding: 180px 0 120px;
    margin-bottom: 0;
  }
  .ccgauto-service-achat__hero h1 {
    font-size: 36px;
  }
  .ccgauto-service-achat__hero p {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-achat__hero {
    height: auto;
    padding: 120px 0 80px;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-service-achat__hero h1 {
    font-size: 32px;
  }
}

.ccgauto-service-achat__catalogue {
  max-width: 1640px;
  margin: 0 auto;
  color: white;
  position: relative;
  z-index: 2;
  margin-bottom: 120px;
}
@media screen and (max-width: 1800px) {
  .ccgauto-service-achat__catalogue {
    padding-left: 20%;
    padding-right: 4%;
  }
}
.ccgauto-service-achat__catalogue--container {
  margin-top: 40px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.ccgauto-service-achat__catalogue .ccgauto-btn {
  display: block;
  margin: 0 auto;
  width: max-content;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-achat__catalogue {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 120px;
  }
  .ccgauto-service-achat__catalogue h2 {
    text-align: center;
  }
  .ccgauto-service-achat__catalogue--container {
    height: 100%;
    margin: 40px auto 0;
    max-width: 768px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-achat__catalogue {
    margin-bottom: 90px;
  }
  .ccgauto-service-achat__catalogue--container {
    max-width: 100%;
  }
}

.ccgauto-service-achat__about {
  max-width: 1640px;
  margin: 0 auto;
  color: white;
  padding: 0 4% 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1800px) {
  .ccgauto-service-achat__about {
    padding-left: 20%;
    padding-right: 4%;
  }
}
.ccgauto-service-achat__about h2 {
  max-width: 700px;
  margin-bottom: 30px;
}
.ccgauto-service-achat__about--container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}
.ccgauto-service-achat__about--container .box {
  height: 300px;
  width: calc(33.33% - 30px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
  position: relative;
}
.ccgauto-service-achat__about--container .box img {
  height: 70px;
}
.ccgauto-service-achat__about--container .box span {
  font-weight: 700;
  font-size: 20px;
  margin: 20px 0;
}
.ccgauto-service-achat__about--container .box::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 86px;
  left: 0;
  top: 80%;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(0deg, rgba(59, 56, 65, 0) 22.4%, #0194FF 60.94%, rgba(59, 56, 65, 0));
  transition: top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s linear;
  will-change: transform, opacity;
}
.ccgauto-service-achat__about--container .box:hover {
  background-color: #171717;
  transition: all 0.3s;
}
.ccgauto-service-achat__about--container .box:hover::before {
  top: 20%;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-achat__about {
    padding-left: 0;
    padding-right: 0;
    height: 100%;
    margin-bottom: 80px;
  }
  .ccgauto-service-achat__about--container {
    gap: 20px;
  }
  .ccgauto-service-achat__about--container .box {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-service-achat__about {
    height: 100%;
    margin-bottom: 60px;
  }
  .ccgauto-service-achat__about--container {
    gap: 20px;
  }
  .ccgauto-service-achat__about--container .box {
    width: 100%;
    padding: 10px 20px;
    height: max-content;
  }
}

.ccgauto-service-leasing__body {
  background-color: #F5F5F7;
}
.ccgauto-service-leasing__main {
  background-color: black;
  border-radius: 0 0 20px 20px;
}
.ccgauto-service-leasing__svg {
  position: relative;
  margin: 0 auto;
}
.ccgauto-service-leasing__svg svg {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ccgauto-service-leasing__svg path {
  stroke-width: 30px;
}
@media screen and (min-width: 1800px) {
  .ccgauto-service-leasing__svg svg {
    display: none;
  }
}
.ccgauto-service-leasing__cta {
  background-color: initial;
}
.ccgauto-service-leasing__cta h3 {
  max-width: 70%;
}
@media screen and (max-width: 1440px) {
  .ccgauto-service-leasing__svg {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-leasing__svg {
    width: 100%;
    padding: 0 6% 80px;
  }
  .ccgauto-service-leasing__svg svg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-leasing__svg {
    padding: 0 4% 80px;
  }
}

.ccgauto-service-leasing__hero {
  max-width: 1640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 140px;
  margin: auto;
  color: white;
}
@media screen and (min-width: 1800px) {
  .ccgauto-service-leasing__hero {
    align-items: center;
    text-align: center;
  }
  .ccgauto-service-leasing__hero h1,
.ccgauto-service-leasing__hero p {
    max-width: 800px;
  }
}
@media screen and (max-width: 1800px) {
  .ccgauto-service-leasing__hero h1,
.ccgauto-service-leasing__hero p {
    max-width: 600px;
  }
}
@media screen and (max-width: 1640px) {
  .ccgauto-service-leasing__hero {
    padding: 180px 4% 160px;
  }
}
.ccgauto-service-leasing__hero h1 {
  font-size: 48px;
  max-width: 600px;
  margin-bottom: 30px;
  font-weight: 700;
}
.ccgauto-service-leasing__hero p {
  max-width: 500px;
  margin-bottom: 30px;
}
.ccgauto-service-leasing__hero a {
  display: block;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-leasing__hero {
    height: auto;
    padding: 180px 0 120px;
    margin-bottom: 0;
  }
  .ccgauto-service-leasing__hero h1 {
    font-size: 36px;
  }
  .ccgauto-service-leasing__hero p {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-leasing__hero {
    height: auto;
    padding: 120px 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-service-leasing__hero h1 {
    font-size: 32px;
  }
}

.ccgauto-service-leasing__catalogue {
  max-width: 1640px;
  margin: 0 auto;
  color: white;
  padding: 0 4% 80px;
  position: relative;
  z-index: 2;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1800px) {
  .ccgauto-service-leasing__catalogue {
    padding-left: 20%;
    padding-right: 4%;
    padding-top: 80px;
  }
}
.ccgauto-service-leasing__catalogue--container {
  margin-top: 40px;
  width: 100%;
  height: 700px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row: 1fr;
  grid-gap: 30px;
}
.ccgauto-service-leasing__catalogue .ccgauto-btn {
  display: block;
  margin: 0 auto;
  width: max-content;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-leasing__catalogue {
    padding-left: 0;
    padding-right: 0;
    padding-top: 40px;
    margin-bottom: 120px;
  }
  .ccgauto-service-leasing__catalogue--container {
    height: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-service-leasing__catalogue {
    margin-bottom: 0px;
  }
  .ccgauto-service-leasing__catalogue h2 {
    text-align: center;
  }
  .ccgauto-service-leasing__catalogue--container {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}

.ccgauto-service-leasing__about {
  max-width: 1640px;
  margin: 0 auto;
  color: white;
  padding: 0 4% 80px;
  position: relative;
  z-index: 2;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1800px) {
  .ccgauto-service-leasing__about {
    padding-left: 20%;
    padding-right: 4%;
  }
}
.ccgauto-service-leasing__about h2 {
  max-width: 600px;
  margin-bottom: 30px;
}
.ccgauto-service-leasing__about--container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}
.ccgauto-service-leasing__about--container .box {
  height: 300px;
  width: calc(33.33% - 30px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
  position: relative;
}
.ccgauto-service-leasing__about--container .box::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 86px;
  left: 0;
  top: 80%;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(0deg, rgba(59, 56, 65, 0) 22.4%, #0194FF 60.94%, rgba(59, 56, 65, 0));
  transition: top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s linear;
  will-change: transform, opacity;
}
.ccgauto-service-leasing__about--container .box:hover::before {
  top: 20%;
  opacity: 1;
}
.ccgauto-service-leasing__about--container .box img {
  height: 70px;
}
.ccgauto-service-leasing__about--container .box span {
  font-weight: 700;
  font-size: 20px;
  margin: 20px 0;
}
.ccgauto-service-leasing__about--container .box:hover {
  background-color: #171717;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-leasing__about {
    padding-left: 0;
    padding-right: 0;
    height: 100%;
    margin-bottom: 80px;
  }
  .ccgauto-service-leasing__about--container {
    gap: 20px;
  }
  .ccgauto-service-leasing__about--container .box {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-service-leasing__about {
    height: 100%;
    margin-bottom: 60px;
  }
  .ccgauto-service-leasing__about--container {
    gap: 20px;
  }
  .ccgauto-service-leasing__about--container .box {
    width: 100%;
    padding: 10px 20px;
    height: max-content;
  }
}

.ccgauto-service-convoyage__main {
  background-color: #F5F5F7;
}

.ccgauto-service-convoyage__global {
  background-color: black;
  width: 100%;
}
.ccgauto-service-convoyage__container {
  position: relative;
  margin: 0 auto;
}
.ccgauto-service-convoyage__container svg {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ccgauto-service-convoyage__container path {
  stroke-width: 30px;
}
@media screen and (min-width: 1800px) {
  .ccgauto-service-convoyage__container svg {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-convoyage__container {
    padding: 0 6% 80px;
  }
  .ccgauto-service-convoyage__container svg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-convoyage__container {
    padding: 0 4% 80px;
  }
}

.ccgauto-service-convoyage__hero {
  max-width: 92%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 12vh auto 80px;
  min-height: 80vh;
  color: white;
  align-items: center;
  text-align: center;
  background-image: url("/static/img/service-convoyage-2.webp");
  background-attachment: fixed;
  border-radius: 12px;
  background-size: cover;
}
.ccgauto-service-convoyage__hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 12px;
}
.ccgauto-service-convoyage__hero h1 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 700;
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.ccgauto-service-convoyage__hero p {
  margin-bottom: 30px;
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.ccgauto-service-convoyage__hero button {
  display: block;
  width: max-content;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-convoyage__hero {
    height: auto;
    padding: 4%;
  }
  .ccgauto-service-convoyage__hero h1 {
    font-size: 36px;
  }
  .ccgauto-service-convoyage__hero p {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-convoyage__hero {
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-service-convoyage__hero h1 {
    font-size: 32px;
  }
}

.ccgauto-service-convoyage__about {
  max-width: 1640px;
  margin: 0 auto;
  color: white;
  padding: 0 4% 80px;
  position: relative;
  z-index: 2;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: black;
}
.ccgauto-service-convoyage__about--content {
  width: 40%;
  padding-right: 6%;
}
.ccgauto-service-convoyage__about--content h2 {
  color: white;
  font-size: 36px;
}
.ccgauto-service-convoyage__about--content p {
  color: white;
  font-size: 18px;
  margin-top: 20px;
}
.ccgauto-service-convoyage__about--steps {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.ccgauto-service-convoyage__about--steps div {
  flex: 1;
  height: 350px;
  background-color: #171717;
  transition: flex-grow 0.7s;
  border-radius: 8px;
  padding: 20px;
  border: solid 1px #171717;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-service-convoyage__about--steps div .img-default {
  height: 36px;
  width: auto;
}
.ccgauto-service-convoyage__about--steps div .img-active {
  opacity: 0;
  height: 0;
  width: 0;
  transition: all 0.7s;
}
.ccgauto-service-convoyage__about--steps div.active {
  flex-grow: 5;
  transition: all 0.7s;
  border: dashed 1px #0194FF;
}
.ccgauto-service-convoyage__about--steps div.active .img-default {
  display: none;
}
.ccgauto-service-convoyage__about--steps div.active .img-active {
  opacity: 1;
  height: auto;
  width: 100%;
  transition: all 0.7s;
}
.ccgauto-service-convoyage__about--steps div.inactive {
  flex-grow: 0.5;
  background-color: #171717;
  transition: all 0.7s;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-convoyage__about {
    padding: 0;
    height: auto;
  }
  .ccgauto-service-convoyage__about--content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .ccgauto-service-convoyage__about--steps {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-service-convoyage__about {
    display: none;
  }
  .ccgauto-service-convoyage__about--content h2 {
    font-size: 24px;
    text-align: center;
  }
  .ccgauto-service-convoyage__about--content p {
    text-align: center;
  }
  .ccgauto-service-convoyage__about--steps {
    flex-direction: column;
  }
  .ccgauto-service-convoyage__about--steps div {
    margin-bottom: 20px;
  }
}

.ccgauto-service-convoyage__app {
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-service-convoyage__app .container {
  display: flex;
  align-items: center;
  height: 500px;
  width: 100%;
  border-radius: 12px;
  background-color: #151517;
}
.ccgauto-service-convoyage__app .container .right,
.ccgauto-service-convoyage__app .container .left {
  flex: 1;
}
.ccgauto-service-convoyage__app .container .left div {
  text-align: center;
  padding-left: 12%;
}
.ccgauto-service-convoyage__app .container .left div h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}
.ccgauto-service-convoyage__app .container .left div p {
  color: rgb(221, 221, 221);
}
.ccgauto-service-convoyage__app .container .right div {
  padding: 12% 0 12% 16%;
  perspective: 800px;
  overflow: hidden;
}
.ccgauto-service-convoyage__app .container .right div img {
  width: 100%;
  height: auto;
  transform: translateZ(120px) rotateY(-15deg);
  border-radius: 8px 0 0 8px;
  transition: all 0.6s ease;
}
.ccgauto-service-convoyage__app .container .right div img:hover {
  transform: translateZ(0) rotateY(0);
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-convoyage__app {
    padding: 0 0 80px 0;
  }
  .ccgauto-service-convoyage__app .container {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-convoyage__app .container {
    flex-direction: column;
    height: max-content;
  }
  .ccgauto-service-convoyage__app .container .left {
    padding: 40px 20px;
  }
  .ccgauto-service-convoyage__app .container .left div {
    padding-left: 0;
  }
  .ccgauto-service-convoyage__app .container .left div h3 {
    font-size: 24px;
  }
  .ccgauto-service-convoyage__app .container .right {
    padding: 0;
    width: 100%;
  }
  .ccgauto-service-convoyage__app .container .right div {
    padding: 0 0 8% 0px;
    text-align: center;
  }
  .ccgauto-service-convoyage__app .container .right div img {
    width: 90%;
    height: 250px;
    transform: translateZ(0) rotateY(0);
  }
}

.ccgauto-service-convoyage__steps {
  height: max-content;
  background-color: black;
  position: relative;
  padding: 120px 8% 120px;
}
.ccgauto-service-convoyage__steps .scrolling-bar {
  background-color: white;
  width: 5px;
  height: 0%;
  border-radius: 12px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.ccgauto-service-convoyage__steps .spacer {
  height: 260px;
}
.ccgauto-service-convoyage__steps .step {
  position: relative;
}
.ccgauto-service-convoyage__steps .step p {
  font-size: 28px;
  width: 40%;
  color: white;
  font-weight: 500;
}
.ccgauto-service-convoyage__steps .step span {
  opacity: 0.1;
}
.ccgauto-service-convoyage__steps .step-2, .ccgauto-service-convoyage__steps .step-4, .ccgauto-service-convoyage__steps .step-6 {
  display: flex;
  justify-content: flex-end;
}
.ccgauto-service-convoyage__steps .step-indicator {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: black;
  font-size: 48px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-convoyage__steps {
    padding: 120px 6%;
  }
  .ccgauto-service-convoyage__steps .step {
    display: flex;
    flex-direction: column-reverse;
  }
  .ccgauto-service-convoyage__steps .step p {
    width: 100%;
    font-size: 24px;
  }
  .ccgauto-service-convoyage__steps .step-2, .ccgauto-service-convoyage__steps .step-4, .ccgauto-service-convoyage__steps .step-6 {
    justify-content: center;
  }
  .ccgauto-service-convoyage__steps .spacer {
    height: 120px;
  }
  .ccgauto-service-convoyage__steps .step-indicator {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    margin: 0;
    font-size: 36px;
    width: initial;
    height: initial;
    display: block;
    padding-bottom: 20px;
  }
  .ccgauto-service-convoyage__steps .scrolling-bar {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-service-convoyage__steps {
    padding: 120px 4%;
  }
  .ccgauto-service-convoyage__steps .step p {
    font-size: 20px;
  }
  .ccgauto-service-convoyage__steps .spacer {
    height: 80px;
  }
}

.ccgauto-service-convoyage__testimonials {
  position: relative;
  width: 100%;
  background-color: #f5f5f5;
  padding: 120px 0;
}
.ccgauto-service-convoyage__testimonials h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}
.ccgauto-service-convoyage__testimonials h2 span {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #fe2828, #6a9dff);
  -webkit-text-fill-color: transparent;
}
.ccgauto-service-convoyage__testimonials .ccgauto-btn {
  display: block;
  width: max-content;
  margin: 30px auto 0;
  text-align: center;
}
.ccgauto-service-convoyage__testimonials .owl-carousel {
  display: flex;
  align-items: center;
  height: 50%;
}
.ccgauto-service-convoyage__testimonials .owl-carousel .owl-stage-outer {
  padding: 20px 0;
}
.ccgauto-service-convoyage__testimonials .testimonial {
  padding: 40px 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.ccgauto-service-convoyage__testimonials .testimonial div {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ccgauto-service-convoyage__testimonials .testimonial div img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}
.ccgauto-service-convoyage__testimonials .owl-bottom .testimonial div {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-convoyage__testimonials {
    padding: 120px 6%;
  }
  .ccgauto-service-convoyage__testimonials h2 {
    font-size: 32px;
  }
  .ccgauto-service-convoyage__testimonials .owl-carousel {
    display: block;
  }
  .ccgauto-service-convoyage__testimonials .testimonial {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-convoyage__testimonials {
    padding: 120px 4%;
  }
  .ccgauto-service-convoyage__testimonials h2 {
    font-size: 28px;
  }
  .ccgauto-service-convoyage__testimonials .ccgauto-btn {
    width: 100%;
  }
}

.ccgauto-service-convoyage__horizontal {
  background-color: #F5F5F7;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.ccgauto-service-convoyage__horizontal .block {
  position: absolute;
  height: 100vh;
  top: 0;
}
.ccgauto-service-convoyage__horizontal--1 {
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-service-convoyage__horizontal--1 h2 {
  font-size: 58px;
  color: black;
  margin-left: 12%;
  font-weight: 500;
}
.ccgauto-service-convoyage__horizontal--1 h2 span {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #fe2828, #6a9dff);
  -webkit-text-fill-color: transparent;
}
.ccgauto-service-convoyage__horizontal--simple {
  width: 1000px;
  left: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ccgauto-service-convoyage__horizontal--simple .container {
  width: calc(100% - 80px);
  height: 500px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(168, 168, 168, 0.5);
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.6s ease;
}
.ccgauto-service-convoyage__horizontal--simple .container .content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.ccgauto-service-convoyage__horizontal--simple .container .content h3 {
  font-size: 36px;
}
.ccgauto-service-convoyage__horizontal--simple .container .content p {
  width: 80%;
}
.ccgauto-service-convoyage__horizontal--simple .container .content button {
  width: max-content;
}
.ccgauto-service-convoyage__horizontal--simple .container .img {
  width: 40%;
  display: flex;
  align-items: center;
}
.ccgauto-service-convoyage__horizontal--simple .container .img img {
  border-radius: 8px;
  height: 280px;
  width: 100%;
  object-fit: contain;
}
.ccgauto-service-convoyage__horizontal--plateau {
  left: 1500px;
  width: 1000px;
}
.ccgauto-service-convoyage__horizontal--plateau-confidentiel {
  left: 2500px;
  width: 1000px;
}
.ccgauto-service-convoyage__horizontal--plateau, .ccgauto-service-convoyage__horizontal--plateau-confidentiel {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-service-convoyage__horizontal--plateau .container, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container {
  width: calc(100% - 80px);
  height: 500px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(168, 168, 168, 0.5);
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.6s ease;
}
.ccgauto-service-convoyage__horizontal--plateau .container h3, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container h3 {
  font-size: 30px;
  color: black;
  margin-bottom: 40px;
  width: 100%;
}
.ccgauto-service-convoyage__horizontal--plateau .container .left, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ccgauto-service-convoyage__horizontal--plateau .container .left .question, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .left .question {
  border-bottom: 1px solid #F5F5F7;
}
.ccgauto-service-convoyage__horizontal--plateau .container .left .question button, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .left .question button {
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}
.ccgauto-service-convoyage__horizontal--plateau .container .left .question img, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .left .question img {
  margin-left: 8px;
  transform: 0;
  transition: all 0.6s ease;
}
.ccgauto-service-convoyage__horizontal--plateau .container .left .question img.rotate, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .left .question img.rotate {
  transform: rotate(180deg);
  transition: all 0.6s ease;
}
.ccgauto-service-convoyage__horizontal--plateau .container .left .question p, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .left .question p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s ease;
}
.ccgauto-service-convoyage__horizontal--plateau .container .left .question p.show, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .left .question p.show {
  opacity: 1;
  padding-bottom: 20px;
  max-height: initial;
}
.ccgauto-service-convoyage__horizontal--plateau .container .right, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .right {
  width: 50%;
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-service-convoyage__horizontal--plateau .container .right img, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .right img {
  opacity: 0;
  height: 0;
  transition: all 0.6s ease;
}
.ccgauto-service-convoyage__horizontal--plateau .container .right img.active, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .right img.active {
  opacity: 1;
  width: 80%;
  height: auto;
  object-fit: cover;
  transition: all 0.6s ease;
}
.ccgauto-service-convoyage__horizontal--plateau .container:hover, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container:hover {
  box-shadow: 0px 0px 20px 0px rgba(168, 168, 168, 0.5);
  transition: all 0.6s ease;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-convoyage__horizontal {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    overflow: initial;
    padding: 120px 6%;
  }
  .ccgauto-service-convoyage__horizontal .block {
    position: relative;
    height: max-content;
  }
  .ccgauto-service-convoyage__horizontal--1 {
    width: 100%;
  }
  .ccgauto-service-convoyage__horizontal--1 h2 {
    font-size: 48px;
    margin-left: 0;
    text-align: center;
  }
  .ccgauto-service-convoyage__horizontal--plateau, .ccgauto-service-convoyage__horizontal--plateau-confidentiel {
    left: 0;
    width: 100%;
  }
  .ccgauto-service-convoyage__horizontal--plateau .container, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container {
    height: max-content;
    width: 100%;
    padding: 40px 20px;
  }
  .ccgauto-service-convoyage__horizontal--plateau .container h3, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .ccgauto-service-convoyage__horizontal--plateau .container .left, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .left {
    width: 100%;
    margin-bottom: 40px;
  }
  .ccgauto-service-convoyage__horizontal--plateau .container .left .question button, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .left .question button {
    font-size: 16px;
  }
  .ccgauto-service-convoyage__horizontal--plateau .container .right, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .right {
    width: 100%;
    text-align: center;
  }
  .ccgauto-service-convoyage__horizontal--plateau .container .right img.active, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .right img.active {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
  }
  .ccgauto-service-convoyage__horizontal--simple {
    left: 0;
    width: 100%;
    height: max-content;
  }
  .ccgauto-service-convoyage__horizontal--simple .container {
    flex-direction: column;
    width: 100%;
    height: max-content;
    padding: 40px 20px;
    gap: 40px;
  }
  .ccgauto-service-convoyage__horizontal--simple .container .content,
.ccgauto-service-convoyage__horizontal--simple .container .img {
    width: 100%;
  }
  .ccgauto-service-convoyage__horizontal--simple .container .content {
    text-align: center;
  }
  .ccgauto-service-convoyage__horizontal--simple .container .content h3 {
    font-size: 24px;
  }
  .ccgauto-service-convoyage__horizontal--simple .container .content p {
    width: 100%;
  }
  .ccgauto-service-convoyage__horizontal--simple .container .content button {
    margin: auto;
  }
  .ccgauto-service-convoyage__horizontal--simple .container .img {
    justify-content: center;
  }
  .ccgauto-service-convoyage__horizontal--simple .container .img img {
    width: 350px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-convoyage__horizontal {
    padding: 120px 4%;
    gap: 40px;
  }
  .ccgauto-service-convoyage__horizontal--1 h2 {
    font-size: 32px;
  }
  .ccgauto-service-convoyage__horizontal--plateau .container .right img.active, .ccgauto-service-convoyage__horizontal--plateau-confidentiel .container .right img.active {
    max-width: 250px;
    height: 250px;
  }
}

.ccgauto-gardiennage-hero {
  background-color: black;
  padding-top: 13vh;
  padding-bottom: 10vh;
  position: relative;
  z-index: 3;
}
.ccgauto-gardiennage-hero .ccgauto-layout-max {
  position: relative;
}
.ccgauto-gardiennage-hero .image {
  width: 100%;
  height: 350px;
  position: relative;
}
.ccgauto-gardiennage-hero .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
}
.ccgauto-gardiennage-hero .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.ccgauto-gardiennage-hero .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60%;
}
.ccgauto-gardiennage-hero .content h1 {
  font-size: 64px;
  font-weight: 600;
  color: white;
  text-align: center;
}
.ccgauto-gardiennage-hero .content a {
  display: block;
  margin: 30px auto;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .ccgauto-gardiennage-hero .content {
    width: 80%;
  }
  .ccgauto-gardiennage-hero .content h1 {
    font-size: 48px;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-gardiennage-hero .content h1 {
    font-size: 36px;
  }
}

.ccgauto-gardiennage-presentation {
  position: relative;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 600px;
  max-height: 600px;
}
.ccgauto-gardiennage-presentation .content {
  width: 50%;
}
.ccgauto-gardiennage-presentation .content h2 {
  color: white;
  font-size: 54px;
  max-width: 90%;
  font-weight: 500;
}
.ccgauto-gardiennage-presentation .content p {
  color: white;
  font-size: 20px;
  margin-top: 20px;
  max-width: 80%;
}
.ccgauto-gardiennage-presentation .content a {
  margin-top: 30px;
}
.ccgauto-gardiennage-presentation .slider {
  width: 50%;
  height: 450px;
  overflow: hidden;
  perspective: 1000px;
}
.ccgauto-gardiennage-presentation .slide {
  height: 100%;
  border-radius: 12px;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  opacity: 0;
  background-color: rgb(15, 15, 15);
  border: solid rgb(20, 20, 20) 2px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.ccgauto-gardiennage-presentation .slide img {
  height: 90px;
  width: auto;
}
.ccgauto-gardiennage-presentation .slide h3 {
  font-size: 32px;
  font-weight: 500;
  margin: 20px 0;
}
.ccgauto-gardiennage-presentation .slide p {
  font-size: 18px;
  line-height: 1.4;
}
.ccgauto-gardiennage-presentation .slide:first-child {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .ccgauto-gardiennage-presentation {
    padding: 0 6% 80px;
    min-height: initial;
    max-height: initial;
    height: 100%;
    flex-direction: column;
    gap: 60px;
  }
  .ccgauto-gardiennage-presentation .content {
    width: 100%;
    text-align: center;
  }
  .ccgauto-gardiennage-presentation .content h2 {
    font-size: 32px;
    max-width: 100%;
  }
  .ccgauto-gardiennage-presentation .content p {
    max-width: 100%;
  }
  .ccgauto-gardiennage-presentation .slider {
    height: initial;
    perspective: initial;
    width: 100%;
    overflow: initial;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .ccgauto-gardiennage-presentation .slide {
    position: initial;
    opacity: 1;
  }
  .ccgauto-gardiennage-presentation .slide img {
    height: 70px;
  }
  .ccgauto-gardiennage-presentation .slide h3 {
    font-size: 24px;
  }
  .ccgauto-gardiennage-presentation .slide p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-gardiennage-presentation {
    padding: 0 4% 80px;
  }
}

.ccgauto-gardiennage-container__horizontal {
  background-color: #F5F5F7;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.ccgauto-gardiennage-container__horizontal .block {
  position: absolute;
  height: 100vh;
  top: 0;
}
.ccgauto-gardiennage-container__horizontal--1 {
  width: 650px;
}
.ccgauto-gardiennage-container__horizontal--2 {
  left: 650px;
  width: 1000px;
}
.ccgauto-gardiennage-container__horizontal--3 {
  left: 1650px;
  width: 1000px;
}
.ccgauto-gardiennage-container__horizontal--4 {
  left: 2650px;
  width: 1200px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-gardiennage-container__horizontal {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: initial;
    padding: 80px 6%;
  }
  .ccgauto-gardiennage-container__horizontal .block {
    position: relative;
    height: max-content;
  }
  .ccgauto-gardiennage-container__horizontal--1 {
    width: 100%;
  }
  .ccgauto-gardiennage-container__horizontal--2, .ccgauto-gardiennage-container__horizontal--3 {
    left: 0;
    width: 100%;
    min-width: initial;
  }
  .ccgauto-gardiennage-container__horizontal--4 {
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-gardiennage-container__horizontal {
    padding: 80px 4%;
  }
}

.ccgauto-gardiennage-container__horizontal--1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-gardiennage-container__horizontal--1 h2 {
  font-size: 58px;
  color: black;
  margin-left: 80px;
  font-weight: 500;
}
.ccgauto-gardiennage-container__horizontal--1 h2 span {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #fe2828, #6a9dff);
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1024px) {
  .ccgauto-gardiennage-container__horizontal--1 h2 {
    margin-left: 0;
    font-size: 32px;
  }
}

.ccgauto-gardiennage-container__horizontal--2,
.ccgauto-gardiennage-container__horizontal--3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .ccgauto-gardiennage-container__horizontal--2,
.ccgauto-gardiennage-container__horizontal--3 {
    align-items: initial;
  }
}

.ccgauto-gardiennage-container__horizontal--2 h3 span {
  color: #fe2828;
}

.ccgauto-gardiennage-container__horizontal--3 h3 span {
  color: #5bb2ff;
}

.ccgauto-gardiennage-container__horizontal--card .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.ccgauto-gardiennage-container__horizontal--card .container .card {
  width: max-content;
  max-width: 800px;
  background: url("/static/img/service-gardiennage.webp");
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0px 0px 10px 0px rgba(200, 200, 200, 0.5);
  position: relative;
  border-radius: 12px;
  height: 500px;
  display: flex;
  align-items: center;
}
.ccgauto-gardiennage-container__horizontal--card .container .card::after {
  border-radius: 12px;
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ccgauto-gardiennage-container__horizontal--card .container .card .content {
  position: relative;
  z-index: 1;
}
.ccgauto-gardiennage-container__horizontal--card .container .card h3 {
  font-size: 36px;
  color: white;
  position: relative;
  margin-bottom: 30px;
}
.ccgauto-gardiennage-container__horizontal--card .container .card ul {
  position: relative;
  z-index: 1;
  color: white;
  padding-left: 20px;
  margin-bottom: 30px;
}
.ccgauto-gardiennage-container__horizontal--card .container .card ul li {
  margin-bottom: 10px;
  font-size: 18px;
}
.ccgauto-gardiennage-container__horizontal--card .container .card ul li:last-child {
  margin-bottom: 0;
}
.ccgauto-gardiennage-container__horizontal--card .container .card:hover {
  box-shadow: 0px 0px 20px 0px rgba(168, 168, 168, 0.5);
  transition: all 0.6s ease;
}
.ccgauto-gardiennage-container__horizontal--card .container .card .card-footer span {
  text-align: center;
  display: block;
  font-size: 18px;
  color: black;
  font-weight: 600;
  margin-bottom: 20px;
}
.ccgauto-gardiennage-container__horizontal--card .container .card .card-footer .swiper-wrapper img {
  height: 30px;
  width: auto;
  margin-right: 10px;
}
.ccgauto-gardiennage-container__horizontal--card .container .card .card-footer .proof-testimonial {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  gap: 10px;
}
.ccgauto-gardiennage-container__horizontal--card .container .card .card-footer .proof-testimonial img {
  height: 30px;
  width: auto;
}
.ccgauto-gardiennage-container__horizontal--card .ccgauto-btn {
  display: block;
  width: max-content;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .ccgauto-gardiennage-container__horizontal--card .container {
    gap: 0;
  }
  .ccgauto-gardiennage-container__horizontal--card .container .card {
    width: 100%;
    max-width: initial;
    height: 100%;
  }
  .ccgauto-gardiennage-container__horizontal--card .container .card:nth-child(1) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-gardiennage-container__horizontal--card .container .card h3 {
    font-size: 24px;
  }
  .ccgauto-gardiennage-container__horizontal--card .container .card ul li {
    font-size: 16px;
  }
}

.ccgauto-gardiennage-container__horizontal--4 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services {
  width: calc(100% - 80px);
  height: 500px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0px 0px 10px 0px rgba(168, 168, 168, 0.5);
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.6s ease;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services h3 {
  font-size: 30px;
  color: black;
  margin-bottom: 40px;
  width: 100%;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left .question {
  border-bottom: 1px solid #F5F5F7;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left .question button {
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left .question img {
  margin-left: 8px;
  transform: 0;
  transition: all 0.6s ease;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left .question img.rotate {
  transform: rotate(180deg);
  transition: all 0.6s ease;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left .question p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s ease;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left .question p a {
  color: #0194FF;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left .question p.show {
  opacity: 1;
  padding-bottom: 20px;
  max-height: initial;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .right {
  width: 40%;
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .right img {
  opacity: 0;
  height: 0;
  transition: all 0.6s ease;
  border-radius: 12px;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .right img.active {
  border: solid #F5F5F7 1px;
  width: 80%;
  height: 300px;
  opacity: 1;
  object-fit: cover;
  transition: all 0.6s ease;
}
.ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services:hover {
  box-shadow: 0px 0px 20px 0px rgba(168, 168, 168, 0.5);
  transition: all 0.6s ease;
}
@media screen and (max-width: 1024px) {
  .ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services {
    width: 100%;
    padding: 40px;
    height: 100%;
  }
  .ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left {
    width: 100%;
    margin-bottom: 40px;
  }
  .ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left .question button {
    font-size: 16px;
  }
  .ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .right {
    width: 100%;
    text-align: center;
  }
  .ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .right img.active {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services {
    padding: 20px;
  }
  .ccgauto-gardiennage-container__horizontal--4 .ccgauto-gardiennage-services .left .question button {
    font-size: 14px;
  }
}

.ccgauto-service-hero {
  background-color: black;
  padding-top: 10vh;
  padding-bottom: 80px;
  position: relative;
  z-index: 3;
}
.ccgauto-service-hero .image {
  height: 80vh;
  max-height: 650px;
  min-height: 650px;
  width: 100%;
  position: relative;
}
.ccgauto-service-hero .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 12px;
}
.ccgauto-service-hero .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.ccgauto-service-hero .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -90%);
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ccgauto-service-hero .title h1 {
  font-size: 64px;
  font-weight: 600;
  color: white;
  text-align: center;
  max-width: 80%;
  margin-bottom: 30px;
}
.ccgauto-service-hero .items {
  position: absolute;
  bottom: 140px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ccgauto-service-hero .items div {
  width: 100%;
  padding: 30px;
  position: relative;
  text-align: center;
}
.ccgauto-service-hero .items div:nth-child(2)::before {
  content: "";
  height: 70%;
  width: 2px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ccgauto-service-hero .items div:nth-child(2)::after {
  content: "";
  height: 70%;
  width: 2px;
  background-color: white;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ccgauto-service-hero .items div h2 {
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}
.ccgauto-service-hero .items div p {
  font-size: 16px;
  color: white;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-hero .title h1 {
    font-size: 52px;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-hero {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 13vh 4%;
  }
  .ccgauto-service-hero::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.3) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }
  .ccgauto-service-hero .image {
    display: none;
  }
  .ccgauto-service-hero .title {
    position: relative;
    top: 0;
    left: 0;
    transform: initial;
    width: 100%;
    align-items: flex-start;
  }
  .ccgauto-service-hero .title h1 {
    font-size: 48px;
    width: 100%;
    max-width: 100%;
  }
  .ccgauto-service-hero .title .ccgauto-btn {
    margin: auto;
  }
  .ccgauto-service-hero .items {
    margin-top: 30px;
    position: relative;
    left: 0;
    top: 0;
    z-index: 2;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .ccgauto-service-hero .items div {
    padding: 30px 0;
    text-align: center;
  }
  .ccgauto-service-hero .items div:nth-child(2)::before {
    height: 2px;
    width: 100%;
    left: 0;
    top: 0;
    transform: initial;
  }
  .ccgauto-service-hero .items div:nth-child(2)::after {
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
    top: initial;
    transform: initial;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-service-hero .title h1 {
    font-size: 40px;
  }
}

.ccgauto-service-hero .items,
.ccgauto-service-hero .ccgauto-btn {
  opacity: 0;
  transform: translateY(20px);
}

@media screen and (max-width: 768px) {
  .ccgauto-service-autres.ccgauto-layout-max {
    padding: 0;
  }
  .ccgauto-service-evenement .ccgauto-service-hero {
    background-image: url("/static/img/service-event-2.webp");
  }
  .ccgauto-service-detailing .ccgauto-service-hero {
    background-image: url("/static/img/service-detailing.webp");
  }
  .ccgauto-service-meca .ccgauto-service-hero {
    background-image: url("/static/img/service-meca.webp");
  }
  .ccgauto-service-gestion .ccgauto-service-hero {
    background-image: url("/static/img/service-gestion.webp");
  }
  .ccgauto-service-mad .ccgauto-service-hero {
    background-image: url("/static/img/service-mad.webp");
  }
  .ccgauto-service-voiturier .ccgauto-service-hero {
    background-image: url("/static/img/service-voiturier.webp");
  }
}
.ccgauto-service-meca-presentation {
  background-color: black;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  padding: 80px 0 60px;
  margin: 0 auto;
  grid-gap: 60px;
}
.ccgauto-service-meca-presentation .column {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  position: relative;
  min-height: 400px;
}
.ccgauto-service-meca-presentation .column::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  display: block;
}
.ccgauto-service-meca-presentation .column:nth-child(1) {
  background-image: url("/static/img/meca_illu_1.webp");
}
.ccgauto-service-meca-presentation .column:nth-child(2) {
  background-image: url("/static/img/meca_illu_2.webp");
}
.ccgauto-service-meca-presentation .column div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  width: max-content;
}
.ccgauto-service-meca-presentation .column div h2 {
  font-size: 38px;
  color: white;
  margin-bottom: 20px;
}
.ccgauto-service-meca-presentation .column div p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}
.ccgauto-service-meca-presentation .column div p img {
  height: 24px;
}
.ccgauto-service-meca-presentation_contact {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-meca-presentation {
    padding: 60px 6%;
  }
  .ccgauto-service-meca-presentation .column div {
    padding: 20px;
    width: 100%;
  }
  .ccgauto-service-meca-presentation .column div h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-meca-presentation {
    padding: 80px 4%;
    grid-template-columns: 1fr;
  }
  .ccgauto-service-meca-presentation .column div h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-meca-presentation .column div h2 {
    font-size: 20px;
  }
}

.ccgauto-service-detailing-presentation {
  position: relative;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-height: 600px;
  min-height: 600px;
}
.ccgauto-service-detailing-presentation .content {
  width: 50%;
}
.ccgauto-service-detailing-presentation .content h2 {
  color: white;
  max-width: 90%;
}
.ccgauto-service-detailing-presentation .content p {
  color: white;
  font-size: 18px;
  margin-top: 20px;
  max-width: 80%;
}
.ccgauto-service-detailing-presentation .content a {
  margin-top: 30px;
}
.ccgauto-service-detailing-presentation .image {
  width: 50%;
}
.ccgauto-service-detailing-presentation .image img {
  border-radius: 12px;
  border: solid rgb(130, 130, 130) 1px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .ccgauto-service-detailing-presentation {
    margin-bottom: 120px;
    height: 100%;
    min-height: initial;
  }
  .ccgauto-service-detailing-presentation .content {
    width: 100%;
    margin-bottom: 40px;
  }
  .ccgauto-service-detailing-presentation .image {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-service-detailing-presentation .content h2 {
    text-align: center;
    max-width: 100%;
  }
  .ccgauto-service-detailing-presentation .content p {
    font-size: 16px;
    max-width: 100%;
    text-align: center;
  }
  .ccgauto-service-detailing-presentation .content a {
    display: block;
    width: max-content;
    margin: 30px auto 0;
  }
}

.ccgauto-detailing-container__horizontal {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  position: relative;
}
.ccgauto-detailing-container__horizontal .block {
  position: absolute;
  height: 100vh;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-detailing-container__horizontal .offre-0 {
  width: 500px;
}
.ccgauto-detailing-container__horizontal .offre-0 h2 {
  font-size: 58px;
  color: white;
  margin-left: 12%;
  font-weight: 500;
}
.ccgauto-detailing-container__horizontal .offre-0 h2 span {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #fe2828, #6a9dff);
  -webkit-text-fill-color: transparent;
}
.ccgauto-detailing-container__horizontal .offre-1 {
  left: 500px;
  width: 700px;
}
.ccgauto-detailing-container__horizontal .offre-2 {
  left: 1200px;
  width: 700px;
}
.ccgauto-detailing-container__horizontal .offre-3 {
  left: 1900px;
  width: 700px;
}
.ccgauto-detailing-container__horizontal .offre-4 {
  left: 2600px;
  width: 700px;
}
.ccgauto-detailing-container__horizontal .offre > div {
  padding-bottom: 20px;
  border: solid #7c7c7c 1px;
  border-radius: 8px;
  background-color: rgb(15, 15, 15);
  color: white;
  width: 600px;
  min-height: 500px;
}
.ccgauto-detailing-container__horizontal .offre > div h3 {
  border-radius: 8px 8px 0 0;
  padding: 8px 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}
.ccgauto-detailing-container__horizontal .offre > div .pricing {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}
.ccgauto-detailing-container__horizontal .offre > div .pricing::after {
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background-color: #7e7e7e;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.ccgauto-detailing-container__horizontal .offre > div .pricing span {
  font-size: 26px;
  display: block;
}
.ccgauto-detailing-container__horizontal .offre > div .introduction {
  padding: 20px;
}
.ccgauto-detailing-container__horizontal .offre > div .details {
  padding: 0 20px;
}
.ccgauto-detailing-container__horizontal .offre > div .details.options p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ccgauto-detailing-container__horizontal .offre > div .details div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ccgauto-detailing-container__horizontal .offre > div .details div img {
  height: 20px;
}
.ccgauto-detailing-container__horizontal .offre > div .details div .interieur {
  color: rgb(0, 206, 0);
}
.ccgauto-detailing-container__horizontal .offre > div .details div .exterieur {
  color: rgb(0, 153, 255);
}
.ccgauto-detailing-container__horizontal .offre > div .pricing-variantes {
  margin-bottom: 20px;
}
.ccgauto-detailing-container__horizontal .offre > div .pricing-variantes table {
  width: calc(100% - 40px);
  text-align: center;
  margin: auto;
}
.ccgauto-detailing-container__horizontal .offre > div .pricing-variantes table,
.ccgauto-detailing-container__horizontal .offre > div .pricing-variantes th,
.ccgauto-detailing-container__horizontal .offre > div .pricing-variantes td {
  border: 1px solid white;
  border-collapse: collapse;
}
.ccgauto-detailing-container__horizontal .offre > div .pricing-variantes td {
  padding: 4px 0px;
}
.ccgauto-detailing-container__horizontal .offre > div .pricing-variantes thead td {
  font-weight: bold;
}
.ccgauto-detailing-container__horizontal .offre .div1 h3 {
  background-color: rgb(42, 158, 42);
}
.ccgauto-detailing-container__horizontal .offre .div2 h3 {
  background-color: rgb(39, 136, 200);
}
.ccgauto-detailing-container__horizontal .offre .div3 h3 {
  background-color: rgb(241, 211, 41);
}
.ccgauto-detailing-container__horizontal .offre .div4 {
  grid-area: 2/1/3/4;
  padding-bottom: 20px;
}
.ccgauto-detailing-container__horizontal .offre .div4 h3 {
  background-color: rgb(159, 44, 96);
}
@media screen and (max-width: 1024px) {
  .ccgauto-detailing-container__horizontal {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: initial;
    padding: 0px 4%;
  }
  .ccgauto-detailing-container__horizontal .block {
    position: relative;
    height: max-content;
  }
  .ccgauto-detailing-container__horizontal .offre-0, .ccgauto-detailing-container__horizontal .offre-1, .ccgauto-detailing-container__horizontal .offre-2, .ccgauto-detailing-container__horizontal .offre-3, .ccgauto-detailing-container__horizontal .offre-4 {
    width: 100%;
    left: 0;
    min-width: initial;
  }
  .ccgauto-detailing-container__horizontal .offre-0 h2 {
    font-size: 32px;
    margin-left: 0;
  }
}

.ccgauto-gestion-container__horizontal {
  background-color: black;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.ccgauto-gestion-container__horizontal .block {
  position: absolute;
  height: 100vh;
  top: 0;
}
.ccgauto-gestion-container__horizontal--1 {
  width: 650px;
}
.ccgauto-gestion-container__horizontal--2 {
  left: 650px;
  width: 1000px;
}
.ccgauto-gestion-container__horizontal--3 {
  left: 1650px;
  width: 1000px;
}
.ccgauto-gestion-container__horizontal--4 {
  left: 2650px;
  width: 1100px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-gestion-container__horizontal {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: initial;
    padding: 80px 6%;
  }
  .ccgauto-gestion-container__horizontal .block {
    position: relative;
    height: max-content;
  }
  .ccgauto-gestion-container__horizontal--1, .ccgauto-gestion-container__horizontal--2, .ccgauto-gestion-container__horizontal--3, .ccgauto-gestion-container__horizontal--4 {
    width: 100%;
    left: 0;
    min-width: initial;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-gestion-container__horizontal {
    padding: 80px 4%;
  }
}

.ccgauto-gestion-container__horizontal--1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ccgauto-gestion-container__horizontal--1 h2 {
  font-size: 58px;
  color: white;
  margin-left: 80px;
  font-weight: 500;
}
.ccgauto-gestion-container__horizontal--1 h2 span {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #fe2828, #6a9dff);
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1024px) {
  .ccgauto-gestion-container__horizontal--1 h2 {
    margin-left: 0;
    font-size: 32px;
  }
}

.faq-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-img .ccgauto-gestion-services {
  width: calc(100% - 80px);
  background-color: #F5F5F7;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(168, 168, 168, 0.5);
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: all 0.6s ease;
}
.faq-img .ccgauto-gestion-services h3 {
  font-size: 30px;
  color: black;
  margin-bottom: 40px;
  width: 100%;
}
.faq-img .ccgauto-gestion-services .left {
  width: calc(100% - 340px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-img .ccgauto-gestion-services .left .question {
  border-bottom: 1px solid #F5F5F7;
}
.faq-img .ccgauto-gestion-services .left .question button {
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}
.faq-img .ccgauto-gestion-services .left .question img {
  margin-left: 8px;
  transform: 0;
  transition: all 0.6s ease;
}
.faq-img .ccgauto-gestion-services .left .question img.rotate {
  transform: rotate(180deg);
  transition: all 0.6s ease;
}
.faq-img .ccgauto-gestion-services .left .question p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s ease;
}
.faq-img .ccgauto-gestion-services .left .question p a {
  color: #0194FF;
}
.faq-img .ccgauto-gestion-services .left .question p.show {
  opacity: 1;
  padding-bottom: 20px;
  max-height: initial;
}
.faq-img .ccgauto-gestion-services .right {
  width: 300px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-img .ccgauto-gestion-services .right img {
  opacity: 0;
  height: 0;
  transition: all 0.6s ease;
  border-radius: 12px;
}
.faq-img .ccgauto-gestion-services .right img.active {
  border: solid #F5F5F7 1px;
  width: 100%;
  height: 300px;
  opacity: 1;
  object-fit: cover;
  transition: all 0.6s ease;
}
.faq-img .ccgauto-gestion-services .right a {
  display: block;
  width: max-content;
  margin: 20px auto 0;
}
.faq-img .ccgauto-gestion-services:hover {
  box-shadow: 0px 0px 20px 0px rgba(168, 168, 168, 0.5);
  transition: all 0.6s ease;
}
@media screen and (max-width: 1024px) {
  .faq-img .ccgauto-gestion-services {
    width: 100%;
    padding: 40px;
    border-radius: 8px;
  }
  .faq-img .ccgauto-gestion-services h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .faq-img .ccgauto-gestion-services .left {
    width: 100%;
    margin-bottom: 40px;
  }
  .faq-img .ccgauto-gestion-services .left .question button {
    font-size: 16px;
  }
  .faq-img .ccgauto-gestion-services .right {
    width: 100%;
    text-align: center;
    flex-direction: column-reverse;
  }
  .faq-img .ccgauto-gestion-services .right a {
    margin-bottom: 30px;
  }
  .faq-img .ccgauto-gestion-services .right img.active {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
  }
}
@media screen and (max-width: 600px) {
  .faq-img .ccgauto-gestion-services {
    padding: 20px;
  }
  .faq-img .ccgauto-gestion-services .left .question button {
    font-size: 14px;
  }
}

.ccgauto-mad-presentation {
  position: relative;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 600px;
  padding: 0 8%;
}
.ccgauto-mad-presentation .content {
  width: 50%;
}
.ccgauto-mad-presentation .content h2 {
  color: white;
  font-size: 54px;
  max-width: 90%;
  font-weight: 500;
}
.ccgauto-mad-presentation .content p {
  color: white;
  font-size: 20px;
  margin-top: 20px;
  max-width: 80%;
}
.ccgauto-mad-presentation .content a {
  margin-top: 30px;
}
.ccgauto-mad-presentation .slider {
  width: 50%;
  height: 450px;
  overflow: hidden;
  perspective: 1000px;
}
.ccgauto-mad-presentation .slide {
  height: 100%;
  border-radius: 12px;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  opacity: 0;
  background-color: rgb(15, 15, 15);
  border: solid rgb(20, 20, 20) 2px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.ccgauto-mad-presentation .slide img {
  height: 90px;
  width: auto;
}
.ccgauto-mad-presentation .slide h3 {
  font-size: 32px;
  font-weight: 500;
  margin: 20px 0;
}
.ccgauto-mad-presentation .slide p {
  font-size: 18px;
  line-height: 1.4;
}
.ccgauto-mad-presentation .slide:first-child {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .ccgauto-mad-presentation {
    padding: 0 6% 80px;
    min-height: initial;
    height: initial;
    flex-direction: column;
    gap: 60px;
  }
  .ccgauto-mad-presentation .content {
    width: 100%;
    text-align: center;
  }
  .ccgauto-mad-presentation .content h2 {
    font-size: 32px;
    min-width: 100%;
  }
  .ccgauto-mad-presentation .slider {
    height: initial;
    perspective: initial;
    width: 100%;
    overflow: initial;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .ccgauto-mad-presentation .slide {
    position: initial;
    opacity: 1;
  }
  .ccgauto-mad-presentation .slide img {
    height: 70px;
  }
  .ccgauto-mad-presentation .slide h3 {
    font-size: 24px;
  }
  .ccgauto-mad-presentation .slide p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-mad-presentation {
    padding: 0 4% 80px;
  }
}

.section-mad-catalogue {
  width: 100%;
}
.section-mad-catalogue h2 {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}
.section-mad-catalogue .grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 1240px) {
  .section-mad-catalogue .grid {
    max-width: 88%;
  }
}
@media screen and (max-width: 1024px) {
  .section-mad-catalogue .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .section-mad-catalogue .grid {
    max-width: 92%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .section-mad-catalogue .grid {
    grid-template-columns: 1fr;
  }
}

.ccgauto-mad-popin {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.ccgauto-mad-popin .close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  z-index: 99;
}
.ccgauto-mad-popin-content {
  background-color: white;
  border-radius: 12px;
  width: 80%;
  max-width: 1000px;
  display: flex;
  position: relative;
}
.ccgauto-mad-popin-left {
  width: 40%;
  padding: 60px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F7;
  border-radius: 12px 0 0 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.ccgauto-mad-popin-left--absolute {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.ccgauto-mad-popin-left span {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
}
.ccgauto-mad-popin-left p {
  color: white;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.ccgauto-mad-popin-left img {
  width: 100%;
  height: auto;
}
.ccgauto-mad-popin-right {
  width: 60%;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
}
.ccgauto-mad-popin form {
  height: 100%;
  display: flex;
  align-items: center;
}
.ccgauto-mad-popin form .label-info {
  padding: 15px 15px 0;
  border: solid #d6d6d6 1px;
  border-radius: 6px;
  margin-bottom: 20px;
  width: 100%;
}
.ccgauto-mad-popin form .label-info p {
  font-weight: 500;
  margin-bottom: 10px;
}
.ccgauto-mad-popin form h3 {
  padding-bottom: 20px;
}
.ccgauto-mad-popin form section {
  display: flex;
  flex-wrap: wrap;
}
.ccgauto-mad-popin form section .form-element {
  width: 100%;
  margin-bottom: 20px;
}
.ccgauto-mad-popin form section .form-element label {
  display: block;
  margin-bottom: 10px;
}
.ccgauto-mad-popin form .form-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}
.ccgauto-mad-popin form input,
.ccgauto-mad-popin form select,
.ccgauto-mad-popin form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #F5F5F7;
  color: black;
  font-size: 16px;
  resize: vertical;
}
.ccgauto-mad-popin form input::placeholder,
.ccgauto-mad-popin form select::placeholder,
.ccgauto-mad-popin form textarea::placeholder {
  color: #c0c0c0;
}
.ccgauto-mad-popin form button {
  margin-top: 20px;
  display: block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .ccgauto-mad-popin {
    z-index: 9999;
    overflow: auto;
  }
  .ccgauto-mad-popin .close {
    position: fixed;
    right: 35px;
  }
  .ccgauto-mad-popin-content {
    border-radius: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
  }
  .ccgauto-mad-popin-left {
    padding: 40px 6%;
    width: 100%;
    border-radius: 0;
    min-height: 400px;
  }
  .ccgauto-mad-popin-right {
    width: 100%;
    padding: 20px;
    border-radius: 0;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-mad-popin form .form-two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: initial;
  }
}

.ccgauto-catalogue {
  background-color: white;
}
.ccgauto-catalogue__intro {
  margin-top: 160px;
  padding: 0px 8% 80px;
  background-color: black;
}
.ccgauto-catalogue__intro h1 {
  color: white;
  font-size: 48px;
  padding-bottom: 20px;
}
.ccgauto-catalogue__intro p {
  color: white;
  max-width: 60%;
}
.ccgauto-catalogue .ccgauto-cta {
  padding: 60px 0;
}
@media screen and (max-width: 1400px) {
  .ccgauto-catalogue__intro {
    padding: 0px 6% 80px;
  }
}
@media screen and (max-width: 1024px) {
  .ccgauto-catalogue__intro {
    padding: 0px 4% 80px;
  }
  .ccgauto-catalogue__intro h1 {
    font-size: 32px;
  }
  .ccgauto-catalogue__intro p {
    max-width: 100%;
  }
}

.ccgauto-catalogue__leasing--container {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 0px 8%;
}
.ccgauto-catalogue__leasing--container-filters {
  position: sticky;
  top: 0;
  align-self: start;
  padding: 20px 40px 40px 0px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ccgauto-catalogue__leasing--container-filters-responsive {
  display: none;
}
.ccgauto-catalogue__leasing--container-filters::after {
  content: "";
  display: block;
  height: calc(100% - 80px);
  width: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #F5F5F7;
}
.ccgauto-catalogue__leasing--container-filters .title {
  font-size: 32px;
  font-weight: 600;
}
.ccgauto-catalogue__leasing--container-filters .category span {
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.ccgauto-catalogue__leasing--container-filters .category .container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
  min-width: 140px;
}
.ccgauto-catalogue__leasing--container-filters .category .container div {
  display: flex;
  justify-content: space-between;
}
.ccgauto-catalogue__leasing--container-filters .category .container div label {
  width: 100%;
  cursor: pointer;
}
.ccgauto-catalogue__leasing--container-filters .category .container div input {
  cursor: pointer;
  margin-right: 10px;
}
.ccgauto-catalogue__leasing--container-cars {
  padding-left: 40px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: max-content;
  grid-gap: 20px;
  position: relative;
}
.ccgauto-catalogue__leasing--container-cars.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ccgauto-catalogue__leasing--container-cars.empty p {
  font-size: 20px;
}
@media screen and (max-width: 1400px) {
  .ccgauto-catalogue__leasing--container {
    padding: 0px 6%;
  }
  .ccgauto-catalogue__leasing--container-cars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .ccgauto-catalogue__leasing--container {
    grid-template-columns: 1fr;
    padding: 0 4%;
    margin-top: 40px;
  }
  .ccgauto-catalogue__leasing--container-filters-responsive {
    top: 0;
    position: sticky;
    z-index: 1;
    align-self: start;
    gap: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px 0px;
    overflow-y: auto;
  }
  .ccgauto-catalogue__leasing--container-filters-responsive select {
    display: block;
    border: none;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    background-color: #F5F5F7;
    color: black;
    border-radius: 5px;
    width: 100%;
    min-width: 200px;
  }
  .ccgauto-catalogue__leasing--container-filters-responsive::after {
    bottom: 0;
    top: auto;
    width: 100%;
    height: 1px;
  }
  .ccgauto-catalogue__leasing--container-filters {
    display: none;
  }
  .ccgauto-catalogue__leasing--container-cars {
    margin-top: 40px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-catalogue__leasing--container-filters-responsive {
    padding: 20px 0px;
  }
  .ccgauto-catalogue__leasing--container-filters-responsive::after {
    display: none;
  }
  .ccgauto-catalogue__leasing--container-cars {
    grid-template-columns: 1fr;
  }
}

.ccgauto-catalogue__achat--container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  position: relative;
}
@media screen and (max-width: 1240px) {
  .ccgauto-catalogue__achat--container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .ccgauto-catalogue__achat--container {
    grid-template-columns: 1fr;
    max-width: 768px;
  }
}
@media screen and (max-width: 880px) {
  .ccgauto-catalogue__achat--container .card-vehicule-achat .content {
    color: black;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-catalogue__achat--container {
    padding: 40px 4%;
    max-width: 100%;
  }
}

.ccgauto-single-car__achat--main {
  background-color: #F5F5F7;
}

.ccgauto-single-car__achat--hero {
  position: relative;
  padding: 90px 4% 40px;
  gap: 40px;
}
@media screen and (max-width: 600px) {
  .ccgauto-single-car__achat--hero {
    padding: 90px 4% 10px;
  }
}
.ccgauto-single-car__achat--hero .container {
  display: flex;
  gap: 20px;
  max-width: 1240px;
  margin: auto;
}
.ccgauto-single-car__achat--hero .container .gallery-main {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.ccgauto-single-car__achat--hero .container .gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}
.ccgauto-single-car__achat--hero .container .gallery-main img:hover {
  transform: scale(1.1);
}
.ccgauto-single-car__achat--hero .container .gallery-container {
  width: 90px;
  height: 400px;
  overflow-y: scroll;
}
.ccgauto-single-car__achat--hero .container .gallery-container::-webkit-scrollbar {
  background-color: #F5F5F7;
  width: 16px;
}
.ccgauto-single-car__achat--hero .container .gallery-container::-webkit-scrollbar-track {
  background-color: #F5F5F7;
}
.ccgauto-single-car__achat--hero .container .gallery-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 16px;
  border: 5px solid #F5F5F7;
}
.ccgauto-single-car__achat--hero .container .gallery-container:hover::-webkit-scrollbar-thumb {
  background-color: #a0a0a5;
}
.ccgauto-single-car__achat--hero .container .gallery-container::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a5;
  border: 4px solid #f4f4f4;
}
.ccgauto-single-car__achat--hero .container .gallery-container::-webkit-scrollbar-button {
  display: none;
}
.ccgauto-single-car__achat--hero .container .gallery-container img {
  height: 90px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .ccgauto-single-car__achat--hero .container .gallery-main,
.ccgauto-single-car__achat--hero .container .gallery-container {
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .ccgauto-single-car__achat--hero .container .gallery-main {
    display: none;
  }
  .ccgauto-single-car__achat--hero .container .gallery-container {
    width: 100%;
    overflow-x: scroll;
    overflow-y: initial;
    height: 200px;
    display: flex;
    gap: 20px;
  }
  .ccgauto-single-car__achat--hero .container .gallery-container img {
    width: 90%;
    height: 100%;
  }
}

.ccgauto-single-car__achat--content {
  background-color: #F5F5F7;
  width: 100%;
  padding: 0 4% 120px;
}
.ccgauto-single-car__achat--content .container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin: auto;
  max-width: 1240px;
}
.ccgauto-single-car__achat--content .car-detail {
  height: max-content;
  position: sticky;
  top: 20px;
  left: 0;
  width: calc(50% - 20px);
}
.ccgauto-single-car__achat--content .car-detail .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px black;
}
.ccgauto-single-car__achat--content .car-detail .title h1 {
  font-size: 32px;
  font-weight: 400;
}
.ccgauto-single-car__achat--content .car-detail .title span {
  font-size: 24px;
  font-weight: 600;
}
.ccgauto-single-car__achat--content .car-detail .desc {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px black;
}
.ccgauto-single-car__achat--content .car-detail .tech {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ccgauto-single-car__achat--content .car-detail .tech p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.ccgauto-single-car__achat--content .car-detail .tech p span {
  font-weight: 600;
  display: block;
  margin-right: 6px;
  min-width: max-content;
}
.ccgauto-single-car__achat--content .contact-form {
  padding: 20px;
  width: calc(50% - 40px);
  border-radius: 6px;
  background-color: white;
}
.ccgauto-single-car__achat--content .contact-form h2 {
  font-size: 24px;
  font-weight: 500;
}
.ccgauto-single-car__achat--content .contact-form form {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ccgauto-single-car__achat--content .contact-form form label {
  width: calc(50% - 10px);
}
.ccgauto-single-car__achat--content .contact-form form label input,
.ccgauto-single-car__achat--content .contact-form form label select,
.ccgauto-single-car__achat--content .contact-form form label textarea {
  margin-top: 10px;
}
.ccgauto-single-car__achat--content .contact-form form label p {
  margin-top: 6px;
  color: red;
  font-size: 12px;
}
.ccgauto-single-car__achat--content .contact-form form input,
.ccgauto-single-car__achat--content .contact-form form select,
.ccgauto-single-car__achat--content .contact-form form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #F5F5F7;
  color: black;
  font-size: 16px;
}
.ccgauto-single-car__achat--content .contact-form form input::placeholder,
.ccgauto-single-car__achat--content .contact-form form select::placeholder,
.ccgauto-single-car__achat--content .contact-form form textarea::placeholder {
  color: #c0c0c0;
}
.ccgauto-single-car__achat--content .contact-form form input[type=range] {
  padding: 0;
}
.ccgauto-single-car__achat--content .contact-form .comments {
  width: 100%;
}
.ccgauto-single-car__achat--content .contact-form .comments textarea {
  min-height: 100px;
  resize: none;
}
.ccgauto-single-car__achat--content .contact-form .submit {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1240px) {
  .ccgauto-single-car__achat--content .car-detail .title h1 {
    font-size: 28px;
  }
  .ccgauto-single-car__achat--content .car-detail .title span {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .ccgauto-single-car__achat--content {
    gap: 0;
    padding: 0 6% 120px;
  }
  .ccgauto-single-car__achat--content .car-detail {
    width: 100%;
    margin-bottom: 20px;
    position: initial;
  }
  .ccgauto-single-car__achat--content .car-detail .title {
    position: sticky;
    padding-top: 10px;
    top: 0px;
    background-color: #F5F5F7;
  }
  .ccgauto-single-car__achat--content .contact-form {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-single-car__achat--content {
    padding: 0 4% 120px;
  }
  .ccgauto-single-car__achat--content .container {
    gap: 20px;
  }
  .ccgauto-single-car__achat--content .car-detail .title {
    flex-direction: column;
    text-align: center;
  }
  .ccgauto-single-car__achat--content .car-detail .title h1 {
    margin-bottom: 10px;
  }
  .ccgauto-single-car__achat--content .car-detail .desc {
    font-size: 14px;
  }
  .ccgauto-single-car__achat--content .car-detail .tech p {
    font-size: 14px;
  }
  .ccgauto-single-car__achat--content .contact-form form label {
    width: 100%;
  }
}

.ccgauto-single-car__leasing {
  background-color: #F5F5F7;
}
.ccgauto-single-car__leasing--hero {
  width: 100%;
  min-height: 300px;
  padding: 120px 8%;
  display: flex;
}
.ccgauto-single-car__leasing--hero .left {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ccgauto-single-car__leasing--hero .left h1 {
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  max-width: 700px;
}
.ccgauto-single-car__leasing--hero .left h1 span {
  display: block;
  font-size: 16px;
  text-align: right;
}
.ccgauto-single-car__leasing--hero .left img {
  max-height: 400px;
  width: auto;
}
.ccgauto-single-car__leasing--hero .left .description {
  max-width: 600px;
  text-align: center;
  font-size: 18px;
}
.ccgauto-single-car__leasing--hero .right {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 20px;
}
.ccgauto-single-car__leasing--hero .right .price {
  font-weight: 600;
}
.ccgauto-single-car__leasing--hero .right p {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
}
.ccgauto-single-car__leasing--hero .right div {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.ccgauto-single-car__leasing--hero .right div p {
  width: 50%;
}
.ccgauto-single-car__leasing--hero .right a {
  text-align: center;
}
.ccgauto-single-car__leasing--contact {
  margin: 0 auto;
  background-color: white;
}
.ccgauto-single-car__leasing--contact .container {
  display: flex;
  flex-wrap: wrap;
  padding: 120px 8%;
}
.ccgauto-single-car__leasing--contact .container .form {
  width: 50%;
  height: 600px;
  padding-right: 20px;
}
.ccgauto-single-car__leasing--contact .container .form h2 {
  font-size: 32px;
  font-weight: 500;
}
.ccgauto-single-car__leasing--contact .container .form p {
  margin: 10px 0 0;
}
.ccgauto-single-car__leasing--contact .container .form form {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ccgauto-single-car__leasing--contact .container .form form label {
  width: calc(50% - 10px);
}
.ccgauto-single-car__leasing--contact .container .form form label input,
.ccgauto-single-car__leasing--contact .container .form form label select,
.ccgauto-single-car__leasing--contact .container .form form label textarea {
  margin-top: 10px;
}
.ccgauto-single-car__leasing--contact .container .form form label p {
  margin-top: 6px;
  color: red;
  font-size: 12px;
}
.ccgauto-single-car__leasing--contact .container .form form input,
.ccgauto-single-car__leasing--contact .container .form form select,
.ccgauto-single-car__leasing--contact .container .form form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #F5F5F7;
  color: black;
  font-size: 16px;
}
.ccgauto-single-car__leasing--contact .container .form form input::placeholder,
.ccgauto-single-car__leasing--contact .container .form form select::placeholder,
.ccgauto-single-car__leasing--contact .container .form form textarea::placeholder {
  color: #c0c0c0;
}
.ccgauto-single-car__leasing--contact .container .form form input[type=range] {
  padding: 0;
}
.ccgauto-single-car__leasing--contact .container .form .comments {
  width: 100%;
}
.ccgauto-single-car__leasing--contact .container .form .comments textarea {
  min-height: 100px;
  resize: none;
}
.ccgauto-single-car__leasing--contact .container .form .submit {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.ccgauto-single-car__leasing--contact .container .img {
  width: 50%;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
}
.ccgauto-single-car__leasing--contact .container .img img {
  object-fit: cover;
}
.ccgauto-single-car__leasing--contact .container .img img:nth-child(1) {
  height: 450px;
  width: calc(80% - 80px);
}
.ccgauto-single-car__leasing--contact .container .img img:nth-child(2) {
  position: absolute;
  left: 40px;
  height: 250px;
  width: auto;
}
@media screen and (max-width: 1240px) {
  .ccgauto-single-car__leasing--hero {
    padding: 80px 5%;
  }
  .ccgauto-single-car__leasing--hero .left h1 {
    font-size: 48px;
  }
  .ccgauto-single-car__leasing--hero .left img {
    max-height: 300px;
  }
  .ccgauto-single-car__leasing--hero .left .description {
    font-size: 16px;
  }
  .ccgauto-single-car__leasing--hero .left .price {
    font-size: 16px;
  }
  .ccgauto-single-car__leasing--hero .right p {
    font-size: 16px;
  }
  .ccgauto-single-car__leasing--hero .right div p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .ccgauto-single-car__leasing--hero {
    flex-direction: column;
  }
  .ccgauto-single-car__leasing--hero .left {
    width: 100%;
    padding: 0 0 20px;
  }
  .ccgauto-single-car__leasing--hero .left h1 {
    font-size: 36px;
  }
  .ccgauto-single-car__leasing--hero .left h1 span {
    font-size: 14px;
    text-align: left;
  }
  .ccgauto-single-car__leasing--hero .left img {
    max-height: 200px;
  }
  .ccgauto-single-car__leasing--hero .left .description {
    font-size: 14px;
  }
  .ccgauto-single-car__leasing--hero .left .price {
    font-size: 14px;
  }
  .ccgauto-single-car__leasing--hero .right {
    width: 100%;
    padding: 20px 0 0;
  }
  .ccgauto-single-car__leasing--hero .right p {
    font-size: 14px;
  }
  .ccgauto-single-car__leasing--hero .right div p {
    font-size: 14px;
  }
  .ccgauto-single-car__leasing--contact .container {
    padding: 80px 5%;
    flex-direction: column-reverse;
  }
  .ccgauto-single-car__leasing--contact .container .form {
    height: 100%;
    width: 100%;
    padding: 0;
  }
  .ccgauto-single-car__leasing--contact .container .form h2 {
    font-size: 24px;
  }
  .ccgauto-single-car__leasing--contact .container .form form label {
    width: 100%;
  }
  .ccgauto-single-car__leasing--contact .container .img {
    width: 100%;
    height: max-content;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .ccgauto-single-car__leasing--contact .container .img img:nth-child(1) {
    height: auto;
    width: 100%;
  }
  .ccgauto-single-car__leasing--contact .container .img img:nth-child(2) {
    position: relative;
    top: -40px;
    left: 0;
    height: 200px;
    width: auto;
  }
}

.ccgauto-legal-main {
  padding: 120px 4%;
}
.ccgauto-legal-main section {
  max-width: 1640px;
  margin: auto;
  color: white;
}
.ccgauto-legal-main section a {
  color: #0194FF;
}
.ccgauto-legal-main section ul {
  padding-inline-start: 2em;
}
.ccgauto-legal-main section li {
  line-height: 1.8;
}
.ccgauto-legal-main section h1 {
  margin-bottom: 1em;
}
.ccgauto-legal-main section h2,
.ccgauto-legal-main section h3 {
  margin: 0.8em 0;
}
.ccgauto-legal-main section p {
  margin-bottom: 0.3em;
  line-height: 1.8;
}

.ccgauto-contact-recherche {
  padding: 110px 0;
}

.ccgauto-contact-recherche__intro {
  color: white;
  text-align: center;
}
.ccgauto-contact-recherche__intro p {
  max-width: 850px;
  margin: 20px auto 0;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-contact-recherche__intro p {
    width: 100%;
    font-size: 16px;
  }
}

.ccgauto-contact-recherche__form {
  max-width: 90%;
  margin: 60px auto 0;
  background-color: white;
  border-radius: 12px;
  padding: 4%;
}
.ccgauto-contact-recherche__form--header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.ccgauto-contact-recherche__form--header div {
  width: 100%;
  padding-bottom: 6px;
  border-bottom: solid 3px #c0c0c0;
}
.ccgauto-contact-recherche__form--header div p {
  color: #c0c0c0;
  font-size: 14px;
}
.ccgauto-contact-recherche__form--header div.active {
  border-color: #0194FF;
}
.ccgauto-contact-recherche__form--header div.active p {
  color: #0194FF;
}
.ccgauto-contact-recherche__form--content {
  overflow: hidden;
  padding-top: 20px;
}
.ccgauto-contact-recherche__form--content .container {
  width: 300%;
  display: flex;
}
.ccgauto-contact-recherche__form--content section {
  width: 33.33%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}
.ccgauto-contact-recherche__form--content section label {
  width: calc(33.33% - 20px);
}
.ccgauto-contact-recherche__form--content section label input,
.ccgauto-contact-recherche__form--content section label select,
.ccgauto-contact-recherche__form--content section label textarea {
  margin-top: 10px;
}
.ccgauto-contact-recherche__form--content section label p {
  margin-top: 6px;
  color: red;
  font-size: 12px;
}
.ccgauto-contact-recherche__form--content section input,
.ccgauto-contact-recherche__form--content section select,
.ccgauto-contact-recherche__form--content section textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #F5F5F7;
  color: black;
  font-size: 16px;
  resize: none;
}
.ccgauto-contact-recherche__form--content section input::placeholder,
.ccgauto-contact-recherche__form--content section select::placeholder,
.ccgauto-contact-recherche__form--content section textarea::placeholder {
  color: #c0c0c0;
}
.ccgauto-contact-recherche__form--content .fwidth-2-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ccgauto-contact-recherche__form--content .fwidth-2-columns label {
  width: 100%;
}
.ccgauto-contact-recherche__form--content .submit {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .ccgauto-contact-recherche__form {
    max-width: 94%;
    padding: 30px;
  }
  .ccgauto-contact-recherche__form--header {
    gap: 16px;
    flex-direction: column;
  }
  .ccgauto-contact-recherche__form--header div {
    padding-bottom: 3px;
  }
  .ccgauto-contact-recherche__form--header div p {
    font-size: 14px;
  }
  .ccgauto-contact-recherche__form--content section label {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .ccgauto-contact-recherche__form--content section {
    flex-direction: column;
  }
  .ccgauto-contact-recherche__form--content section label {
    width: 100%;
  }
  .ccgauto-contact-recherche__form--content .fwidth-2-columns {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
