.light-to-dark{
    background: linear-gradient(to bottom, #000000, #0B192C);
}

.light-to-dark-2{
    background: linear-gradient(to right, #000000, #0B192C);
}

.dark-to-light{
    background: linear-gradient(to bottom, #0B192C, #000000);
}

.light-bg{
    background: #000000;
}
.dark-bg{
    background: #0B192C;
}

.br-8{
    border-radius: 8px !important;
}

.custom-list{
    padding: 15px 10px;
    border-bottom: 1px solid #c31432;
    margin-bottom: 5px;
    color: #c31432;
    /* border-radius: 4px; */
}

.text-red{
    color: #c31432 !important;
}

.client-slider-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.client-slider .slide-track {
    display: flex;
    width: calc(250px * 16);
    /* 16 items */
    animation: scroll-left 40s linear infinite;
}

.client-item {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* filter: grayscale(100%); */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover {
    filter: none;
    opacity: 1;
}

.client-item img {
    max-width: 100%;
    height: auto;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.text-justify{
    text-align: justify;
}

.floating_btn {
    position: fixed;
    bottom: 60px;
    right: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.floating_btn_download {
    position: fixed;
    bottom: 180px;
    right: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.contact_icon_download {
    background-color: #c31432;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #c31432;
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}

.news-block .lower-content-home {
    padding: 20px 10px 20px;
}