/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[1].use[1]!./assets/css/app.css ***!
  \***********************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap);
/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[1].use[1]!./assets/css/app.css (1) ***!
  \***************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap);
/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[1].use[1]!./assets/css/app.css (2) ***!
  \***************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Special+Elite&display=swap);
/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[1].use[1]!./assets/css/app.css (3) ***!
  \***************************************************************************************************************/
body {
  background-image: url(/build/images/backgroundfaf.d6c2fc6d.png); 
  max-width: 100%;
  background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #000;
    
  /* background-position: center center; */
}

.rsilogo img{
  width: 5em;
  height: 3em;
}

.marquee-rtl {
  max-width: 30em;                      /* largeur de la fenêtre */
  margin: 1em auto 2em;
  overflow: hidden;                     /* masque tout ce qui dépasse */
  color: #fff;
  user-select: none;
  font-size: 22px;
  text-decoration: underline;
}

/* le bloc défilant */
.marquee-rtl > :first-child {
  display: inline-block;                /* modèle de boîte en ligne */
  padding-right: 2em;                   /* un peu d'espace pour la transition */
  padding-left: 100%;                   /* placement à droite du conteneur */
  white-space: nowrap;                  /* pas de passage à la ligne */
  animation: defilement-rtl 15s infinite linear;
  animation-name: defilement-rtl;       /* référence à la règle @keyframes mise en oeuvre */
  animation-duration: 15s;              /* valeur à ajuster suivant la longueur du message */
  animation-iteration-count: infinite;  /* boucle continue */
  animation-timing-function: linear;    /* pas vraiment utile ici */
}

@keyframes defilement-rtl {
  0% {
    transform: translate3d(0,0,0);      /* position initiale à droite */
  }
  100% {
    transform: translate3d(-100%,0,0);  /* position finale à gauche */
  }
}

.footer{
  height: 25vh; /* La hauteur du footer est de 10% de la hauteur de la fenêtre */
  padding:30px 0px;
  background-color: #000;
  font-family: 'Play', sans-serif;
  color: white;
  text-align: center;
  padding: 1em;

}
  
.footer .row{
  width:100%;
  margin:1% 0%;
  padding:0.6% 0%;
  color:gray;
  font-size:0.8em;
}
  
.footer .row a{
  text-decoration:none;
  color:gray;
  transition:0.5s;
}
  
.footer .row a:hover{
  color:#fff;
}
  
.footer .row ul{
  width:100%;
}
  
.footer .row ul li{
  display:inline-block;
  margin:0px 30px;
}
  
.footer .row a i{
  font-size:2em;
  margin:0% 1%;
}
  
@media (max-width:720px){
  .footer{
    text-align:left;
    padding:5%;
  }
  .footer .row ul li{
    display:block;
    margin:10px 0px;
    text-align:left;
  }
  .footer .row a i{
    margin:0% 3%;
  }
}

/* width */
::-webkit-scrollbar {
    width: 6px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #000; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #fff; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .image_subunity{
    display: none;
  }
  .subunity_organisation_div_image{
    display: flex;
    justify-content: center;
  }

  /* Style pour la modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Overlay */
}

/* Style pour le contenu de la modal */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
}

/* Style pour le bouton de fermeture */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal img{
  margin: 1.2em 0;
  width: 100%;
}

.menu {
    display: none;
  }
  
  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #24252a;
    overflow-x: hidden;
    transition: width 0.5s ease 0s;
  }
  
  .overlay--active {
    width: 100%;
  }
  
  .overlay__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .overlay a {
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: color 0.3s ease 0s;
  }
  
  .overlay a:hover,
  .overlay a:focus {
    color: #0088a9;
  }
  .overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #edf0f1;
  }
  
  @media screen and (max-height: 450px) {
    .overlay a {
      font-size: 20px;
    }
    .overlay .close {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
  }
  
  @media only screen and (max-width: 800px) {
    .nav__links,
    .cta {
      display: none;
    }
    .menu {
      display: initial;
    }
  } 

header{
  height: 100vh;
  width: 100vw;
  background: transparent;
}

.navbar{
  /* position: absolute; */
  padding: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.navbar a{
  color: red;
  text-decoration: none;
}

.navbar .logo img{
  height: 100px;
  width: 100px;
  /* height: 20%;
  width: 20%; */
  font-size: .5em;
  font-weight: bold;
}
.navbar .nav-links ul{
  display: flex;
}
.navbar .nav-links ul li{
  margin: 0 25px;
  list-style-type: none;
}

.navbar .nav-links ul li a:hover{
  color: red;
}

.navbar .menu-hamburger{
  display: none;
  width: 35px;
  position: absolute;
  top: 50px;
  right: 30px;
  z-index: 50;
}

@media screen and (max-width: 900px) {
  .navbar{
    padding: 0;
  }
  .navbar .menu-hamburger{
    display: block;
  }
  .nav-links{
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgba(255,255,255,0.20);
    backdrop-filter: blur(4px);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -100%;
    transition: all .5s ease;
  }

  .nav-links.mobile-menu{
    margin-left: 0;
    z-index: 10;
  
  }
  .nav-links ul{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar .nav-links ul li{
    margin: 25px 0;
    font-size: 1.2em;
    list-style: none;
  }
  .navbar .logo{
    position: absolute;
    top: 25px;
    left: 30px;
  }
}

.main_container{
    padding-bottom: 15%;
    max-width: 75%;
    margin: 10em auto 0 auto;
}


.home_intro{
    color: #fff;
    text-align: center;
    padding: 20% 0px;
}

.home_intro_title, .home_logged_tuiles, .home_logged{
  font-family: 'Roboto Condensed', sans-serif;
  /* font-size: 32px; */
}

.home_logged_tuiles{
  display: flex;
  flex-direction: column;
}
.home_logged_tuiles a{
  margin: .5em auto;
  font-size: 22px;
  text-decoration: none;
  border-bottom: 2px solid #007500;
  padding-bottom: .2em;
  color: #fff;
  width: 90%;
}

.home_logged{
  margin-top: 4em;
}
.home_logged h1{
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 0.8em;
}
.armurerie{
    padding: 25px;
    border-radius: 30px;
    background-color: #000;
  border: 2px solid #000;
  /* width: 30%; */
}
.armurerie h2{
  color: #fff;
  text-align: center;
  text-decoration:underline;
}
.home_img_tenue{
  margin-top: 1.5em;
  display: flex;
  justify-content: center;
}
.armurerie img{
  /* margin-top: 2em; */
  width: 100%;
  height: 100%;
}
.armurerie .left{
  margin-top: 1.5em;
  text-align: center;
}
.armurerie .center{
  margin-bottom: 0;
}

p{
  color: #fff;
}

.discord_connexion{
  margin-top: 30px;
}

.discord_button{
    display: inline-block;
    font-family: Whitney, "Open Sans", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 11pt;
    border-radius: 3px;
    cursor: pointer;
    height: 45px;
    width: 250px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    transition: transform .8s;
  
    background-color: #7289da;
    border: 2px solid #7289da;
    color: #fff;
}

.discord_button:hover{
  transform: scale(1.2);
}


/**CARD*/

.cards{
  margin-top: 2.5em;
}

.card{
    background-color: #000;
  color: #fff;
  border: 2px solid #323232;
  border-radius: 1%;
  padding-bottom: 2em;
  margin-bottom: 2.5em;
}
.card img{
  margin-bottom: 1.5em;
  width: 100%;
}

.card_title, .card_description{
  text-align: center;
  margin-bottom: .5em;
  font-size: 18px;
}

.card_description{
  margin-bottom: 2em;
}

.card_more{
  display: flex;
  justify-content: center;
}

.card_content{
  text-align: center;
}

.card a{
  text-decoration: none;
  background-color: #00008B;
  color: #fff;
  padding: 0.5em 2em;
  border-radius: 50px;
}

.youtube-videos{
  margin-top: 5em;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10em;
}
/* Personnalisation de l'iframe */
.youtube_frame {
  margin-top: 3em;
  width: 100%; /* L'iframe prend 100% de la largeur du conteneur */
  height: 750px; /* Hauteur fixée de l'iframe */
  border: none; /* Enlève la bordure par défaut */
  border-radius: 10px; /* Ajoute des bords arrondis */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre portée autour de l'iframe */
  transition: transform 0.3s ease; /* Transition de l'effet de survol */
}

/* Effet au survol */
.youtube_frame:hover {
  transform: scale(1.05); /* L'iframe s'agrandit légèrement au survol */
}


/*Manuel (single)*/
.complete_manual{
  color: #fff;
}
.complete_manual img{
  width: 100% !important;
  height: 100% !important;
}

.header_manual{
  text-align: center;
}
.header_manual h1{
  margin-bottom: .5em;
}
.header_manual h2{
  margin-bottom: 1.5em;
}
.header_manual img{
  margin-bottom: 3em;
}
.content_table_manual ol{
  padding: 0 2em;
}
.sum_manual h3, .content_table_manual{
  margin-bottom: 1.5em;
}
.sum_manual h3{
  text-align: center;
}

dialog::backdrop {
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(1px);
}

dialog {
  position: absolute;
  float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
	/* width: auto; */
  padding: 2em;
	max-width: 1160px;
	border: 0;
	padding: 0;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
}

#dialog p{
  color: #000;
}

#dialog-wrap {
	padding: 65px 25px 45px;
}

#close-dialog,
#close-generated-dialog {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 25px;
	right: 25px;
	z-index: 2;
	cursor: pointer;
	border: 0;
	background: url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 %3F%3E%3C%21DOCTYPE svg PUBLIC %27-//W3C//DTD SVG 1.1//EN%27 %27http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%27%3E%3Csvg height=%27512px%27 id=%27Layer_1%27 style=%27enable-background:new 0 0 512 512;%27 version=%271.1%27 viewBox=%270 0 512 512%27 width=%27512px%27 xml:space=%27preserve%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3Cpath d=%27M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4 L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1 c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1 c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z%27/%3E%3C/svg%3E") center no-repeat;
	background-size: contain;
	padding: 0;
	font-size: 0;
}

body {
	font-family: 'Montserrat', sans-serif;
}

.center {
	text-align: center;
  margin-bottom: 2em;
}

.col {
	text-align: center;
}

.col img{
  width: 30%;
}

.col img, p{
  margin-bottom: 2em;
}

#dialog a,
button {
	display: inline-block;
	color: black;
	text-decoration: none;
	border: 0;
	border-radius: 16px;
	background: #38598b;
	color: white;
	padding: 10px 25px;
	cursor: pointer;
}

#countdown{
  color: red;
}
#monModal{
  display: none;
}


#calendrier{
  color: #fff;
}
#calendrier .fc-head thead tr{
  background-color: #880808;
}

.fc-unthemed td.fc-today {
  background-color: #666128;
}

.calendrier{
  margin: 0;
  border-radius: 1em;
}

.calendrier .fc-header-toolbar{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  justify-content: center;
}

.calendrier .fc-center{
  font-size: 18px;
  text-align: center;
  margin-bottom: 2.3em;
  text-transform: capitalize;
}

.calendrier .fc-dayGridWeek-button, .fc-dayGridMonth-button{
  display: none;
}
.calendrier .fc-day-grid{
  background-color: #f2f2f2;
}
.calendrier .fc-day-number{
  color: black;
}

.calendrier thead tr td, .calendrier tbody tr td{
  font-size: 10px;
}

.military_record{
  /* background-color: #462e01; */
  background-image : url(http://api.thumbr.it/whitenoise-361x370.png?background=ffffffff&noise=5c5c5c&density=13&opacity=62);
	width: 100%;
	box-shadow: 2px 3px 20px black, 0 0 125px #8f5922 inset;
	background: #fffef0;
  filter: url(#wavy2);
  background-image: url(data:image/png;base64,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);
}
.military_header::after{
    display: inline-block;
    margin: 0 .5em;
    content:"Confidential";
    z-index:1;
    font-family:Arial,sans-serif;
    -webkit-transform: rotate(-40deg); /* Safari */
    -moz-transform: rotate(-40deg); /* Firefox */
    -ms-transform: rotate(-40deg); /* IE */
    -o-transform: rotate(-40deg); /* Opera */
    transform: rotate(-20deg);
    font-size:20px;
    color:#c00;
    background:#fff;
    border:solid 4px #c00;
    padding:5px 2em;
    border-radius:5px;
    zoom:1;
    filter:alpha(opacity=20);
    opacity:0.3;
    -webkit-text-shadow: 0 0 2px #c00;
    text-shadow: 0 0 2px #c00;
    box-shadow: 0 0 2px #c00;
}
.military_header{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.military_header img{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 20px;

  object-fit: cover;
  object-position: center right;
}
.military_body, .military_footer{
  padding: 0 2em 2em 2em ;
}
.military_body_title{
  margin: 2em 0;
  text-align: center;
  font-size: 19px;
}
.military_body p, .military_test_form>div{
  border-bottom: 1px solid black;
  padding-bottom: .5em;
}

.military_test_form>div{
  margin-bottom: 2em;
}

.military_stamp_classis_form div{
  border: none !important;
}
.imagesIsHidden{
  display: none;
}
#form_started_date{
  display: flex;
}
.military_body p>span, .military_footer div, .military_read_approuvated, .military_test_form, #piece_jointe{
  color: black;
  /* font-family: 'Alex Brush', cursive; */
  font-family: 'Special Elite', cursive;
  font-size: 25px;
  letter-spacing: .05em;
}
.military_footer div{
  padding: 1em 0;
  border: 1px solid black;
  border-left: none;
  border-right: none;
  margin-bottom: 2em;
}
.military_stamp_classis{
  display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.military_stamp_classis p{
  text-align: center;
  color: black;
  margin-bottom: 0;
}
.military_stamp_classis img{
  margin-top: 1.5em;
  width: 100px;
  height: 75px;
  /* border:solid 4px #c00; */
  /* border-radius: 50%; */
  zoom:1;
  filter:alpha(opacity=20);
  opacity:0.7;
  -webkit-text-shadow: 0 0 2px #c00;
  text-shadow: 0 0 2px #c00;
  /* box-shadow: 0 0 2px #c00; */
}

.sub_unity_single_page_title{
  color: #A9A9A9;
  margin-bottom: .7em;
}
.sub_unity_single_page_image{
  width: 100%;
}
.sub_unity_single_page_span{
  color: #A9A9A9;
  font-size: 22px;
}
.sub_unity_single_page_type{
  color: #A9A9A9;
}
.sub_unity_single_page_first{
  margin-bottom: 2em;
}
.sub_unity_bt{
  margin: 1.5em 0;
  border-bottom: 2px solid green;
  width: 10%;
}
.sub_unity_single_page_description_officier_title, .sub_unity_single_page_description_officier{
  margin-bottom: 0;
}
.sub_unity_single_page_description_officier p{
  color: #fff !important;
}
.sub_unity_single_page_members_title{
  margin-bottom: 2em;
}
.sub_unity_single_page_member{
  margin-bottom: .5em;
}
.started_now_check div{
  display: flex;
  align-items: center;
}
.military_test_form input[type=text], .military_test_form textarea{
  appearance: none;
	border: none;
	outline: none;
	border-bottom: .2em solid gray;
	border-radius: .2em .2em 0 0;
	padding: .4em;
	color: black;
}
.military_select_txtarea div:nth-child(2){
  /* background-color: red; */
  display: flex;
  flex-direction: column;
}
.military_test_form textarea{
  margin-top: 2em;
  resize: none;
  width: 100%;
  height: 100%;
}

#form_is_started_now {
	appearance: none;
  background-color: #fff;
  margin-left: 0.8em;
	font: inherit;
  color: currentColor;
  width: 1em;
  height: 1em;
  border: 0.15em solid gray;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
	display: grid;
  place-content: center;
	&::before {
		content: "";
		width: 0.5em;
		height: 0.5em;
		transform: scale(0);
		transition: 120ms transform ease-in-out;
		background-color: CanvasText;
		clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
		transform-origin: left top;
	}
	&:checked::before {
		transform: scale(1);
	}
}

.divIsHidden{
  display: none
}

.military_record select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: none;
  margin: 0 .5em;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;

  z-index: 1;

  outline: none;
}
.take_service_link{
  background-color: #00008B;
}
.take_service_absent{
  background-color: #880808;
}
.take_service_start, .take_service_validate{
  background-color: green;
}
.take_service a{
  text-decoration: none;
  color: #fff;
}

.service_infos{
  text-align: center;
  font-size: 22px;
}

.take_service_absent a, .take_service_start a, .take_service_validate a, .take_service_link a{
  text-decoration: none;
  margin-left: 2%;
  font-size: 20px;
}
.take_service_absent, .take_service_start, .take_service_validate, .take_service_link{
  margin: 2em 0;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 10px;
  margin: auto;
  padding: .5em;
  color: #fff;
}

.history_service{
  margin: 2em 0;
  /* border-top: 2px solid red; */
}
.history_service_title{
  text-align: center;
  font-size: 22px;
  margin-top: 2em;
}
#customers{
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: .7em;
  overflow: hidden;
  border: 1px solid #fff;

  
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

#customers tr{background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #000;
  color: white;
}
#customers td a{text-decoration: none; color: #000;}

.pagination ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.pagination li, .pagination a, .pagination span{
  margin: 0 .4em;
  color: #fff;
  list-style: none;
}
.disabled {
  pointer-events: none;
  cursor: default;
}

#myButton{
  text-decoration: none;
  color: #fff;
}
.jccdf{
  display: flex;
  justify-content: center;
}
.manual_unity_title_center{
  text-align: center;
}

/* Tablette en portrait */
@media screen and (min-width:720px) {
  .card_title{
    font-size: 22px;
  }
  .calendrier thead tr td, .calendrier tbody tr td{
    font-size: 1em;
  }
  .home_logged_tuiles a{
    width: 70%;
  }
  .armurerie .left{
    display: flex;
    flex-wrap: wrap;
  }
  .armurerie .left p{
    width: 50%;
  }
  .armurerie{
    margin: auto;
    width: 70%;
  }
}

/* Tablette en paysage */
@media screen and (min-width:900px) {
  .main_container{
    max-width: 75%;
    margin: 4em auto;
}
  .cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .card{
    margin: 0 2em 1.5em 2em;
    width: 33%;
  }
  .calendrier{
    margin-top: 2.5em;
  }
  .military_record{
    padding: 4em 0;
    width: 90%;
    margin: 2.5em auto;
  }
  .sub_unity_single_page{
    width: 90%;
    margin: auto;
  }
  .sub_unity_single_page_image{
    width: 70%;
  }
  .service_index{
    margin-top: 2.5em;
  }
  .service_link_div{
    display: flex;
    justify-content: center;
  }
  .take_service_absent, .take_service_start, .take_service_validate, .take_service_link{
    width: 30%;
  }
  .navbar a{
    color: #fff;
  }
  .navbar-sticky{
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    background-color: #000 !important;
    transition: background-color 200ms linear;
    z-index: 40;
    padding: 0;
  }
  .home_logged_tuiles a{
    width: 30%;
  }
  .armurerie{
    margin: auto;
    width: 55%;
  }
}

/* Ordinateur */
@media screen and (min-width:1224px) {
  .card{
    width: 25%;
  }
  .calendrier{
    margin: 3em 10em;
  }

  .calendrier .fc-header-toolbar{
    display: initial;
  }
  .complete_manual img{
    width: 45% !important;
    height: 45% !important;
  }
  .military_record{
    width: 65%;
  }
  .sub_unity_single_page{
    margin-top: 5em;
    width: 65%;
    display: flex;
  }
  .sub_unity_single_page_second{
    margin-top: 7em;
  }
  #customers{
    width: 50%;
    margin: auto;
  }
  .service_link_div{
    width: 45%;
    margin: auto;
  }
  .home_logged_tuiles{
    flex-direction: row;
  }
  .home_logged_tuiles a{
    width: auto;
  }
  .armurerie{
    margin: auto;
    margin-top: 3em;
  }
  .armurerie_block{
    display: flex;
    align-items: center;
  }
  .armurerie .left{
    width: 40%;
  }
  .armurerie .left p{
    width: 100%;
  }
  .armurerie .center{
    display: flex;
    justify-content: center;
    margin: 2% 0;
  }
  .armurerie .center img{
    width: 65%;
  }
  .armurerie .left .left_first_p{
    padding-top: 2.5em;
    margin-bottom: 0;
  }
  .armurerie .left .left_second_p{
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation: 
    typing 1.5s steps(40, end),
    blink-caret .75s step-end infinite;
    text-decoration: underline;
  }
  /* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
}
}
