:root {
--h-height: 90px; --h-height-mob: 70px;
--c-blue: #003d82;
--c-dark: #191919;
} body.new-locked { overflow: hidden; height: 100vh; } .new-header-spacer { height: var(--h-height); width: 100%; display: block; }
@media (max-width: 1200px) { .new-header-spacer { height: var(--h-height-mob); } } .new-site-header {
position: fixed; top: 0; left: 0; right: 0;
height: var(--h-height);
background: #fff;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
z-index: 2000;
display: flex; align-items: center;
}
.new-container { 
max-width: 1400px;
margin: 0 auto; 
width: 100%; 
padding: 0 15px; 
height: 100%;
}
.new-header-inner {
display: flex; 
justify-content: space-between; 
align-items: center;
height: 100%;
} .new-branding { display: flex; align-items: center; flex-shrink: 0; }
.new-logo img { 
height: 65px; width: auto; 
display: block; 
object-fit: contain;
transition: all 0.3s ease;
}
.new-divider { 
width: 1px; height: 25px; background: #ddd; margin: 0 15px; 
}
.new-partners img { 
height: 28px; width: auto; display: block; opacity: 0.9; object-fit: contain;
} .new-desktop-nav { 
flex-grow: 1; 
margin: 0 15px; 
}
.new-menu-list { 
display: flex; 
list-style: none !important; 
padding: 0 !important; 
margin: 0 !important; 
justify-content: center; 
gap: 15px; 
flex-wrap: wrap; 
}
.new-menu-list > li { margin: 0 !important; padding: 0 !important; }
.new-menu-list > li > a {
text-decoration: none !important; 
color: var(--c-dark); 
font-size: 13px; text-transform: uppercase; 
font-weight: 700; 
font-family: "MullerBold", sans-serif;
transition: color 0.2s;
white-space: nowrap;
}
.new-menu-list > li > a:hover { color: var(--c-blue); } .new-menu-list li { position: relative; }
.new-menu-list .sub-menu {
position: absolute; top: 100%; left: 0;
background: #fff; min-width: 240px; padding: 10px 0;
list-style: none !important; margin: 0 !important;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
opacity: 0; visibility: hidden; transform: translateY(10px);
transition: all 0.2s; border-radius: 8px; z-index: 2001;
border-top: 3px solid var(--c-blue);
}
.new-menu-list li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.new-menu-list .sub-menu a { 
display: block; padding: 10px 20px; 
text-decoration: none; color: #333; font-size: 13px;
font-family: "MullerRegular", sans-serif; border-bottom: 1px solid #f5f5f5;
text-transform: none;
}
.new-menu-list .sub-menu a:hover { background: #f9f9f9; color: var(--c-blue); } .new-actions { 
display: flex; 
align-items: center; 
gap: 10px; 
flex-shrink: 0; 
}
.new-contacts { 
text-align: right; 
display: flex; 
flex-direction: column; 
justify-content: center; 
}
.new-phone { 
display: block; font-size: 15px; font-weight: bold; 
color: var(--c-dark); text-decoration: none; 
font-family: "MullerBold", sans-serif; line-height: 1.1; margin-bottom: 2px;
}
.new-email { 
display: inline-block; font-size: 12px; color: var(--c-blue); 
text-decoration: none; border-bottom: 1px dashed rgba(0,61,130,0.3); 
font-family: "MullerRegular", sans-serif;
}
.new-btn {
background: var(--c-blue); color: #fff; padding: 8px 16px;
border-radius: 50px; text-decoration: none; 
font-family: "MullerBold", sans-serif; font-size: 12px;
transition: background 0.3s; white-space: nowrap;
}
.new-btn:hover { background: #002a5c; color: #fff; } .new-hamburger {
display: none; background: none; border: none; cursor: pointer;
flex-direction: column; gap: 5px; padding: 5px;
}
.new-hamburger span { display: block; width: 25px; height: 3px; background: var(--c-blue); border-radius: 3px; transition: 0.3s; } @media (max-width: 1300px) {
.new-partners, .new-divider { display: none; } 
}
@media (max-width: 1200px) {
.new-site-header { height: var(--h-height-mob); }
.new-desktop-nav, .new-contacts, .new-btn { display: none; } 
.new-hamburger { display: flex; margin-left: auto; }
.new-logo img { height: 35px; } 
.new-branding { flex-grow: 1; } 
} .new-mobile-nav {
position: fixed; top: 0; right: 0; bottom: 0; width: 320px;
background: #fff; z-index: 3000;
transform: translateX(100%); transition: transform 0.3s;
box-shadow: -5px 0 30px rgba(0,0,0,0.15);
display: flex; flex-direction: column;
}
.new-mobile-nav.is-open { transform: translateX(0); }
.new-mobile-overlay {
position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2999;
opacity: 0; visibility: hidden; transition: opacity 0.3s;
}
.new-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.new-mobile-header {
padding: 15px 20px; display: flex; justify-content: flex-end; border-bottom: 1px solid #eee;
}
.new-mobile-close {
background: none; border: none; font-size: 32px; cursor: pointer; color: var(--c-blue); line-height: 1;
}
.new-mobile-content { padding: 10px 20px 20px; overflow-y: auto; height: 100%; }
.new-mobile-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.new-mobile-list > li { margin-bottom: 0; border-bottom: 1px solid #eee; }
.new-mobile-list a { 
text-decoration: none; color: var(--c-dark); font-size: 16px; 
display: flex; justify-content: space-between; align-items: center;
font-family: "MullerMedium", sans-serif; padding: 12px 0;
}
.mob-arrow {
display: inline-block; width: 10px; height: 10px; 
border-right: 2px solid var(--c-blue); border-bottom: 2px solid var(--c-blue);
transform: rotate(45deg); transition: transform 0.3s; margin-right: 10px;
}
.is-expanded .mob-arrow { transform: rotate(-135deg); }
.new-mobile-list .sub-menu {
display: none; 
background: #f9f9f9; padding: 5px 20px;
list-style: none !important; margin: 0 !important;
}
.new-mobile-list .sub-menu a { font-size: 14px; padding: 8px 0; border-bottom: 1px dashed #ddd; }
.new-mobile-footer { margin-top: 20px; text-align: center; }
.new-mob-phone { font-size: 20px; font-weight: bold; color: var(--c-blue); display: block; margin-bottom: 15px; text-decoration: none; font-family: "MullerBold", sans-serif; }
.new-btn.full-width { display: block; width: 100%; text-align: center; padding: 12px; font-size: 14px; margin-bottom: 10px;}
.new-btn.btn-outline { background: transparent; border: 2px solid var(--c-blue); color: var(--c-blue); } .main, .hero-section {
padding-top: 0 !important;
margin-top: 0 !important;
} .container {
padding-top: 0 !important;
}    .description_controls .arr {
position: absolute;
z-index: 20;
width: 45px;
height: 45px;
background: #003d82;
border-radius: 50%;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
} .description_controls .arr img {
display: none !important;
} .description_controls .arr::after {
content: '';
display: block;
width: 10px;
height: 10px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
}
.description_controls .arr.prev::after {
transform: rotate(-135deg);
margin-left: 4px;
}
.description_controls .arr.next::after {
transform: rotate(45deg);
margin-right: 4px;
} @media (min-width: 992px) {
.description_controls .arr {
top: 50%;
transform: translateY(-50%);
transition: background 0.3s, transform 0.3s;
}
.description_controls .arr.prev { left: -25px; }
.description_controls .arr.next { right: -25px; }
@media (hover: hover) and (pointer: fine) {
.description_controls .arr:hover {
background: #002a5c;
transform: translateY(-50%) scale(1.1);
}
}
} @media (max-width: 991px) {
.description .d-flex {
display: block !important;
width: 100% !important;
}
.description_slider-wrap {
width: 100% !important;
max-width: 100% !important;
position: relative !important;
padding-bottom: 70px !important;
margin: 0 auto 20px !important;
overflow: visible !important;
}
.description_slider,
.description_slider .slick-slide {
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box !important;
display: block !important;
}
.description_slider img {
width: 100% !important;
height: auto !important;
margin: 0 auto !important;
object-fit: contain !important;
} .description_controls .arr {
top: auto;
bottom: 0;
transform: none;
}
.description_controls .arr.prev { left: 10px; }
.description_controls .arr.next { right: 10px; }
}   .history {
background-color: #ffffff;
padding: 60px 0;
overflow: hidden;
} .history_top {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 40px;
margin-bottom: 50px;
}
.history_text {
flex: 1;
min-width: 300px;
}
.history_text-subtitle {
font-family: "MullerBold", sans-serif;
font-size: 32px;
line-height: 1.2;
color: #191919;
margin-bottom: 20px;
text-transform: uppercase;
}
.history_text p {
font-family: "MullerLight", sans-serif;
font-size: 16px;
line-height: 1.5;
color: #444;
margin-bottom: 15px;
}
.history_text a {
color: #003d82;
font-family: "MullerMedium", sans-serif;
text-decoration: none;
border-bottom: 1px solid rgba(0, 61, 130, 0.3);
} .history_slider-wrap {
flex: 1;
min-width: 300px;
max-width: 600px;
border-radius: 20px;
overflow: hidden;
position: relative;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.history_slider_img {
width: 100%;
height: auto;
}
.history_slider_img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .history_slider_img::before { display: none; } .history_stats_grid {
display: grid;
grid-template-columns: repeat(4, 1fr); gap: 20px;
margin-top: 20px;
} .stat_card {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 15px;
padding: 25px 15px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 160px;
transition: transform 0.3s ease;
}
.stat_card:hover {
transform: translateY(-5px);
background-color: #fff;
box-shadow: 0 10px 30px rgba(0, 61, 130, 0.1);
border-color: #003d82;
} .stat_num {
font-family: "MullerBold", sans-serif;
font-size: 42px;
color: #003d82;
line-height: 1;
margin-bottom: 10px;
display: block;
} .stat_desc {
font-family: "MullerRegular", sans-serif;
font-size: 14px;
color: #666;
line-height: 1.3;
} @media (max-width: 991px) {
.history_top {
flex-direction: column; }
.history_stats_grid {
grid-template-columns: repeat(2, 1fr); }
.history_slider-wrap {
width: 100%;
max-width: 100%;
}
}
@media (max-width: 575px) {
.history_stats_grid {
grid-template-columns: 1fr; gap: 15px;
}
.stat_card {
flex-direction: row; justify-content: flex-start;
text-align: left;
padding: 20px;
min-height: auto;
}
.stat_num {
margin-bottom: 0;
margin-right: 20px;
font-size: 36px;
min-width: 80px;
}
.history_text-subtitle {
font-size: 26px;
}
}    .new-branding {
display: flex;
align-items: center;
flex-shrink: 1; 
}
.brand-wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
} @media (min-width: 1201px) { .mobile-partners-subrow, 
.mob-partners-label { 
display: none !important; 
}
.desktop-partners-block {
display: flex;
align-items: center;
}
.new-partners {
display: flex;
align-items: center;
gap: 20px;
margin-left: 20px;
}
.new-partners img.partner-item {
height: 32px;
width: auto;
object-fit: contain;
transition: transform 0.3s;
}
.new-partners img.partner-item:hover { transform: scale(1.1); }
} @media (max-width: 1200px) { .desktop-partners-block { display: none !important; } .new-logo img {
height: 45px !important; width: auto;
display: block;
margin-bottom: 0; object-fit: contain;
object-position: left; 
margin-left: -2px;
} .mob-partners-label,
.mobile-partners-subrow {
display: none !important;
}
} .menu-partners-block {
margin-top: 20px;
padding-top: 15px;
border-top: 1px solid #eee;
text-align: center;
}
.new-mobile-partners-title {
font-size: 13px;
color: #999;
text-transform: uppercase;
margin-bottom: 10px;
font-family: "MullerBold", sans-serif;
}
.menu-partners-block .new-mobile-partners-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}
.menu-partners-block img {
height: 35px; 
width: auto;
object-fit: contain;
}