body {
	color: #939393;
	font-family: "Poppins", sans-serif;
	overflow-x: hidden !important;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
    background: #3d3d3d;
}


h1,
h2,
h3,
h4 {
	font-weight: 700;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
	margin: auto;
	display: block;
	width: 90%;
	max-width: 700px;
}

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.close:hover,
.close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

.modal-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	/* This will give some space between the buttons */
	margin-top: 20px;
}

.modal-content img {
	width: 105%;
	/* Reducing the width to 75% will make it 25% smaller */
	margin: 0 auto;
	/* This will center the image */
	display: block;
	/* This ensures the margin works correctly */
}


.modal-buttons button {
	padding: 2px 2px;
	background-color: #f26522;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s;
}

.modal-buttons button:hover {
	background-color: #555;
}

.modal-content h2,
.modal-content p {
	text-align: center;
	margin: 10px 0;
}

.navbar {
	height: 9vh;
	/* Adjust this value as needed */
	background-color: #333;
	/* Example color */
	/* Other styles as needed */

}

.navbar-menu {
    width: 100%;
    margin-left: -50px;
}

.navbar h2 {
    left: 78%;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    padding: 30px;
    display: inline-block;
    position: relative;
    padding-left: 25px;
}

.logot {
    width: 310px; 
    position: absolute;
    bottom: 125px;
    right: 35px;
    height: auto;
}

.logo {
    width: 320px;
    justify-content: center;
    align-content: center;
    right: 45%;
    position: fixed;
}

.footer {
	height: 12.5vh;
	/* Adjust this value as needed */
	background-color: #333;
}

.footer p {
    color: gainsboro;
    font-size: 17px;
    padding-top: 30px;
}

.map svg {
  display: block;
  width: 100%;
  height: 782px;
  padding-bottom: 25px;
  padding-top: 25px;
}
.map path {
  fill: #f39c12;
  stroke: rgba(0,0,0,0.2);
  stroke-width: 1;
  transition: 0.5s all linear;
}
.map path:hover {
  fill: #e67e22;
  transition: 0s all linear;
  cursor: pointer;
}


#stateModal .modal-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#stateModal h2,
#stateModal p {
	margin: 0;
	text-align: center;
    color: #f26522;
    font-size: 35px;
}

#stateModal .btn {
	margin: 0 5px;
}

#navbar {
	background-color: #333;
	color: white;
	padding: 15px;
	text-align: center;
	display: inline-block;
}

#map-container {
	/* You can set a specific height or leave it to be auto */
	height: auto;
	padding: 20px;
}

#footer {
	background-color: #333;
	color: white;
	padding: 15px;
	text-align: center;
}

#mapInfoModal {
    display: none; 
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 1001; 
    background-color: #3d3d3d; 
    padding: 20px; 
    border-radius: 5px;
    width: 550px;
    color: #c9c9c5;
}

#mapInfoModal h2 {
    padding: 15px;
    color: #f26522;
}

#mapInfoModal b {
    color: #f3f3f3;
}

#mapInfoModal p {
    padding: 5px;
}
#mapInfoBtn {
    position: absolute; 
    top: 100px; 
    left: 30px; 
    z-index: 1000;
    padding: 11px;
    background: #3d3d3d;
     border: 0;
    -webkit-appearance: none;
}

#mapInfoBtn i {
    font-size: 31px;
    color: #e67e22;
}

.button {
	padding: 2px 2px;
	background-color: #f26522;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s;
    font-weight: 700;
    font-size: 14px;
    font-family: Poppins, sans-serif;
}

.button:hover {
	background-color: #555;
}


#mapInfoBtn h2 {
    color: #f3f3f3;
    display: inline-block;
    font-family: Poppins, sans-serif;
    font-size: 31px;
    text-transform: uppercase;
}

#mapInfoBackdrop {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.8); 
    z-index: 1000;
}


@media screen and (max-width:928px) {
    .logo {
        right: -15%;
        width: 269px;
        position: relative;
    }
    
    .logot {
        display: none;
    }
    
    .footer {
        margin-top: 70px;
    }
    .map svg {
        display: block;
        width: 100%;
        height: 553px;
        padding-bottom: 5px;
        padding-top: 25px;
        margin-bottom: -25px;
    }

    #mapInfoBtn {
        display: none;
    }
    
    .navbar h2 {
        font-size: 0.9rem; /* Slightly reduce font size for mobile */
        padding: 15px; /* Reduce padding */
    }
    
    .navbar-menu {
    width: 100%;
    left: -205px;
    position: absolute;
    
}
    

    
}
