* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Raleway', sans-serif;
    user-select: none;
}
.content {
	margin: auto;
	max-width: 1200px;
	width: 80%;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
    background-color: #fff;
    overflow-x: hidden;
    
}

a {
    text-decoration: none;
}



/*Navbar*/
#navbar {
	background-color: #191919;
    color: #000;
	margin: 0 auto;
    padding: 15px;
	transition: background-color 0.3s, padding 0.3s;
	z-index: 9999;
	will-change: background-color, padding;
	overflow-x: visible;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  
}

#navbar.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #191919;
    padding: 15px;
}

#navbar.small {
	padding: 10px 0;
	transition: 0.2s ease-in;
}


.nav-inner {
    display: flex;
    justify-content: space-around;
    width: auto;
}

.logo {
	z-index: 9999;
	font-size: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
}



/*Teleofn Link Responsive */
@media (max-width: 767px) {
    .logo {
        display: block;
    }

    .phone-number-logo {
        margin-top: -10%;
        margin-left: 3%;
    }
}

.logo a {
    font-size: 18px;
    color: #fff;
}

.logo img {
	height: 45px;
   
}


.nav-links {
    list-style: none;
    display: flex;
    margin-left: 15%;
    padding: 0;
	font-size: 16px;
    letter-spacing: 1.7px;

}


.nav-links li {
    margin-right: 35px;
	position: relative;
    transition: transform 0.3s ease;
    padding-top: 2%;

}

.nav-inner ul li a {
    color: #fff;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #fff;
  }
  

  .hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    bottom: 0px;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

.hover-underline-animation:hover {
    font-weight: 500;
}


.nav-links li a {
    text-decoration: none;
    color: #000;
	position: relative;
}

.burger-icon {
	cursor: pointer;
	display: none;
	font-size: 32px;
	color: #000;
}

/*Dropdown Navbar*/
.dropdownNavbar {
    color: #fff;
 
}

.nav-item-with-dropdown {
    position: relative;
}

.dropdownNavbar {
    display: inline-block;
    cursor: pointer;
    color: white;
    z-index: 9999;
}

.dropdownNavbar::before {
    content: "";
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
}

.dropdownNavbarContent {
    display: none;
    position: absolute;
    top: 127%;
    background-color: #191919; /* Hintergrundfarbe des Dropdowns */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Schatten des Dropdowns */
    z-index: 9999;
    min-width: 160px; /* Mindestbreite des Dropdowns */
    border-radius: 5px;
}

.nav-item-with-dropdown:hover .dropdownNavbarContent {
    display: block;
}

.dropdownNavbarContent a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}




  /*Dropdwond*/
.dropdown_menu {
    display: none;
    position: fixed; 
    right: 2rem;
    margin-top: 20%;
    height: 280px;
    z-index: 101;
    color: #000;
    width: 200px;
    background: #191919;
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: left 0.3s ease, height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1, 275);
    box-shadow: 3px 3px 10px 3px #191919;
}

.dropdown_menu.open {
   display: block;
   left: 0;
   animation: slideIn 0.3s ease-out forwards;
}

.dropdown_menu li a {
	transition: transform 0.3s ease;
    color: #fff;
}

.dropdown_menu  li a:hover {
	background-color: #607274;
	color: #fff;
	border-radius: 20px;
	padding: 5px 10px;
}



@keyframes slideIn {
    from {
        left: -500px;
    }
    to {
        left: 8px;
    }
}



.dropdown_menu li {
	padding: 3%;
	display: flex;
	align-items: center;
	justify-content: center;
}

 

 /* Media Query for Mobile Devices */
 @media only screen and (max-width: 768px) {
	.nav-links, .nav-btn {
		display: none;
	}




	.burger-icon {
		display: block; 
        margin-left: 8%;
        padding-top: 1.3%;
        color: #fff;
	}
}

/*Responsive Tablet */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
	.nav-links, .nav-btn {
		display: none;
	}


	.burger-icon {
		display: block; 
	}

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .burger-icon {
        color: #fff;
    }
    
    .dropdown_menu {
        margin-top: 13%;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1366px) and (orientation: landscape) {
    .nav-links, .nav-btn {
		display: none;
	}


	.burger-icon {
		display: block; 
        color: #fff;
	}

    .dropdown_menu {
        margin-top: 6%;
    }
}