:root{
    --ldp-color: #eb5e08;
    --white: #ffffff;
    --black: #000000;
    --none: transparent;
}
.shake-animation{
    animation: move-shaking 1.2s linear infinite;
}
@keyframes move-shaking {
    0% {
        transform: translate(0) rotate(0)
    }

    25% {
        transform: translate(3px,3px) rotate(3deg)
    }

    50% {
        transform: translate(0) rotate(0)
    }

    75% {
        transform: translate(-3px,3px) rotate(-3deg)
    }

    to {
        transform: translate(0) rotate(0)
    }
}
.ldp-hanwha-image-footer p{
    text-align: center;
}
.ldp-hanwha-image-footer p img{
    height: 30px;
    object-fit: contain;
    width: 165px;
}
.fixed-header{
    position: fixed;
    height: 80px;
    z-index: 999;
    margin-bottom: 30px;
}
.ldp-hanwha-menu ul li{
    list-style: none;
    display:inline-block;
}
.ldp-hanwha-menu ul li a{
    color: #fff;
}
.ldp-hanwha-menu{
    text-align: center;
    margin-top: 30px;
}
.no-padding .col{
    padding-bottom: 0;
}
@media (max-width:48rem){
    /* Responsive customize here */
    .fixed-header{
        height: 100px;
    }
}