#main
{
    width: 100vw;
    max-width: 100vw;
    flex-direction: column;
}

.full-width
{
    width: 100%;
}

.max-width
{
    max-width: 100vw;
}

.container_custom
{
    display: flex;
}

.container-column
{
    flex-direction: column;
}

.container-row
{
    flex-direction: row;
}

.container-wrap
{
    flex-wrap: wrap;
}

.container-center-full
{
    justify-content: center;
    align-items: center;
}

.container-center-vertical
{
    align-items: center;
}

.container-start
{
    justify-content: flex-start;
}

.container-space-between
{
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav {
    justify-content: flex-end;
}

.nav a:not(:last-child) {
    margin-right: 20px;
}

.stylised-hyperlink
{
    text-decoration: none;
    color: black;
}

.logo-small
{
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.logo-mini
{
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.image-large
{
    border-radius: 5%;
    width: 550px;
    height: 550px;
}

.section-medium
{
    width: 55%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section-large
{
    width: 75vw;
    margin-top: 20px;
    margin-bottom: 20px;
}

.card-horizontal
{
    width: 75%;
    height: 150px;
    border-radius: 35px;
    padding: 20px;
    background-color: #0075c9;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 2px solid black;
}

.project-item {
    height: 35px;
    border-radius: 0.375rem; /* arrondir les coins */
    transition: transform 0.2s, box-shadow 0.2s;
}

.project-item:hover {
    transform: scale(1.02); /* zoom léger */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* ombre plus grande */
    cursor: pointer;
}

.icon-medium
{
    width: 50px;
    height: 50px;
}

.stylised-btn
{
    border-radius: 15px;
    border: 2px solid black;
    padding: 5px;
}

.button:hover
{
    cursor: pointer;
}

.title
{
    font-size: 35px;
}

.subtitle
{
    font-size: 25px;
}

.debug-info
{
    font-size: 10px;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  bottom: 8px;
  width: 100%;
  text-align: center;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.filter_devicom_blue
{
    filter: invert(43%) sepia(98%) saturate(1500%) hue-rotate(169deg) brightness(90%) contrast(87%);
}

/*------------- START Collapsable styling -------------*/
.collapsible
{
    background-color: #f1f1f1;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .collapsible:hover
{
    background-color: #ccc;
}

.collapsible-content
{
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    padding: 10px;
}
/*------------- END Collapsable styling -------------*/

.value-positive
{
    color: green;
}

.value-neutral
{
    color: orange;
}

.value-negative
{
    color: red;
}

/*------------- START Toggle switch styling -------------*/
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-left: 20px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: green;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Rounded slider */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
/*------------- END Toggle switch styling -------------*/

.sortable
{
    cursor: pointer;
}