.text-white {
    color: #fff;
}
body.loader-active {
    overflow: hidden;
    height: 100vh;
    background-color: #000;
    position: relative;
}
body.loader-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: none;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -24px;
    margin-left: -24px;
    z-index: 9999;
}
body.loader-active .loader {
    display: inline-block;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.box_product {
    margin-bottom: 30px;
}
.main_menu_2_logo {
    margin-top: 0;
}
.news_introduct_item .box-info {
    padding: 10px;
    border: 1px solid #ccc;
    border-top: 0;
}
.news_introduct_item {
    box-shadow: 0;
    padding-bottom: 0;
    margin-bottom: 20px;
}
.logo-text {
    color: red;
}