#header {
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.product-card-img {
    aspect-ratio: 16/11;
    object-fit: cover;
    width: 100%;
}

.product-card {
    min-height: 500px;
    /*max-height: 550px;*/
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mission-vision-home-card {
    position: absolute;
    left: 9%;
    top: -12%;
    height: 124.5%;
    width: 40%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(200px);
    -webkit-backdrop-filter: blur(200px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}


.Btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.11);
}

.svgIcon {
    fill: rgb(214, 178, 255);
}

.icon2 {
    width: 18px;
    height: 5px;
}

.Btn:hover {
    background-color: var(--secondary);
    transition-duration: .3s;
}


@keyframes slide-in-top {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}


.tag-btn {
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.8rem;
}

.tag-btn.active {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: white;
}

.tag-btn:not(.active) {
    border: 1px solid #F0F0F5;
    background-color: #f1f1f1;
    color: #555;
}

.search-wrapper {
    border: 1px solid #DDDDE8;
    border-radius: 50px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    background-color: transparent;
}

.search-icon {
    width: 40px;
    height: 33.5px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 10px;
}

.search-icon i {
    color: white;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #888;
}

.search-input::placeholder {
    color: #bbb;
}

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

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

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

.disable-div {
    opacity: 0.4;
    pointer-events: none;
}

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


/*Small devices (mobiles, 576px and down)*/
@media (max-width: 576px) {
}

/*Medium devices (tablets, 768px and down)*/
@media (max-width: 768px) {
}

/*Large devices (desktops, 992px and down)*/
@media (max-width: 992px) {
    .mission-vision-home-card {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }

}

/*X-Large devices (large desktops, 1200px and down)*/
@media (max-width: 1200px) {
}

/*XX-Large devices (larger desktops, 1400px and down)*/
@media (max-width: 1400px) {
}

