
.panda_head_box {
    background: var(--bg_color);
    color: white;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    margin-top: -20px;
    padding: 100px 0;
    margin-bottom: 20px;
}

.panda-head_info_post_title {
    color: #fff;
    font-weight: 700;
    font-size: 2.3rem;
    line-height: 1.2;
    text-align: center;
    margin: 1rem 0 1rem 0 !important;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.panda-tags-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mulu_one_two {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mulu_one_two span {
    display: inline-flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 7px 10px;
    margin-right: 5px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
}

.mulu_one_two span:hover {
    background-color: #fff;
    color: var(--focus-color) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tags {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.tags span {
    color: white;
    opacity: .8;
    padding: 7px 10px;
    margin-right: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tags a{
    color: white;
}

.tags span:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 7px 10px;
    border-radius: 10px;
}

.panda_footer_meta {
    display: flex;
    align-items: center;
    color: #b3bdf9;
    font-size: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.panda_footer_meta span {
    margin-right: 10px;
}

.tags span::before {
    font-size: 14px;
    content: "#";
    color: white;
    font-weight: bold;
    margin-right: 5px;
    opacity: .4;
}

.panda_waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8vh;
    margin-bottom: 0;
    min-height: 50px;
    max-height: 100px;
    z-index: 100;
    overflow: hidden;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media screen and (min-width:768px) and (max-width:1024px) {
    .panda_head_box {
        padding: 50px;
        height: calc(100% - 30px);
        width: 100%;
    }
}

@media screen and (min-width:1025px) {
    .panda_head_box {
        padding: 100px;
        height: calc(100% - 30px);
        width: 100%;
    }

    .panda_footer_meta {
        gap: 5px;
    }
}

@media screen and (max-width:767px) {
    .panda_head_box {
        padding: 20px;
        min-height: 14.5pc;
    }

    .panda-tags-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .panda-head_info_post_title {
        text-align: center;
        margin: 10px 0;
    }

    .panda_footer_meta {
        justify-content: center;
        padding: 0 5px;
        margin-top: 10px;
    }

    .tags {
        display: none;
    }
}