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

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 20px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

section#header {
    background-color: #ffffff;
    width: 100%;
    height: 65px;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
}

section#header b {
    font-size: 4.5px;
    top: 22px;
    right: 16px;
    position: fixed;
}

.brand {
    right: 390;
}

.brand img {
    position: fixed;
    top: 0;
    left: 1px;
}

center hr {
    width: 1200px;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px;
    /* Increased margin */
}

.image-item img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* Added border-radius for rounded corners */
}

.image-item {
    width: 38.65%;
    position: relative;
    margin: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.image-item:hover {
    transform: scale(1.045);
}

@media screen and (max-width: 750px) {
    .image-item {
        width: 99%;
        margin: 10px;
    }

    .image-item:hover {
        transform: scale(1.05);
    }
}

@media screen and (min-width: 750px) and (max-width: 840px) {
    .image-item {
        width: 47%;
        margin: 10px;
    }

    .image-item:hover {
        transform: scale(1.035);
    }
}


.footer {
    direction: ltr;
}

.rhr {
    margin-top: 14px;
}
