* {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
}
/* Navbar Desktop */
.navbar {
	z-index: 100;
	position: relative;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
	font-size: 0.9rem;
}
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
	background-color: white;
}
.navbar-container.active {
    position: fixed;
	top: 0;
	left: 0;
	height: 50px;
}
/* Logo */
.navbar-logo{
   background-color: #ffffff;
   width: 5%;
}
.navbar-logo img{
    width: 100%;
    padding-right: 20px;  
}
/* Onglets et CTA */
.navbar-links{
    display: flex;
	justify-content: space-between;
    align-items: center;
	width: 100%;
}
.navbar-item-effect:hover, .dropdown-btn:hover {
	color: #fa983a;
}
#nav_cta{
	display: flex;
	align-items: center;
}
.navbar-item,
.navbar-item-effect,
.dropdown-btn,
.cta-button{
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}
.dropdown-btn{
    background-color: white;
    border: 0;
}
.dropdown-btn.active{
    color: #fa983a;
    font-weight: bold;
	text-decoration: underline;
    text-underline-offset: 8px
}
.navbar-item.active{
    color: #079992;
    font-weight: bold;
    border-bottom: 2px solid #079992;
}
.navbar-item-effect.active{
    color: #fa983a;
    font-weight: bold;
    border-bottom: 2px solid #fa983a;
}
#btn_rdv{
    font-weight: 600;
    border: 2px solid #079992;
    border-radius: 18px;
    box-shadow: 2px 4px 12px #00000014;
    padding: 0.5rem 1rem;
    transition: all .3s cubic-bezier(0,0,.5,1);
}
#btn_rdv:hover{
	color: white;
	box-shadow: 2px 4px 16px #00000029;
	transform: scale3d(1.01,1.01,1.01);
}
/* Téléphone */
.navbar-phone{
    display: flex;
    align-items: center;
    margin: 0 10px;
	padding-right: 25px;
	color: #fa983a;
	font-weight: 600;
}
#iconTel{
	padding-right: 8px;
}
#nav_menu{
	display: flex;
	align-items: center;
	height: 4rem;
}
/* Dropdown Menu */
.dropdown{
    position: inherit;
    display: flex;
	height: 100%;
}
.dropdown-content{
	display: none;
    position: fixed;
	left: 0;
    top: 100%;
    width: 99vw;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 98;
	border-top: 1px solid #e0e0e0;
	margin-top: -1px;
}
.dropdown:hover .dropdown-content{
    display: block;
	opacity: 1;
    visibility: visible;
}
#dropdown-content-list{
	width: 550px;
	margin: auto;
}
.dropdown-content a{
    color: black;
    padding: 12px 75px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover{
	color: #fa983a;
}
.dropdown-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 3;
}
/* Burger Menu */
.burger-menu{
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.burger-menu div{
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.5s;
}
/* État actif */
.burger-menu.active .bar1{
    transform: rotate(-45deg) translate(-8px, 8px);
}
.burger-menu.active .bar2{
    opacity: 0;
}
.burger-menu.active .bar3{
    transform: rotate(45deg) translate(-8px, -8px);
}
/* Mobile Menu */
.mobile-menu{
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
	height: calc(100vh - 50px);
    background-color: #ffffff;
    text-align: center;
}
.mobile-menu a,
.mobile-menu .cta-button{
    display: block;
	margin: 15px 5px;
    padding: 10px 0;
}
.mobile-menu a{
	border-radius: 18px;
    box-shadow: 2px 4px 12px #0000001f;
    overflow: hidden;
    border: 2px solid #fdfcfc;
	font-weight: 600;
	text-decoration: none;
}
#tel_mobile{
	color: #fa983a;
	border-radius: 0px;
    box-shadow: none;
    border: none;
}
.link_mobile{
	color: white;
	background-color: #079992;
}
.home_mobile{
	color: black;
}
/* Responsive*/
@media (max-width: 1023px){
	.navbar {
		height: 50px;
	}
    .navbar-links{
        display: none;
    }
	.navbar-logo{
		width: 20%;
	}
	#nav_cta{
		justify-content: space-evenly;
		align-items: center;
		font-size: 0.7rem;
	}
	.navbar-dropdown{
		color: white;
		background-color: #fa983a;
	}
    .burger-menu{
        display: flex;
    }
    .mobile-menu.active{
        display: block;
		border-top: 1px solid #e9e9e9;
    }
	.mobile-links{
		width: 70vw;
		margin: auto;
	}
	#solutions_mobile{
		color: #fa983a;
		font-size: 1rem;
		font-weight: 600;
	}
	.fa-user-tie, .fa-user{
		margin-right: 15px;
	}
}
@media (max-width: 767px){
	.mobile-links{
		width: 100vw;
	}
}