/**handles:styles**/
/*
Theme Name: Bellevue Medical Group
Author: UX & Tollerei
Author URI: www.uxtollerei.at
Version: 1.10.25

"ein fux muss tun was ein fux tun muss" - alphafux
*/

body.neurozentrum-pfaeffikon-sz section.angebot .btn--box--right a:last-child,
body.neurocenter-uster section.angebot .btn--box--right a:last-child,
body.neurozentrum-uster section.angebot .btn--box--right a:last-child{
    display: none;
}

.footer--nav{
	margin-right:0px !important;
}

.flex--strech{
	flex: 1 1 calc(25% - 20px);
}

footer p.footer-title{
font-style: normal;
    font-size: 18px !important;
    line-height: 29px !important;
    letter-spacing: -.005em !important;
    -webkit-font-smoothing: antialiased;
	font-weight: 700 !important;
    font-family: dinpromedium, sans-serif !important;
}


.centralNumber {
    background: #0173a2;
    position: absolute;
    right: 10px;
    top: 60px;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -.01em;
    color: #fff !important;
    padding: 10px;
	text-decoration: none;
	display: block;
    min-width: 398px;	
}
#header.bg--fff.nav-up .centralNumber {
	display:none;
}
@media only screen and (max-width: 600px) {
	.centralNumber {
		font-size: 12px;
        width: auto;
        min-width: auto;        
        right: 10px;	
		top: 55px;
        z-index: 1;
		line-height: normal;
	}
}

/* Podstawowe stylowanie menu */
.flex-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;  /* Zapewnia równy odstęp między kolumnami */
    list-style: none;                /* Usuwa domyślne kropki z listy */
    padding: 0;
    margin: 0;
}

.flex-menu li {
    flex: 1 1 calc(25% - 20px);      /* Każdy element zajmuje 25% szerokości minus margines */
    box-sizing: border-box;
	margin-bottom: 10px;
}

.flex-menu li a {
    display: block;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    text-align: left;              /* Centrujemy tekst */
    transition: background-color 0.3s ease;
	font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
}

/* Efekt hover */
.flex-menu li a:hover {
}

/* Responsywność - węższe ekrany */
@media (max-width: 1024px) {
    .flex-menu li {
        flex: 1 1 calc(50% - 20px);  /* Dwie kolumny na mniejszych ekranach */
    }
}

@media (max-width: 768px) {
    .flex-menu li {
        flex: 1 1 100%;              /* Pojedyncza kolumna na małych ekranach */
    }
}