.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    margin: 0 auto; 
    box-sizing: border-box; 
    /* top:-60px; */
    position: relative;
    /* background-color: brown; */
}

.content img {
    width: 100%; 
    height: 20%; 
    margin-bottom: 10px;
    display: block;
    object-fit: contain;
}


body {
    background-color: #f5f5f5;
}
.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 60px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative;
    left: 25%;
    top: 70px;
    cursor: move;
}
.form-group {
    margin-bottom: 20px;
}
.btn {
    background-color: #007BFF;
    color: #fff;
}


.container {
    background-color: rgb(255, 255, 255);
    position: relative;
    left: 25%;
    top: 70px;
    cursor: move;
}

.infoBox {
    background-color: #eb9054; /* Couleur de fond grise */
    position: absolute;
    left: 8%;
    top: 20%;
    padding: 50px;
    width: 500px;
    /* margin: 0 auto; */
    color: white; 
}


.miniMap {
    position:relative;
    left: 8%;
    top: -350px;
    height: 400px;
    width: 500px;
}


@media (max-width: 1204px) {
    .container, .infoBox, .miniMap {
        position: relative;
        left: 0;
       max-width: 100%;
    }

    .infoBox, .miniMap {
        position: relative;
        margin-top: 400px;
        left:155px;
        max-width: 100%;
        width: 70%;
    }
}

/* Styles pour smartphones */
@media (max-width: 768px) {
    .container, .infoBox, .miniMap {
        position: relative;
        left: 0;
        width: 100%;
    }
    
}

@media (max-width: 1015px) {
    .container, .infoBox, .miniMap {
        position: relative;
        left: 0;
        width: 100%;
    }
    
}

  @media (max-width: 600px) {
    .carousel-item img {
      width: 100%;
      height: auto;
    }
    .carousel-inner {
      height: 300px; 
    }
    .carousel-indicators {
      bottom: -20px; 
    }
  }














