body {
	background-color: #fcfcfc;
}

.fixed-top-right {
    position: fixed;
    top: 0;
    right: 0;
    margin: 10px; /* Optional: to add some space from the edges */
    z-index: 1000; /* Optional: to ensure it appears above other elements */
}

.language-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f2f2f2;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

.language-button:hover {
    background-color: #e9ecef;
}

/*
.sidebar {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; 
    background-color: #f2f2f2;
    padding: 20px;
}

.sidebar-item {
	display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    position: relative;
    left: 0;
}

.sidebar-item:hover,
.sidebar-item select,
.sidebar-item select option {
	background-color: #e9ecef;
}
*/

.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #f1f1f1;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .sidebar-left {
	display: flex;
	align-items: center;
  }
  
  .hamburger-menu {
	display: none;
	cursor: pointer;
	padding: 10px;
	margin-right: 10px;
  }
  
  .hamburger-menu span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #333;
	margin-bottom: 5px;
	border-radius: 5px;
  }
  
  .sidebar-item {
	color: #333;
	text-decoration: none;
	padding: 10px;
	transition: background-color 0.3s ease;
  }
  
  .sidebar-item:hover {
	background-color: #e6e6e6;
  }
  
  .sidebar-item i {
	margin-right: 5px;
  }

.content {
	margin-left: 6em;
	padding: 6em;
	padding-bottom: 7em;
	text-align: center;
}

.content p {
	text-align: justify;
}

h5 {
	text-align: left;
}


.content h1 {
	margin-bottom: 0.5em;
	background-color: #d5e7f1;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.content textarea {
	margin-bottom: 2em;
}

#chatbot p {
	margin-bottom: 2em;
}

#note p {
	text-align: center;
	margin-top: 2em;
}

#send-btn,
#next-btn {
	text-decoration: none;
	color: black;
	margin-top: 50px;
	padding: 2em;
	padding-top: 1em;
	padding-bottom: 1em;
	background-color: #4397c7;
	border-radius: 1em;
}

#send-btn:disabled {
	background-color: gray;
	color: white;
	cursor: not-allowed;
}

#feedback textarea {
	padding-bottom: 2em;
	margin-bottom: 1em;
}
#feedback{
	padding-bottom: 10em;
}
.content li {
	list-style: none;
}


select {
	border: none;
	background-color: #f2f2f2;
}

option {
	background-repeat: no-repeat;
	background-position: 0.5em;
	padding-left: 2em;
}



.footer-container {
	margin-left: 10%;
}

.footer-row {
	padding: 0.5rem;
	justify-content: center;
}

.copyright {
	text-align: center;
}

.partners-txt {
	align-items: center;
	background-color: red;
	width: 100%;
	text-align: center;
}



.locations-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust the gap as needed */
    justify-content: space-between; /* Adjust the alignment as needed */
}

.locations {
    flex: 1 1 30%; /* Adjust the basis as needed */
    text-align: center;
}

.locations img {
    max-width: 100%;
    height: auto;
}


.resources {
	display: flex;
	flex-wrap: wrap;
}

.resources-img {
	width: 50%;
	padding: 10px;
	box-sizing: border-box;
}

.resources-img img {
	max-width: 100%;
	height: 6em;
	display: block;
	margin: 0 auto;
}
/**/

/**/
@media (max-width: 768px) {
    .hamburger-menu {
            cursor: pointer;
            display: inline-block;
        }
    .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background-color: black;
        transition: all 0.3s ease;
    }
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    #sidebar {
        width: 250px;
        height: 100%;
        background-color: #f4f4f4;
        position: fixed;
        top: 0;
        left: -250px;
        transition: all 0.3s ease;
        padding-top: 50px;
    }
    #sidebar.active {
        left: 0;
    }

	.content {
		margin-left: 0;
		padding: 2em;
	}

	.footer {
		position: relative;
		flex-wrap: nowrap;
	}

	.fixed-bottom {
		position: relative;
	}

	.logo {
		flex: 0 0 auto;
		margin: 0 5px;
		max-width: 100%;
	}

	.locations {
		flex: 0 0 100%;
	}

	.resources-img {
		width: 100%;
	}

	.sidebar {
		width: 70%;
		height: 100%;
		padding-top: 0;
		background-color: #f2f2f2;
		overflow-y: auto;
		position: fixed;
		top: 0;
		transition: all 0.3s;
		transform: translateX(-40em);
		transition: transform 0.3s ease;
	}

	.sidebar.active {
		width: 70%;
		height: 100%;
		padding-top: 0;
		background-color: #f2f2f2;
		overflow-y: auto;
		left: 0;
		transform: translateX(0);
	}

	.content {
	    margin-top: 2em;
		margin-left: 0;
		padding: 2em;
	}

	.hamburger-menu {
		display: block;
		z-index: 999999;
	}

	.hamburger-menu {
		position: fixed;
		top: 10px;
		left: 10px;
		z-index: 9999;
		cursor: pointer;
		display: block;
		width: 3em;
		height: 3em;
		background-color: #333;
		border-radius: 4px;
	}

	.hamburger-menu span {
		display: block;
		width: 20px;
		height: 3px;
		background-color: #fff;
		margin: 5px auto;
		transition: all 0.3s;
	}

}