@import url("https://fonts.googleapis.com/css2?family=Actor&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italianno&display=swap");

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bgColor: #ffe6da;
  --mainColor: #774936;
  --secondColor: #54A6BC;
  --parafColor: #260701;
  --txtImgColor: #4e99ff;
}

.body {
  height: 100vh;
  background-color: var(--bgColor);
}

/* STYLE ACCUEIL */

.img-accueil {
  width: 100%;
  height: 800px;
  background: url(../img/plage.png) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pos-txt-img {
  width: 100%;
  height: auto;
}

.pos-img {
  width: 100%;
  height: 50%;
}

.logo {
  width: 87%;
  height: 100%;
  background: url(../img/logo_blanc.svg) no-repeat center/cover;
}

.titre {
  color: var(--secondColor);
  font-family: Actor;
  text-transform: uppercase;
  font-size: 1.3rem;
  padding: 10px;
  letter-spacing: 3px;
}

.txt {
  color: var(--parafColor);
  font-family: Actor;
  padding: 10px;
  font-size: 1rem;
  text-align: left;
}


ul{
  list-style: inside;
}

.list{
  padding-left: 20px;
  list-style-type: circle;
}

.img-end-accueil {
  background: url(../img/shiba_paysage.JPG) no-repeat center/cover;
  height: 30%;
}

.img-end {
  width: 90%;
  height: 100%;
  background: url(../img/shiba_paysage.JPG) no-repeat center/cover;
  border-radius: 15px;
  margin-left: 20px;
}

/* NAV MOBILE */

.hamburger {
  cursor: pointer;
  position: fixed;
  display: none;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  background: url("https://cdn4.iconfinder.com/data/icons/wirecons-free-vector-icons/32/menu-alt-256.png")
    no-repeat center/cover;
  transition: all 0.3s;
  z-index: 20;
}

.secondary-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 0%;
  opacity: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-items: center;
  background-color: var(--mainColor);
  z-index: 10;
  transition: all 0.3s;
}

.secondary-nav.active {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.secondary-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--parafColor);
  border: 1px dotted #e5aa57;
  font-family: Actor;
  text-align: center;
  padding: 20px;
}

/* NAV COMPUTER */

.primary-nav {
  width: 100%;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--mainColor);
  display: none;
}

.primary-nav a {
  width: 10%;
  color: var(--bgColor);
  font-family: Actor;
  text-decoration: none;
  text-align: center;
}

.logo-nav {
  width: 100px;
  height: 100%;
  background: url(../img/logo_blanc.png) no-repeat center/cover;
  overflow: hidden;
}

/* STYLE DUALITE EFFET PAPILLON */

.img-effet-papillon {
  position: relative;
  width: 100%;
  height: 40%;
  opacity: 0.5;
  background: url(../img/img-effet-pap.png) no-repeat center/cover;
}

.titre-img {
  position: absolute;
  top: 33%;
  right: 0;
  color: var(--mainColor);
  opacity: 1;
  font-family: Italianno;
  font-size: 2.5rem;
  padding: 5px;
}

.titre-square {
  text-align: center;
}

.citation {
  position: relative;
  display: flex;
  width: 100%;
  height: 30%;
}

.papillon {
  width: 40%;
  height: 127px;
  margin: 15px;
  background: url(../img/papillon_bleu.svg) no-repeat center/cover;
}

.phrase-citation {
  position: absolute;
  font-family: Italianno;
  color: var(--secondColor);
  top: 0;
  right: 0;
  font-size: 1.3rem;
  text-align: right;
  width: 70%;
  padding: 10px;
}

.auteur {
  position: absolute;
  right: 0;
  top: 30%;
  color: var(--secondColor);
  font-family: Actor;
  font-size: 0.8rem;
  padding: 10px;
}

.papillon-more {
  position: absolute;
  font-family: Actor;
  color: var(--parafColor);
  left: 50%;
  transform: translateX(-50%);
  text-decoration: underline;
  display: block;
  cursor: pointer;
}

.papillon-more.active {
  display: none;
}

.more-end-img {
  position: absolute;
  bottom: 0;
  padding: 5px;
}

.papillon-modal {
  position: relative;
  width: 90%;
  height: 100%;
  border-radius: 15px;
  display: none;
  align-items: center;
  overflow: hidden;
  opacity: 0.2;
  font-family: Actor;
  color: var(--parafColor);
  text-align: left;
}

.papillon-modal.active {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  opacity: 1;
  animation: opacity 1s;
}

.papillon-container-modal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-square {
  position: absolute;
  bottom: -100%;
}

@keyframes opacity {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

.papillon-cross {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  bottom: 0px;
  width: 30px;
  height: 30px;
  border: 1px solid;
  border-radius: 15px;
  margin: 10px;
  cursor: pointer;
  font-family: Actor;
  color: var(--parafColor);
}

.papillon-txt-modal,
.rdv-txt-modal,
.qui-txt-modal,
.charte-txt-modal,
.temoignage-txt-modal {
  color: var(--parafColor);
  font-family: Actor;
  font-size: 1rem;
  padding: 10px;
  text-align: left;
}

/* STYLE CA VRAIE */

.img-ca-vraie {
  background: url(../img/Les\ yeux2.PNG) no-repeat center/cover;
}

.img-up {
  position: relative;
  width: 100%;
  height: 40%;
  opacity: 0.5;
}

.img-end-ca-vraie {
  background: url(../img/chien_couverture.JPG) no-repeat center/cover;
  margin-top: 25px;
}

/* STYLE QUI SUIS JE */

.img-qui-suis-je {
  background: url(../img/shiba_bois.JPG) no-repeat center/cover;
}

.position {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 20px;
}

.square {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 70%;
  height: auto;
  border: 4px solid var(--mainColor);
  border-radius: 15px;
}

.img-blue {
  background: url(../img/blue.png) no-repeat center/cover;
}

.img-square {
  width: 80%;
  height: 200px;
  border-radius: 15px;
  flex-shrink: 0;
}

.img-chien-plage {
  background: url(../img/chien_plage.JPG) no-repeat center/cover;
}

.img-lm {
  background: url(../img/laetitia_muratore.jpg) no-repeat center/cover;
}

.img-rdv {
  background: url(../img/chat-couverture.jpg) no-repeat center/cover;
}

.square-brown {
  position: relative;
  background: var(--mainColor);
  height: 500px;
}

.txt-square {
  width: 90%;
  position: absolute;
  text-align: left;
  font-size: 1.1rem;
}

.txt-square-down {
  width: 95%;
  position: absolute;
  margin-top: 65%;
  text-align: center;
  font-size: 1.1rem;
}

.more-square {
  position: absolute;
  bottom: 0;
}

/* MODAL */

.blue-ouvrir,
.evidence-ouvrir,
.parcours-ouvrir {
  width: 50%;
  background: var(--secondColor);
  border: 0;
  border-radius: 10px;
  color: var(--bgColor);
  font-family: Actor;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 8px 25px;
  margin-top: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.blue-fermer,
.evidence-fermer,
.parcours-fermer {
  width: 25%;
  text-align: center;
  margin: 5px;
  background: var(--secondColor);
  border: 0;
  border-radius: 10px;
  color: var(--bgColor);
  font-family: Actor;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 8px 10px;
  margin-top: 20px;
  cursor: pointer;
}

.blue-modal,
.evidence-modal,
.parcours-modal {
  position: fixed;
  width: 90vw;
  max-height: 85vh;
  background: var(--bgColor);
  box-shadow: 0 2px 4px rgba(119, 73, 54);
  border-radius: 5px;
  display: none;
  top: -100%;
  animation: opacity 0.8s;
  /* overflow-y: scroll; */
  z-index: 10;
}

.overflowY{
  overflow-y: scroll;
}

.ca-simple-modal,
.ca-collective-modal,
.ca-dossier-modal,
.ca-suivi-modal,
.ca-fin-modal,
.ca-decede-modal,
.ca-perdus-modal,
.ca-offrir-modal {
  position: relative;
  width: 70vw;
  max-height: 500px;
  background: var(--bgColor);
  box-shadow: 0 2px 4px rgba(119, 73, 54);
  border-radius: 5px;
  display: none;
  top: -100%;
  animation: opacity 1s;
  z-index: 10;
}

.charte-ca-modal,
.charte-respect-modal,
.charte-realisation-modal,
.charte-paiement-modal,
.charte-confidentialite-modal,
.charte-dossier-modal,
.charte-suivi-modal,
.charte-decede-modal,
.charte-perdus-modal,
.charte-respect-3-modal,
.temoignage-s-t-modal,
.temoignage-s-l-c-modal,
.temoignage-m-c-modal,
.temoignage-m-c-c-modal,
.temoignage-t-p-modal,
.temoignage-m-f-k-modal,
.temoignage-e-d-modal,
.temoignage-j-m-modal,
.temoignage-m-p-modal {
  background: var(--bgColor);
  border-radius: 15px;
  overflow: hidden;
  max-height: 15px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.charte-respect-3-modal.active,
.temoignage-s-t-modal.active,
.temoignage-s-l-c-modal.active,
.temoignage-m-c-modal.active,
.temoignage-m-c-c-modal.active,
.temoignage-t-p-modal.active,
.temoignage-m-f-k-modal.active,
.temoignage-e-d-modal.active,
.temoignage-j-m-modal.active,
.temoignage-m-p-modal.active {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 20px;
}

.charte-ca-modal.active,
.charte-respect-modal.active,
.charte-realisation-modal.active,
.charte-paiement-modal.active,
.charte-confidentialite-modal.active,
.charte-dossier-modal.active,
.charte-suivi-modal.active,
.charte-decede-modal.active,
.charte-perdus-modal.active {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 20px;
}

.blue-modal.active,
.evidence-modal.active,
.parcours-modal.active,
.ca-simple-modal.active,
.ca-collective-modal.active,
.ca-dossier-modal.active,
.ca-suivi-modal.active,
.ca-fin-modal.active,
.ca-decede-modal.active,
.ca-perdus-modal.active,
.ca-offrir-modal.active {
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blue-modal-container,
.evidence-modal-container,
.parcours-modal-container,
.ca-simple-modal-container,
.ca-collective-container,
.ca-dossier-modal-container,
.ca-suivi-modal-container,
.ca-fin-modal-container,
.ca-decede-modal-container,
.ca-perdus-modal-container,
.ca-offrir-modal-container,
.charte-ca-modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overflow-scroll {
  overflow-y: scroll;
}

/* STYLE RDV */

.square-container-rdv {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.img-ca-simple {
  background: url(../img/chat_patte.JPG) no-repeat center/cover;
}

.img-square-brown {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  opacity: 0.3;
}

.sub-title {
  color: var(--secondColor);
  font-family: Actor;
  font-size: 1.1rem;
  margin: 20px 10px auto;
  text-transform: uppercase;
}

.sub-title-square {
  color: var(--secondColor);
  text-align: center;
  position: absolute;
  top: 0;
}

.img-ca-collective {
  background: url(../img/4_chiens.JPG) no-repeat center/cover;
}

.img-ca-dossier {
  background: url(../img/chat_arbre.JPG) no-repeat center/cover;
}

.img-ca-suivi {
  background: url(../img/chien-jouet.JPG) no-repeat center/cover;
}

.img-ca-fin-vie {
  background: url(../img/chien_calin.JPG) no-repeat center/cover;
}

.img-ca-decede{
  background: url(../img/chien_bisou.JPG) no-repeat center/cover;
}

.img-ca-perdus {
  background: url(../img/chat_dehors.JPG) no-repeat center/cover;
}

.img-ca-abonnement{
  background: url(../img/5_chiens.jpeg) no-repeat center/cover;
}

.img-offrir-ca {
  background: url(../img/2_chiens_couverture.JPG) no-repeat center/cover;
}

.ca-simple-ouvrir,
.ca-collective-ouvrir,
.ca-dossier-ouvrir,
.ca-suivi-ouvrir,
.ca-fin-ouvrir,
.ca-decede-ouvrir,
.ca-perdus-ouvrir,
.ca-offrir-ouvrir,
.temoignage-s-t-ouvrir,
.temoignage-s-l-c-ouvrir,
.temoignage-m-c-ouvrir,
.temoignage-m-c-c-ouvrir,
.temoignage-t-p-ouvrir,
.temoignage-m-f-k-ouvrir,
.temoignage-e-d-ouvrir,
.temoignage-j-m-ouvrir,
.temoignage-m-p-ouvrir {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--secondColor);
  border: 0;
  border-radius: 10px;
  color: var(--bgColor);
  font-family: Actor;
  font-size: 0.7rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 8px 25px;
  margin-top: 20px;
  cursor: pointer;
}

.ca-simple-fermer,
.ca-collective-fermer,
.ca-dossier-fermer,
.ca-suivi-fermer,
.ca-fin-fermer,
.ca-decede-fermer,
.ca-perdus-fermer,
.ca-offrir-fermer {
  width: 20%;
  background: var(--secondColor);
  border: 0;
  border-radius: 10px;
  color: var(--bgColor);
  font-family: Actor;
  font-size: 0.7rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 8px 10px;
  margin-top: 20px;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
}

.charte-ca-fermer,
.charte-respect-fermer,
.charte-realisation-fermer,
.charte-paiement-fermer,
.charte-confidentialite-fermer,
.charte-dossier-fermer,
.charte-suivi-fermer,
.charte-decede-fermer,
.charte-perdus-fermer,
.charte-respect-3-fermer,
.temoignage-s-t-fermer,
.temoignage-s-l-c-fermer,
.temoignage-m-c-fermer,
.temoignage-m-c-c-fermer,
.temoignage-t-p-fermer,
.temoignage-m-f-k-fermer,
.temoignage-e-d-fermer,
.temoignage-j-m-fermer,
.temoignage-m-p-fermer {
  width: 20%;
  background: var(--secondColor);
  border: 0;
  border-radius: 10px;
  color: var(--bgColor);
  font-family: Actor;
  font-size: 0.7rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 8px 10px;
  margin-top: 20px;
  cursor: pointer;
}

.titre-modal {
  width: 100%;
  background: var(--mainColor);
  color: var(--txtImgColor);
  text-align: center;
  border-radius: 0 0 15px 15px;
}

/* STYLE CHARTE */

.img-charte {
  background: url(../img/shiba.png) no-repeat center/cover;
}

.rectangle-brown {
  width: 90%;
  height: 8%;
  background: var(--secondColor);
  border-radius: 15px;
  margin: 20px;
  cursor: pointer;
}

.txt-rectangle {
  text-align: center;
  color: var(--bgColor);
}

/* STYLE TEMOIGNAGES */

.img-temoignages {
  background: url(../img/shiba_parc.JPG) no-repeat center/cover;
}

.img-s-t {
  background: url(../img/Taiko.jpg) no-repeat center/cover;
}

.img-s-l-c {
  background: url(../img/Mia_Cléa.jpg) no-repeat center/cover;
}

.img-m-c {
  background: url(../img/Charlie.jpg) no-repeat center/cover;
}

.img-m-c-c {
  background: url(../img/Cocotte.jpg) no-repeat center/cover;
}

.img-t-p {
  background: url(../img/Parker.jpg) no-repeat center/cover;
}

.img-m-f-k {
  background: url(../img/forest_kito.jpg) no-repeat center/cover;
}

.img-e-d {
  background: url(../img/Drago.jpg) no-repeat center/cover;
}

.img-j-m {
  background: url(../img/Juju.jpg) no-repeat center/cover;
}

.img-m-p {
  background: url(../img/Pepper.jpeg) no-repeat center/cover;
}

.txt-temoignage {
  position: absolute;
  top: 50%;
  text-align: center;
}

/* FOOTER */

.thirdy-nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: var(--mainColor);
  margin-top: 20px;
}

.footer-logo {
  width: 15%;
  height: 140px;
  background: url(../img/logo_blanc.svg) no-repeat center/cover;
}

.footer-a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.thirdy-nav a {
  color: var(--bgColor);
  font-family: Actor;
  text-decoration: none;
  text-align: center;
  font-size: 0.8rem;
  padding: 5px;
}

/* STYLE FORMATION */

.img-formation {
  background: url(../img/shiba_nature.JPG) no-repeat center/cover;
}

.img-content {
  width: 100%;
  border-radius: 50px;
  flex: 1;
}

/* RESPONSIVE */

@media screen and (max-width: 1000px) {
  .hamburger {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  .primary-nav {
    display: flex;
  }

  .pos-txt-img {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    height: 600px;
  }

  .logo {
    width: 76%;
  }

  .img-accueil {
    width: 30%;
    height: 450px;
    border-radius: 15px;
    flex-shrink: 0;
  }

  .bloc-txt {
    flex: 1;
  }

  .txt-ethique{
  margin-left: 60px;
}

  .img-end-accueil {
    width: 90%;
    height: 90%;
    margin-left: 0;
    margin-top: 0;
  }

  .pos-img {
    height: 50%;
    display: flex;
    justify-content: center;
  }

  .img-up {
    height: 85%;
  }

  .titre-img {
    top: 85%;
    font-size: 3rem;
  }

  .phrase-citation {
    font-size: 3rem;
    width: 45%;
  }

  .auteur {
    font-size: 1.5rem;
    margin-top: 15px;
  }

  .citation{
    height: 40%;
  }

  .papillon {
      width: 43%;
      height: 320px;
  }

  .bloc-txt-papillon,
  .bloc-txt-ca-vraie,
  .bloc-txt-rdv {
    padding: 40px;
  }

  .papillon-cross {
    bottom: 10px;
  }

  .img-end-ca-vraie {
    width: 90%;
    height: 75%;
  }

  .square-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
  }

  .position {
    flex: 1;
    margin-top: 0;
  }

  .square {
    width: 100%;
    height: 400px;
    padding: 20px;
  }

  .img-square {
    width: 100%;
    height: 70%;
  }

  .blue-modal.active {
    width: 30%;
    left: 9%;
    transform: translate(-25%, -42%);
  }

  .evidence-modal.active {
    width: 30%;
  }

  .parcours-modal.active {
    width: 30%;
    left: 74%;
    transform: translate(-25%, -42%);
  }

  .square-container-rdv {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -30px;
  }

  .square-container-rdv .position {
    flex: 0 1 calc(33% - 20px);
  }

  .square-container-temoignage {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }

  .square-container-temoignage .position {
    flex: 0 1 calc(33% - 20px);
  }

  .square-brown {
    width: 100%;
    height: 500px;
  }

  .img-square-brown {
    margin-top: 10px;
  }

  .ca-simple-modal.active,
  .ca-suivi-modal.active {
    width: 100%;
  }

  .ca-collective-modal.active,
  .ca-fin-modal.active,
  .ca-decede-modal.active,
  .ca-offrir-modal.active {
    width: 100%;
  }

  .ca-dossier-modal.active,
  .ca-perdus-modal.active {
    width: 100%;
  }

  .pos-rectangle {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .rectangle-brown {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .charte-ca-modal.active,
  .charte-respect-modal.active,
  .charte-realisation-modal.active,
  .charte-paiement-modal.active,
  .charte-confidentialite-modal.active,
  .charte-dossier-modal.active,
  .charte-suivi-modal.active,
  .charte-decede-modal.active,
  .charte-perdus-modal.active,
  .charte-respect-3-modal.active {
    width: 90%;
  }

  .temoignage-s-t-modal.active,
  .temoignage-s-l-c-modal.active,
  .temoignage-m-c-modal.active,
  .temoignage-m-c-c-modal.active,
  .temoignage-t-p-modal.active,
  .temoignage-m-f-k-modal.active,
  .temoignage-e-d-modal.active,
  .temoignage-j-m-modal.active,
  .temoignage-m-p-modal.active {
    max-width: none;
  }

  .papillon-gauche {
    display: flex;
  }

  .papillon-droite {
    display: flex;
  }

  .footer-logo {
    width: 10%;
    height: 210px;
  }

  .thirdy-nav a {
    font-size: 1rem;
  }

  .formation-content {
    display: flex;
    flex-direction: row;
    overflow: hidden;
  }

  .img-content {
    height: 320px;
    padding: 20px;
  }
}

@media screen and (min-width: 1400px) {
  .logo {
    width: 270px;
    height: 100%;
  }

  .img-accueil {
    height: 600px;
    width: 40%;
  }

  .img-end {
    margin-top: 85px;
  }

  .txt {
    font-size: 1rem;
  }

  .txt-ethique{
  margin-left: 80px;
}

  .titre {
    font-size: 1.5rem;
  }

  .img-up {
    height: 70%;
  }

  .titre-img {
    font-size: 4rem;
    top: 75%;
  }

  .citation{
    height: 80%;
  }

  .phrase-citation{
    margin-right: 50px;
  }

  .auteur{
    margin-right: 50px;
  }

  .papillon {
    width: 45.5%;
    height: 510px;
    margin-left: 100px;
  }

  .square {
    height: 600px;
  }

  .square-brown {
    height: 680px;
  }

  .img-square-brown {
    height: 500px;
  }

  .thirdy-nav {
    margin-top: 100px;
  }

  .thirdy-nav a {
    font-size: 1.2rem;
  }

  .footer-logo {
    width: 10%;
    height: 325px;
  }

  .ca-collective-modal.active,
  .ca-fin-modal.active,
  .ca-decede-modal.active,
  .ca-offrir-modal.active {
    width: 100%;
  }

  .ca-dossier-modal.active,
  .ca-perdus-modal.active {
    width: 100%;
  }

    .img-content {
    height: 420px;
    padding: 20px;
  }
}
