* {
    font-family: 'Cairo', sans-serif;
    font-weight: normal;
    font-style: normal;
}


::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-200);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}


.nav-link {
    color: var(--tertiary) !important;
}


.nav-link:hover {
    color: var(--secondary) !important;
}

#header .header-nav.header-nav-line nav > ul:not(:hover) li > a.active {
    color: var(--secondary) !important;
}

.dropdown-item-language {
    color: var(--dark) !important;
}

@media (max-width: 992px) {
    .dropdown-item-language {
        color: var(--tertiary) !important;
    }
}

.fw-bold-500 {
    font-weight: 500 !important;
}

.brand-image {
    width: 200px;
    object-fit: contain;
    /*height: 140px;*/
    transition: .3s ease-in-out;
}

.brand-image:hover {
    transform: scale(1.2);
    filter: drop-shadow(1px 1px 3px var(--secondary));
}

.custom-shadow {
    filter: drop-shadow(0 -10px 30px rgba(255, 255, 255, 0.3)) /* Top shadow */ drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3)); /* Bottom shadow */
}

.product-card {
    min-height: 351px;
}


@media (max-width: 992px) {
    .product-card {
        min-height: 200px;
    }
}

@media (max-width: 1400px) {
    .product-card {
        min-height: 260px;
    }
}

.product-card-body {
    display: flex;
    flex-direction: column;
}

.mt-auto {
    margin-top: auto;
}

.product-brochure-col {
    border-right: 2px solid white !important;
    border-left: 2px solid white !important;
}

.border-left-none {
    border-left: none !important;
}

.border-right-none {
    border-right: none !important;
}

.w-35 {
    width: 35% !important;
}


.product-brochure-show-btn {
    transition: .3s ease-in-out;
}

.product-brochure-show-btn:hover {
    background-color: var(--tertiary-rgba-80) !important;
}

.footer-copyright {
    border-top: 2px solid var(--tertiary) !important;
}

.p-relative {
    position: relative !important;
}

.p-absolute {
    position: absolute !important;
}

.item-in-filter {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 148px !important;
    overflow: hidden !important;
}

.item-in-filter img {
    width: 75% !important;
    object-fit: contain;
}

.f-thumbs__slide {
    background-color: var(--primary-200);
    border-radius: 10px;
}

.is-nav-selected {
    background-color: var(--secondary);
}
/*.f-carousel__slide {
    filter: drop-shadow(0 -10px 30px rgba(255, 255, 255, 0.3)) drop-shadow(0 -10px 30px rgba(255, 255, 255, 0.3));
}*/
.f-carousel__slide {
    position: relative;
    background: radial-gradient(circle, rgba(10, 38, 86, 0.7) 30%, rgba(0, 0, 0, 0) 45%);
}

.f-carousel__slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(227, 236, 252, 0.2) 10%, rgba(0, 0, 0, 0) 45%);
    z-index: 1;
}

.form-control {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 10px;
    color: white;
}

label {
    color: var(--tertiary);
    font-weight: 700 !important;
}

.tp-leftarrow.metis:before {
    background-image: url('/frontend/img/slider-left-arrow.webp'); /* Replace with the path to your left-arrow SVG */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fancybox__content {
    align-items: center !important;
}

.tp-rightarrow.metis:before {
    background-image: url('/frontend/img/slider-right-arrow.webp'); /* Replace with the path to your right-arrow SVG */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #060D3B;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

#loading-screen img {
    width: 250px;
    height: auto;
    animation: zoomInOut 1.5s infinite ease-in-out;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}


