.logo h6 {
    font-size: 18px;
    margin: auto;
}
.scroll-animation.scroll-right-left {
    -webkit-animation: scroll 80s linear infinite;
    -moz-animation: scroll 80s linear infinite;
    animation: scroll 80s linear infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.scroll-animation {
    display: flex;
    width: -webkit-calc((420px * 16) + (30px * 16));
    width: -moz-calc((420px * 16) + (30px * 16));
    position: relative;
    margin-bottom: 30px;
}
.team-area .space{
    padding-bottom: 50px;
}
.blog-content p{
    color:white
}
.single-column{
      width: 320px;
}
.scroll-animation.scroll-left-right {
    -webkit-animation: scrollLeft 80s linear infinite;
    -moz-animation: scrollLeft 80s linear infinite;
    animation: scrollLeft 80s linear infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-webkit-calc(-250px * 7));
        -moz-transform: translateX(-moz-calc(-250px * 7));
        transform: translateX(-2510px);
    }
}
@keyframes scrollLeft {
    0% {
        -webkit-transform: translateX(-webkit-calc(-250px * 7));
        -moz-transform: translateX(-moz-calc(-250px * 7));
        transform: translateX(-2510px);
    }
    to {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
}
.category-list{
    height:105px
}
@media (max-width: 991px) {
/* .col-auto {
    width: 100%;
} */
}
ol.newsletter {
    list-style: none;
    counter-reset: my-counter;
    padding-left: 0;
}

ol.newsletter li {
    counter-increment: my-counter;
    margin: 10px 0;
    padding-left: 40px;
    position: relative;
	border-bottom: 1px solid #d5d5d5;;
    padding-bottom: 15px;
}
	ol.newsletter li a{
       font-size: 20px;
    color: black;
}
ol.newsletter li a:hover {
	color: var(--theme-color);
}
ol.newsletter li::before {
    content: counter(my-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--theme-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
	    font-size: 14px;
}
 @media (max-width: 1380px) and (min-width: 1200px) {
.header-links li:not(:last-child){
	padding: 0 7px 0 0;
}
	     .header-layout1 .header-top .header-links.header-right li:first-child {
        padding-right: 0px;
    }
}