@media screen and (max-width: 767px){
    .navbar{
        background-color: #ffffff;
        padding: 0;
        /* position: fixed !important; */
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }
    .navbar-light .navbar-toggler-icon{
        filter: invert(1);
    }
    .menu-btn a{
        background: red;
        color: #fff;
        font-weight: 600;
        text-transform: capitalize;
        padding: 6px 16px;
        font-size: 12px;
        border-radius: 35px;
    }
    .menu-btn a.login{
        background: green;
    }
    .demo-btn a {
        background: #0e684e;
        color: #fff;
        font-weight: 600;
        text-transform: capitalize;
        padding: 7px 13px;
        font-size: 15px;
    }
    .menu-btn{
        text-align: right;
    }
    .logo-section img {
        width: 150px;
    }
    .navbar-toggler{
        padding: 0;
    }
    .navbar{
        padding: 5px 8px 5px !important;
    }
    .demo-id{
        color: #c3c3c3;
        font-weight: 400;
        text-align: right;
        font-size: 12px;
        text-decoration: underline !important;
    }
    .mobile-switch-theme {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 0px;
    }
.news-bar {
    padding: 0;
    padding-left: 3px;
    margin-bottom: 0;
    width: 80%;
    height: 30px;
    max-width: calc(100% - 5px);
}
.demo-btn{
    margin-left: 3px;
}
.news-bar {
    width: calc(100% - 65px);
    max-width: 100%;
}
.news-bar marquee {
    width: calc(100% - 25px);
}
.wolf-open-home .center-main-content .switch-theme {
    margin-left: 5px;
    margin-right: 0;
}
    .navbar-collapse {
        z-index: 99;
        width: 100%;
        left: 0;
        margin-top: 25px;
    }
    .navbar-nav {
        width: 100%;
        background: #16191c;
        padding-left: 13px !important;
        height: 400px;
        overflow-y: scroll;
    }
    .navbar-nav .nav-item {
        text-align: center;
        padding: 5px 0;
    }
    .navbar-nav .dropdown {
        text-align: center;
        padding: 10px 0;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu{
        position: static;
        width: 100%;
        text-align: center;
    }
    .humburger{
        display: none;
    }
    .header{
        display: none;
    }
    .animate-part{
        display: none;
    }
    .carousel {
        margin-top: 0px;
    }
    .style-text2 {
        font-size: 75px;
    }
    .style-text {
        font-size: 55px;
    }
    .carousel-caption h2 {
        font-size: 40px;
    }
    .carousel-caption p {
        font-size: 20px;
    }
    .carousel-caption {
        top: 45%;
    }
    .sec-title3{
        margin-top: 0px;
    }
    .about-img{
        margin-top: 70px;
    }
    .why-choose-section{
        padding: 50px 0;
    }
    .rs-videos.choose-video{
        padding-right: 0;
        margin: 40px 0;
    }
    .rs-counter.style1 .counter-border-top{
        margin-top: 10px;
    }
    .counter-area{
        margin-bottom: 25px;
    }
    .services-area .container{
        padding-left: 0;
        padding-right: 0;
    }
    .services-bg2 {
        padding: 50px 30px 90px 30px;
    }
    .services-area {
        padding: 0px 0;
    }
    .sect-title {
        font-size: 33px;
    }
    .faq-content-wrapper {
        padding-right: 0px;
    }
    .faq-img-wrapper {
        margin-top: 20px;
    }
    .sect-title2{
        font-size: 40px;
    }
    .blog-area .owl-nav{
        display: none !important;
    }
    .blogs{
        padding-bottom: 0;
    }
    
    .ss_div {
        position: relative;
    }
        .home-animated {
        padding: 3px 12px;
        letter-spacing: 0;
        font-size: 10px;
        bottom: 10px;
        left: 10px;
    }
}

.home-animated {
    font-weight: 700;
    letter-spacing: 1px;
    position: absolute;
    padding: 5px 15px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    border-radius: 3px;
    background: #167abf;
    left: 11px;
    bottom: 11px;
    font-size: 10px;
    text-transform: uppercase;
    animation: zoom-in-zoom-out 1s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.home-animated span]:first-child {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    border-radisu: 10px;
    background: linear-gradient(90deg, #fff400, #fff);
    animation: animate1 2s linear infinite;
}
@keyframes animate1{
    0% {
        transform: translateX(-100%);
    }
    
    100% {
        transform: translateX(100%);
    }
}

.home-animated span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #05fb33, #fff);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2{
    0% {
        transform: translateY(-100%);
    }
    
    100% {
        transform: translateY(100%);
    }
}

.home-animated span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(270deg, #ff7d88, #fff);
    animation: animate3 2s linear infinite;
}
@keyframes animate3{
    0% {
        transform: translateX(100%);
    }
    
    100% {
        transform: translateX(-100%);
    }
}

.home-animated span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(0deg, #05d8fb, #fff);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4{
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

}