/* START => GLOBAL STYLES */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*outline: 1px solid red;*/
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

a, img {
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

a, a:hover, a:focus, button{
    text-decoration: none !important;
}

button, input, select, textarea{
    outline: none;
}


.row{
    margin-right: unset;
    margin-left: unset;
}

::-webkit-scrollbar {
    display: none;
}

/* Firefox */
html {
    scrollbar-width: none;
}

/* IE & old Edge */
body {
    -ms-overflow-style: none;
}

.bg_paint{
    background-color: #9090ff;
}

/* START => HEADER */

header{
    width: max-content !important;
    padding: 0;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header_style{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding-left: 100px;
    padding-right: 100px;
    padding: 10px;
}


.header_style .header_logo {
    width: 150px;
    margin: 0 !important;
    padding: 10px;
}

.language_dropdown{
    width: max-content;
}

.header_navbar{
    max-width: max-content;
    margin: 0;
}

.header_navbar .navbar{
    min-height: unset;
    margin-bottom: unset;
}

.header_navbar .navbar-nav>li>a{
    padding-top: unset;
    padding-bottom: unset;
    transition: all 0.2s ease;
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

.header_style ul.list-inline{
    margin-bottom: 0 !important;
    margin-left: 0 !important;
}

.header_style #top-links ul li{
    padding-right: 10px !important;
}

.nav>li>a:focus, .nav>li>a:hover{
    background-color: unset;
    color: #578d95;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover{
    background-color: unset;
    border-color: unset;
}

.fa{
    color: #333;
    font-size: 20px;
}

.langauage_select_center{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.langauage_select_center img{
    width: 25px;
}

.count-icon {
    position: relative;
}

.count-icon::after {
    content: attr(data-count);
    position: absolute;
    bottom: -4px;
    right: -8px;
    height: 15px;
    padding: 0 5px;
    background: red;
    color: white;
    font-size: 9px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide badge if count is 0 or missing */
.count-icon[data-count="0"]::after,
.count-icon:not([data-count])::after {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* START => HOME PAGE */

.hero-banner{
    height: 100vh;
    overflow: hidden;
}

.hero-banner.swiper-viewport{
    border: unset;
    box-shadow: unset;
}

.hero-banner .swiper-button-next, .hero-banner .swiper-button-prev{
    opacity: 0;
    visibility: hidden;
}
.hero-banner .swiper-slide{
    width: 100%;
    height: 100vh;
}

.hero-banner .swiper-slide img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.hero-banner .banner-layer{
    position: absolute;
    width: 40%;
    z-index: 2;
    height: 100vh;
    top: 0;
    right: 0;
}
