@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caprasimo&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
}

Body * {
  overflow-y: hidden !important;
}

.footerContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  width: 100vw;
  background-color: #f5f5f5;
  padding-top: 3rem;
  color: black;
  font-family: "Poppins", sans-serif;
}
.footerContainer h3 {
  font-size: 1.5rem;
  color: #c33b20;
}
.footerContainer a {
  color: black;
  text-decoration: none;
  font-size: 1.2rem;
}
.footerContainer a:hover {
  color: #c33b20 !important;
}
.footerContainer .widget {
  width: 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}
.footerContainer .widget div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerContainer .widget div .is-layout-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerContainer .widget div ul {
  width: 100%;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerContainer .widget div form {
  color: #c33b20;
  width: 100%;
}
.footerContainer .widget div form input {
  width: 100%;
  padding: 0.5em;
  margin: 0.5em;
  font-size: 1.5rem;
  border: 1px solid #c33b20;
  border-radius: 5px;
}
.footerContainer .widget div form button {
  background-color: #c33b20;
  border: 1px solid #c33b20;
  border-radius: 5px;
  padding: 15px 0;
  cursor: pointer;
  width: 170px;
  font-size: 1.2rem;
  color: white;
}
.footerContainer .widget div form button:hover {
  background-color: #c33b20;
  color: black;
  border: 1px solid black;
}
.footerContainer .widget .wp-block-column {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column !important;
}
.footerContainer .widget .menu-en-tete-de-page-container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footerContainer .widget .menu-en-tete-de-page-container ul li a {
  color: black;
}
.footerContainer .widget .wp-block-latest-posts__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footerContainer .widget .wp-block-latest-posts__list ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footerContainer .widget .wp-block-latest-posts__list ul li a {
  color: black;
}

@media screen and (max-width: 768px) {
  input {
    width: 100%;
    margin: auto;
  }
  button {
    width: 200px !important;
    margin: 0 !important;
  }
}
header {
  font-family: "Poppins", sans-serif;
  width: 100vw;
  height: 80px;
  background-color: #f5f5f5;
  top: 0;
  transition: all 0.35s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  position: fixed;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
header .containerNav {
  max-width: 1300px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .containerNav .menuB {
  display: flex;
}
header .containerNav .burger {
  display: none;
}
header ul .current-menu-item a {
  color: black;
}
header ul .current-menu-item a:before,
header ul .current-menu-item a:after {
  transform: translate(0%, 0%);
  opacity: 1;
}
header ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
header ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: outside none none;
  padding: 0 1em;
}
header ul li a {
  position: relative;
  text-decoration: none;
  font-size: 20px;
  color: #c33b20;
  padding: 3px 7px;
}
header ul li a::before,
header ul li a::after {
  content: "";
  height: 14px;
  width: 14px;
  position: absolute;
  transition: all 0.35s ease;
  opacity: 0;
}
header ul li a::before {
  content: "";
  right: 0;
  top: 0;
  border-top: 3px solid black;
  border-right: 3px solid #c33b20;
  transform: translate(-100%, 50%);
}
header ul li a:after {
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #c33b20;
  border-left: 3px solid black;
  transform: translate(100%, -50%);
}
header ul li a:hover:before,
header ul li a:hover:after {
  transform: translate(0%, 0%);
  opacity: 1;
}
header ul li a:hover {
  color: black;
}
header form input {
  width: 200px;
  height: 40px;
  border: 1px solid #c33b20;
  border-radius: 5px;
  padding-left: 10px;
}
header form button {
  background-color: #c33b20;
  border: 1px solid #c33b20;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  font-size: 1em;
  color: #f5f5f5;
}
header form button:hover {
  background-color: #c33b20;
  color: black;
  border: 1px solid black;
}
header .site__logo {
  width: 60px;
  height: 65px;
}
header .site__logo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  header .containerNav a {
    margin-left: 0.5em;
  }
  header .containerNav .active {
    left: 0% !important;
  }
  header .containerNav .burger {
    display: block !important;
  }
  header .containerNav .menuB {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    top: 80px;
    height: 100svh;
    left: 100%;
    transition: all 0.3s ease;
    background-color: white;
  }
  header .containerNav .menuB ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 40vh;
    width: 100vw;
  }
  header .containerNav .menuB ul li {
    width: 100%;
  }
  header .containerNav .menuB ul li a {
    font-size: 1.5em;
  }
  header .containerNav .menuB form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 80vw;
  }
  header .containerNav .menuB form input {
    width: 100%;
  }
  header .containerNav .menuB form button {
    width: 80% !important;
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  header .containerNav i {
    font-size: 2em;
    margin: 0.5em;
  }
}
.secondHero {
  background-image: none !important;
  height: 50vh !important;
}
.secondHero h1 {
  width: 100%;
  text-align: center;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

.container__heroes {
  position: relative;
  width: 100vw;
  height: 80vh;
  background-image: url("../../img/backgroundHeros.webp");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  background-color: #ffffff;
}
.container__heroes .card_heroes {
  width: 350px;
  height: 350px;
}
.container__heroes .card_heroes .content_card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.15s ease-out;
}
.container__heroes .card_heroes .content_card img {
  top: 80px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.container__heroes .glossCardHeroes {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  transition: all 0.1s ease-out;
}
.container__heroes h1 {
  font-family: "Caprasimo", cursive;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6em;
  color: #c33b20;
  text-shadow: 4px 4px 0px #000, -3px 0 0px #000, 5px 4px 0 #fff;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 3em !important;
  }
}
.front-page {
  background-color: #ffffff;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 63vh;
}
.front-page .textContainer__frontpage {
  max-width: 50%;
  margin: 2em;
  color: black;
  font-family: "Poppins", sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.5;
  text-align: justify;
  background-color: #ffffff;
  overflow: hidden;
}
.front-page .textContainer__frontpage p {
  margin: 1em 0;
}

.bg-black {
  background-color: black !important;
  color: white !important;
}
.bg-black * {
  background-color: black !important;
  color: white !important;
}

.flex__reverse {
  flex-direction: row-reverse !important;
}

.flex__column {
  flex-direction: column !important;
}

/* part Of Responsive */
@media screen and (max-width: 1280px) {
  .front-page {
    flex-direction: column !important;
  }
  .front-page .textContainer__frontpage {
    max-width: 100%;
    text-align: left;
  }
}
/* part of Car Animation */
.container_positionCenter {
  margin: 2em;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.containerAnimCar {
  position: relative;
  width: 500px;
  height: 500px;
  overflow: hidden;
}

.car {
  position: absolute;
  top: 35%;
  width: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  animation: infinite slideup 3s ease-in-out;
}

.clouds {
  position: absolute;
  width: 100%;
  top: 20%;
  animation: infinite cloudsSlide 9s linear;
}

.ville {
  position: absolute;
  width: 100%;
  top: 20%;
  animation: linear scaleAway 20s infinite;
}

.route {
  position: absolute;
  left: 50%;
  top: 60%;
  max-width: 100%;
  transform: translate(-50%, 0%);
  object-fit: cover;
  animation: infinite moveRoad 3s ease-in-out;
}

/* Animation */
@keyframes cloudsSlide {
  0% {
    transform: translate(-100%);
  }
  50% {
    transform: translate(0%);
  }
  100% {
    transform: translate(100%);
  }
}
@keyframes slideup {
  0% {
    top: 35.2%;
    rotate: 0.1deg;
  }
  50% {
    top: 35%;
    rotate: -0.1deg;
  }
  100% {
    top: 35.2%;
    rotate: 0deg;
  }
}
@keyframes scaleAway {
  0% {
    transform: scale(100%);
  }
  100% {
    transform: scale(10%);
  }
}
@keyframes moveRoad {
  0% {
    transform: translate(-50%, 0%) scaleY(1);
  }
  50% {
    transform: translate(-50%, 2%) scaleY(1.1);
  }
  100% {
    transform: translate(-50%, 0%) scaleY(1);
  }
}
/* Depanage animation */
.containerDepanageAnim {
  overflow-y: hidden;
  position: relative;
  width: 570px !important;
  height: 220px !important;
}

.containerDepanageAnim > img {
  object-fit: contain;
  max-height: 400px;
  max-width: 100%;
}

.characterMecanician {
  position: absolute;
  height: 50%;
  top: 65%;
  left: 25%;
  animation: linear 2s 1 manSlideLeft;
}

.holdingCarDepane {
  position: absolute;
  width: 30%;
  top: 60%;
  left: 23%;
  animation: alternate 6s infinite cubic-bezier(1, 1, 1, 1) holdingDepan;
  animation-delay: 2s;
}

.depaneuse {
  position: absolute;
  width: 40%;
  left: 10%;
  top: 50%;
}

.carOrangeDepanage {
  position: absolute;
  width: 25%;
  top: 70%;
  left: 70%;
  animation: alternate 6s infinite cubic-bezier(1, 1, 1, 1) carDepan;
  animation-delay: 2s;
}

.backgroundDepaneuse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

@keyframes carDepan {
  0% {
    transform: translate(10%, 0);
  }
  20% {
    transform: translate(-60%, -10%) rotateZ(0deg);
  }
  40% {
    transform: translate(-100%, -45%) rotateZ(35deg);
  }
  60% {
    transform: translate(-120%, -65%) rotateZ(15deg);
  }
  80% {
    transform: translate(-150%, -80%) rotateZ(0deg);
  }
  100% {
    transform: translate(-180%, -80%) rotateZ(0deg);
  }
}
@keyframes holdingDepan {
  0% {
    transform: translate(40%);
  }
  20% {
    transform: translate(30%) rotateZ(30deg);
  }
  40% {
    transform: translate(45%) rotateZ(35deg);
  }
  60% {
    transform: translate(30%) rotateZ(15deg);
  }
  80% {
    transform: translate(20%) rotateZ(0deg);
  }
  100% {
    transform: translate(0%, 0);
  }
}
@keyframes manSlideLeft {
  0% {
    transform: translate(0%);
    opacity: 0;
  }
  100% {
    transform: translate(30%);
    opacity: 1;
  }
}
/* animation carSelling */
.carSellingContainer {
  height: 300px;
  width: 300px;
}

.carSelling {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.keyHolder {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: alternate moveKey 4.5s infinite;
}

.carSellingBlue {
  position: absolute;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
  animation: linear moveCarSelling 9s infinite;
}

@keyframes moveCarSelling {
  0% {
    transform: translate(50%, -100%) rotateZ(0deg) rotateY(0deg) scale(0.5);
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translate(-200%, 50%) rotateZ(-10deg) rotateY(40deg) scale(1.4);
  }
}
@keyframes moveKey {
  0% {
    transform: translate(-50%, -60%) rotate(-20deg);
  }
  100% {
    transform: translate(-50%, -60%) rotate(0deg);
    opacity: 0.2;
  }
}
.button-15 {
  background-image: linear-gradient(#ff755d, #c43b20);
  border: 1px solid #c43b20;
  border-radius: 4px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  direction: ltr;
  display: block;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.47059;
  min-width: 30px;
  overflow: visible;
  padding: 4px 15px;
  margin: 1em;
  text-align: center;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}

a {
  text-decoration: none;
}

.button-15:disabled {
  cursor: default;
  opacity: 0.3;
}

.button-15:hover {
  background-image: linear-gradient(#c43b20, #ff755d);
  border-color: #f95a34;
  text-decoration: none;
}

.button-15:active {
  background-image: linear-gradient(#ff755d, #c43b20);
  border-color: #f95a34;
  outline: none;
}

.button-15:focus {
  box-shadow: rgba(255, 117, 93, 0.5019607843) 0 0 0 3px;
  outline: none;
}

@media screen and (max-width: 768px) {
  .button-15 {
    white-space: normal !important;
  }
}
.containerCardCars {
  margin: 2rem auto;
  max-width: 1300px;
  font-family: "Poppins", sans-serif;
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1rem;
  justify-content: space-around;
}

.card {
  display: grid;
  flex-direction: column;
  margin: 2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.card .cardImage {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.card .cardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .cardInfo {
  padding: 10px;
}
.card .cardInfo .cardTitle {
  text-align: center;
  font-size: 20px;
}
.card .cardInfo .cardPrice {
  text-align: center;
  font-size: 20px;
}
.card .cardInfo .carOption {
  padding: 10px;
}
.card .cardInfo .carOption > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.card .cardInfo .carOption h2 {
  text-align: center;
  font-size: 20px;
}
.card .cardInfo .carOption p {
  font-size: 1em;
}
.card .cardInfo .cardButton {
  padding: 10px;
  display: flex;
  justify-content: center;
}
.card .cardInfo .cardButton a {
  text-decoration: none;
}
.card .cardInfo .cardButton a button {
  padding: 0.5em 1.5em;
}

/* Part of media Queries */
@media screen and (max-width: 1280px) {
  .containerCardCars {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .containerCardCars .card {
    margin: 1em;
    min-width: 70%;
  }
}
.containerContact {
  width: 100%;
  height: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 1em;
}
.containerContact div {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.containerContact img {
  margin: 1em;
  width: 50%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}
.containerContact p {
  text-align: center;
  margin-top: 10px;
}
.containerContact h2 {
  color: #c33b20;
}
.containerContact ul {
  margin: 0.5em auto;
}
.containerContact ul li {
  list-style: inside;
}
.containerContact hr {
  width: 50%;
  border: 1px solid black;
  margin: 1em;
}

@media screen and (max-width: 768px) {
  .containerContact {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .containerContact .textContact {
    width: 100%;
  }
  .containerContact .imageThumbnailContact {
    width: 100%;
  }
}
.containerSingleCar {
  margin: 100px auto;
  max-width: 1300px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}
.containerSingleCar .buttonContainerCar {
  padding: 2em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.containerSingleCar button {
  width: 300px;
  margin-bottom: 2em;
  margin-top: 2em;
  margin-bottom: 2em;
  cursor: pointer;
}
.containerSingleCar button a {
  text-decoration: none;
  color: white;
}
.containerSingleCar .sousTitre {
  width: 100%;
  font-size: 1.5em;
  display: flex;
  justify-content: flex-start;
  justify-content: space-between;
}
.containerSingleCar > h1 {
  width: 100%;
  text-align: center;
  font-size: 3em;
  font-family: "Caprasimo", cursive;
  color: #c33b20;
  text-shadow: 4px 4px 0px #e7dddd, 5px 4px 0 #fff;
}
.containerSingleCar .descriptionPost {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  margin-bottom: 1em;
  margin-top: 2em;
  margin-bottom: 2em;
}
.containerSingleCar .requestData {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.containerSingleCar .requestData .imageRequest {
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerSingleCar .requestData .imageRequest .imgCarZoom {
  position: fixed;
  min-width: 90% !important;
  max-height: auto !important;
  transform: scale(1.5);
  z-index: 100;
  transition: all 0.3s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  box-shadow: 0 0 50px black;
  cursor: zoom-out !important;
  animation: visibility 0.3s ease-in;
  margin: 0 !important;
}
.containerSingleCar .requestData .imageRequest .imgCar {
  cursor: zoom-in;
  width: 50%;
  margin: 1em;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px,
    rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}
.containerSingleCar .requestData .descriptionRequest {
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  justify-items: start;
  grid-gap: 1em;
  font-size: 1.5rem;
}
.containerSingleCar .requestData .descriptionRequest p {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.containerSingleCar .requestData .descriptionRequest p i {
  box-shadow: 0 0 3px black;
  color: white;
  background-color: #c33b20;
  border-radius: 50%;
  padding: 0.5em;
  margin: 0.5em;
}
.containerSingleCar .requestData .options {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2em;
}
.containerSingleCar .requestData .options .optionContainerTitle {
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerSingleCar .requestData .options .optionContainerTitle i {
  box-shadow: 0 0 3px black;
  color: white;
  background-color: #c33b20;
  border-radius: 50%;
  padding: 0.5em;
  margin: 0.5em;
}
.containerSingleCar .requestData .options .requestOptions {
  width: 100%;
  margin: 1em auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  justify-items: start;
  gap: 1em;
  font-size: 20px;
}

@keyframes visibility {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* part of media queries */
@media screen and (max-width: 1280px) {
  .imageRequest {
    flex-direction: column;
  }
  .descriptionRequest {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
  }
}
@media screen and (max-width: 768px) {
  .sousTitre {
    font-size: 1em !important;
  }
  .buttonContainerCar button {
    width: auto !important;
    margin: 15px !important;
  }
  .descriptionRequest {
    gap: 10px !important;
    font-size: 1.2rem !important;
  }
  .descriptionRequest {
    grid-template-columns: repeat(1, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
  }
  .options .requestOptions {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
  }
}
.containerSingle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  width: 100%;
}

.cardSingle {
  font-family: "Poppins", sans-serif;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}
.cardSingle img {
  max-width: 800px;
  width: auto;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  margin: 1em;
}
.cardSingle .card-content {
  padding: 20px;
}
.cardSingle .card-content .card-title {
  font-size: 24px;
  margin-bottom: 10px;
}
.cardSingle .card-content .card-date {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}
.cardSingle .card-content .card-body {
  font-size: 16px;
  line-height: 1.5;
}

.site__navigation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site__navigation a {
  text-decoration: none;
  color: white;
  padding: 1em;
}

.containerNewCard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
}

.news-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  height: 420px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.news-card:hover,
.news-card:active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.news-card a {
  text-decoration: none;
  color: black;
}
.news-card a:hover,
.news-card a:active {
  transform: scale(0.95);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.news-card a .imageThumbnail {
  height: 100%;
  width: 100%;
  position: relative;
}
.news-card a .imageThumbnail img {
  max-width: 100%;
  width: 400px;
  height: 99%;
  object-fit: cover;
}
.news-card a .containerActuCard {
  position: absolute;
  top: 30%;
  left: 26%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 80%;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 1em;
}
.news-card a h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.news-card a h5 {
  font-size: 14px;
  margin-bottom: 10px;
}
.news-card a p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

/* Part of media queries */
@media screen and (max-width: 1280px) {
  .containerNewCard {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .containerNewCard .news-card {
    margin: 1em;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .containerNewCard .site__navigation button {
    width: auto !important;
    margin: auto !important;
  }
  .containerActuCard {
    height: 200px !important;
  }
  .containerActuCard h2,
  .containerActuCard h5 {
    overflow-y: hidden !important;
  }
  .containerActuCard p {
    overflow-y: hidden !important;
    font-size: 1rem !important;
    margin: 0 !important;
    line-height: 1 !important;
  }
}
.containerSocial {
  position: relative;
}

.active {
  right: 0px !important;
}

.containerSocialImg {
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 15vh;
  right: -100px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  width: 140px;
  border-radius: 5px;
}
.containerSocialImg .linkSocialContainer {
  width: 100%;
  position: relative;
  padding-bottom: 1em;
  overflow: visible !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.containerSocialImg .linkSocialContainer ul {
  margin: 0.5em;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.containerSocialImg .linkSocialContainer ul li {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerSocialImg .linkSocialContainer ul li a {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #c33b20;
}
.containerSocialImg .linkSocialContainer .arrowDisplay {
  animation: 3 pumpIt 1s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  font-size: 2em;
  color: #c33b20;
  position: absolute;
  top: 43%;
  right: 100px;
  z-index: 3002;
  background-color: white;
  border-radius: 40px;
  padding: 2px;
}
.containerSocialImg .linkSocialContainer .arrowDisplay .fa-chevron-right {
  display: none;
}
.containerSocialImg .displayOn {
  display: block !important;
}
.containerSocialImg .displayOff {
  display: none !important;
}
.containerSocialImg h5 {
  writing-mode: vertical-lr;
  text-orientation: upright;
  text-align: center;
  font-family: "Caprasimo", cursive;
  color: #c33b20;
  font-size: 1.2em;
  background-color: white;
  border-radius: 5px;
  padding: 5px;
}

.containerSocialImg a:hover {
  transform: scale(1.2);
}

.containerSocialImg a i {
  background-color: white;
  border: 1px solid #c33b20;
  border-radius: 50%;
  padding: 0.5em;
  font-size: 1.5em;
}

/* part of animation */
@keyframes pumpIt {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: black;
  margin-bottom: 1em;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.content .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.content .container a {
  text-decoration: none;
  color: black;
}
.content .container a:hover,
.content .container a:active {
  transform: scale(0.95);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.content .container .search-result {
  position: relative;
  border: 1px solid #c33b20;
  border-radius: 5px;
  padding: 1em;
  margin: 5px;
  width: 400px;
  max-width: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.content .container .search-result:hover,
.content .container .search-result:active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.content .container .search-result img {
  max-width: 90%;
  max-height: 90%;
  width: 400px;
  height: 400px;
  margin: 5%;
  object-fit: cover;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.content .container .search-result .entry-content {
  max-width: 80%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  padding: 1em;
  border-radius: 5px;
  background-color: white;
}
.content .container .search-result .entry-content h2 {
  color: #c33b20;
}
