.container {
    position: relative;
  }
  
.rectangle {
    position: absolute;
    top: 83px;
    left: 83px;
    width: 7px;
    height: 33px;
    /* UI Properties */
    background: var(--unnamed-color-c70505) 0% 0% no-repeat padding-box;
    background: #C70505 0% 0% no-repeat padding-box;
    opacity: 1;
}

.text {
    position: absolute;
    top: 83px;
    left: 109px;
    font: normal normal bold 24px/33px Open Sans;
    letter-spacing: 0px;
    color: #333333;
    text-align: left;
}

.mapimg {
    margin-top: 167px;
    margin-left: 139px;
    width: 1085px;
    height: 506px;
    opacity: 1;
}

.marker {
    position: absolute;
    width: 40px;
    height: 40px;
    background: transparent url('../Images/map/pointer.svg') 0% 0% no-repeat padding-box;
    opacity: 1;
    display: inline-block;
    margin: 10px;
}

.info {
    position: absolute;
    top: 100%;
}

.marker1 {
    top: 393px;
    left: 1042px;
}

.marker2 {
    top: 450px;
    left: 800px;
}

.marker3 {
  top: 500px;
    left:755px;
}

.close-btn{
    /* Layout Properties */
    margin-top: 28px;
    margin-left: 1294px;
    width: 43px;
    height: 43px;
    /* UI Properties */
    background: transparent url('../Images/map/close.svg') 0% 0% no-repeat padding-box;
    opacity: 1;
}

.text-on-button{
    display: none;
}

.button{
    display: none;
}
  
.info {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip {
    display: none;
    position: absolute;
    top:30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    width: 200px;
}

.marker:hover .tooltip {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

/*media query for mobile devices */
@media (max-width: 768px) {
    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .mapimg {
     /* Layout Properties */
        margin-top: 171px;
        margin-left: 25px;
        width: 100%;
        height: auto;
        /* UI Properties */
        opacity: 1;
    }
  
    .marker {
        position: absolute;
        width: 40px;
        height: 40px;
        background: transparent url('../Images/map/pointer.svg') 0% 0% no-repeat padding-box;
        opacity: 1;
    }
    
    .marker1 {
        /* top: 40%;
        left: 80%; */
        top: 57%;
        left: 79%;
    }
    
    .marker2 {
        /* top: 43%;
        left: 56%; */
        top: 63%;
        left: 57%;
    }

    .marker3 {
        top: 69%;
        left: 53%;
    }
    
    .rectangle {
        top: 98px;
        left: 25px;
        width: 7px;
        height: 34px;
        /* UI Properties */
        background: var(--unnamed-color-c70505) 0% 0% no-repeat padding-box;
        background: #C70505 0% 0% no-repeat padding-box;
        opacity: 1;
    }
  
    .close-btn {
        position: absolute;
        /* Layout Properties */
        margin-top: 15px;
        margin-left: 330px;
        /* UI Properties */
        background: transparent url('../Images/map/close.svg') 0% 0% no-repeat padding-box;
        opacity: 1;
        z-index: 1; /* Ensure the close button is above the map image */
    }
  
    .text {
    /* Layout Properties */
        top: 105px;
        left: 52px;
        width: 282px;
        height: 24px;
        /* UI Properties */
        font: var(--unnamed-font-style-normal) normal 800 18px/var(--unnamed-line-spacing-24) Open Sans;
        letter-spacing: var(--unnamed-character-spacing-0);
        color: var(--unnamed-color-333333);
        text-align: left;
        font: normal normal 800 18px/24px Open Sans;
        letter-spacing: 0px;
        color: #333333;
        opacity: 1;
    }
    .button1{
        top: 356px;
      
    }
    .button2{
        top: 426px;
 
    }
    .button3{
       top: 496px;  
    }
    .button4{
        top: 566px;
       
    }

    .text-on-button {
        display: flex;
        text-align: center;
        font: normal normal normal 18px/24px Open Sans;
        letter-spacing: 0px;
        color: #FFFFFF;
        opacity: 1;
        margin-left: 50px;
    }
    
    .button {
        display: flex;
        background: transparent linear-gradient(180deg, #2E2E2E 0%, var(--unnamed-color-000000) 100%) 0% 0% no-repeat padding-box;
        background: transparent linear-gradient(180deg, #2E2E2E 0%, #000000 100%) 0% 0% no-repeat padding-box;
        box-shadow: 1px 3px 1px #0000001A;
        border-radius: 9px;
        opacity: 1;
        width: 300px;
        height: 50px;
        margin-bottom: 15px;
        display: flex; 
        align-items: center;
        justify-content: space-between; 
        padding: 0 15px; /* Add some horizontal padding to create space between text and icon */
      
    }

    .image-icon {
        width: 24px;
        height: 24px;
        background-image: url('../Images/map/copy.png');
        background-size: cover;
    }
  }


  