* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
}

.user-logged-in header.site-header {
    position: unset;
}

.menu {
    gap: 2.5rem;
}

.site-header {
    position: fixed;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    transition: .35s ease;
    border-bottom: 1px solid #eee;
    padding: 0 30px;
}

.site-header.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.24));
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow: none;

}
/* .navbar {

    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #111;
    gap: 12px;
}

.brand-logo {
    width: 42px;
    height: auto;

}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text h3 {
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: unset !important;
}
.brand-text span {

    font-size: 11px;
    letter-spacing: 2px;
    color: #666;

}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    padding-left: unset !important;

}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .8px;
    transition: .3s;
    text-transform: uppercase;

}

.nav-links a:hover,
.nav-links .is-active a {
    color: #f46c1b;

} */


.header-right {
    display: flex;
    align-items: center;
    gap: 18px;

}

.btn-contacts {
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: .35s;

}

.btn-contacts:hover {
    background: #f46c1b;
}


.close-menu {
    display: none;
}

/* Global Fix */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    width: 100%;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
    max-width: 100%;
}

/* Header top css */

.top-contact-bar {
	display: block;
	padding: 0.45rem 0;
	background: #050505;
}

.top-socials {
    display: flex;
    gap: 15px;
}

.top-socials a {
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.top-socials a:hover {
    color: #f4b400;
}

a.top-contact-link {
    color: #fff;
    text-decoration: none;
}