﻿.blog-image {
    width: 100%;
    max-height: 192px;
    object-fit: cover;
}

.menu-container {
    background-color: #1839ba;
    color: #fff;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 88px;
    z-index: 99;
}

.main-project-containar {
    background-color: #1b38ba;
}

.bg-gold {
    background-color: #bc9e1c;
}

    .bg-gold:hover {
        background-color: #aa8e10;
    }

.footer-content {
    background: #1b38ba;
}

.footer-company-info {
    background-color: #132a91;
}

.menu-popup-bg-color {
    background-color: #132e95;
}

.metazom-intro {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #1839ba;
}

    .metazom-intro img {
        width: 150px;
        margin: auto;
        position: relative;
        top: calc(45% - 75px);
    }

    .metazom-intro div {
        width: 100%;
        text-align: center;
        color: #fff;
        position: relative;
        top: 37%;
    }

    .metazom-intro span {
        display: block;
        width: 100%;
        text-align: center;
        color: #fff;
        position: relative;
        top: 37.5%;
    }

.loader {
    width: 20px;
    height: 12px;
    display: block;
    margin: auto;
    position: relative;
    border-radius: 4px;
    color: #FFF;
    background: currentColor;
    box-sizing: border-box;
    animation: animloader 0.6s 0.3s ease infinite alternate;
    top: 40%;
}

    .loader::after,
    .loader::before {
        content: '';
        box-sizing: border-box;
        width: 20px;
        height: 12px;
        background: currentColor;
        position: absolute;
        border-radius: 4px;
        top: 0;
        right: 110%;
        animation: animloader 0.6s ease infinite alternate;
    }

    .loader::after {
        left: 110%;
        right: auto;
        animation-delay: 0.6s;
    }

@keyframes animloader {
    0% {
        width: 20px;
    }

    100% {
        width: 48px;
    }
}
