body.menu-open {
	overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    margin-bottom: 25px;
    font-weight: 600;
}
a:hover {
	text-decoration: none;
	color: #fff;
}
.bold-team{
    font-weight: 900;
}

.rainbow-dots,
.rainbow-dots-image {
	width: 100% !important;
	max-width: 400px !important;
	height: auto !important;
	margin: 20px auto 30px auto;
	display: block;
}
/* .navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 50px;
	z-index: 1000;
	background-color: transparent;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
} */
 .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 1000;
    background-color: #00000000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(4px);
}
@font-face {
  font-family: 'Roboto';
  src: url('/web/fonts/libs/Roboto.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.navbar-logo .logo-image {
	height: 40px;
	width: auto;
	display: block;
}

.navbar-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
	flex-grow: 1;
	justify-content: center;
}

.navbar-links li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.navbar-links li a:hover {
	color: #DD6822!important;
}

.navbar-button {
	margin-left: auto;
}

.navbar-button a {
	background-color: transparent;
	color: #ffffff;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	padding: 10px 20px;
	border: 1px solid #ffffff;
	border-radius: 5px;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar-links li {
    position: relative; 
    list-style: none; 
}
@media (min-width: 1025px) {
 .navbar-links li a.active-link::after {
        content: ''; 
        position: absolute;
        bottom: -10px;      
        left: 0;           
        width: 100%;       
        height: 3px;       
        background-color: #ff8c00; 
        border-radius: 2px;
    }
}

@media (max-width: 1024px) {
    .navbar-links li a.active-link::after {
        display: none; 
    }
    .navbar-links li {
        border-bottom: none; 
    }
}

span.dropdown-link:hover {
	color: #DD6822 !important;
}

span.dropdown-link {
	transition: color 0.3s ease;
	cursor: pointer;
}

.navbar-links li a.active-link {
    color: #ffffff !important; 
    font-weight: 500;
}

.navbar-button-mobile {
	display: none;
	margin-left: auto;
}

.navbar-button a:hover {
	background-color: #ffffff;
	color: #000000;
}

.navbar.scrolled {
	background-color: #100f0fde;
	box-shadow: 0px 0px 8px rgb(0 0 0);

}


.navbar.scrolled .navbar-links li a {
	color: #ffffff;
}

.navbar.scrolled .navbar-button a {
	color: #ffffff;
	border-color: #ffffff;
}

.navbar.scrolled .navbar-button a:hover {
	background-color: #ffffff;
	color: #000000;
}
.navbar.scrolled .navbar-links li a:hover {
    color: #DD6822 !important;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	position: relative;
	z-index: 1001;
	color: #fff;
}

.hamburger {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #ffffff;
	border-radius: 5px;
	transition: transform 0.3s ease;
}

.hamburger::before,
.hamburger::after {
	content: '';
	position: absolute;
	width: 25px;
	height: 3px;
	background-color: #ffffff;
	border-radius: 5px;
	transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger::before {
	top: -8px;
}

.hamburger::after {
	top: 8px;
}

.menu-toggle.active .hamburger {
	transform: rotate(45deg);
}

.menu-toggle.active .hamburger::before {
	top: 0;
	transform: rotate(90deg);
}

.menu-toggle.active .hamburger::after {
	top: 0;
	transform: rotate(-90deg);
}
.nav ul {
	list-style: none;
	display: flex;
	gap: 20px;
}

.nav a {
	text-decoration: none;
	color: #4b4242;
	font-weight: 500;
}

.nav a:hover {
	color: #5e007b;
}
.footer-section {
	background-color: #333333;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	padding: 60px 20px 20px;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	padding-bottom: 40px;
}

.footer-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
}

.footer-logo {
	width: 200px;
	height: auto;
}

.footer-contact p {
	font-size: 0.9rem;
	color: #ccc;
	margin: 5px 0;
}

.footer-right {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #ddd;
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid #444;
	padding-top: 20px;
	font-size: 0.8rem;
	color: #888;
}

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 40px;
	}

	.footer-right, .footer-left {
		align-items: center;
		text-align: center;
	}
}
@media (max-width: 1024px) {
	.navbar-button {
		display: none;
	}

	.navbar-links {
		display: none;
		flex-direction: column;
		width: 100%;
		text-align: center;
		background-color: #100f0fde;
		transition: transform 0.3s ease;
		/*transform: translateY(-100%);*/
		padding: 20px 0;
		position: absolute;
		top: 100%;
		left: 0;
	}

	.navbar-links li a {
		color: #ffffff;
	}

	.navbar-links.active {
		display: flex;
		/*transform: translateY(0);*/
		left: 0;
		gap: 0;
		position: fixed;
		top: 70px;
		height: calc(100vh - 70px);
		justify-content: flex-start;
		overflow: hidden;
		overflow-y: auto;
	}

	.navbar-links li {
		margin: 10px 0;
	}

	.navbar-button-mobile {
		display: block;
		margin-top: 20px;
	}

	.navbar-button-mobile a {
		background-color: transparent;
		color: #ffffff;
		text-decoration: none;
		font-size: 1rem;
		font-weight: 600;
		padding: 10px 20px;
		border: 1px solid #ffffff;
		border-radius: 5px;
		transition: background-color 0.3s ease, color 0.3s ease;
	}

	.navbar-button-mobile a:hover {
		background-color: #ffffff;
		color: #000000;
	}

	.menu-toggle {
		display: block;
	}

	.dropdown-parent.active .dropdown-menu li > a {
		display: flex;
		justify-content: center;
		padding: 10px 15px;
	}
}
@media (max-width: 576px) {
	.navbar-logo .logo-image {
		height: 30px;
	}
}



.dropdown-parent {
	position: relative;
}

.dropdown-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	border-top: none;
	z-index: 1000;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	display: none;
	background-color: #100f0fde;
}

.dropdown-menu li a {
	padding: 10px 15px;
	white-space: nowrap;
	font-size: 0.95em;
	display: block;
	width: 100%;
	color: #ffffff !important;
}

.dropdown-menu li a:hover {
	background-color: #f0f0f0!important;
	color:  #F42B37!important;
}

.dropdown-parent.active .dropdown-menu {
	display: block;
	visibility: visible;
	opacity: 1;
}
@media (max-width: 768px) {
	.dropdown-parent {
		position: static;
	}
	.dropdown-menu {
		position: static;
		width: 100%;
		border: none;
		box-shadow: none;
		background-color: rgba(0, 0, 0, 0.2);
	}
	.dropdown-menu li a:hover {
		color:  #F42B37;
	}
	.dropdown-menu li a {
		padding-left: 45px;
		text-align: left;
		color: #ffffff !important;
	}
}