.fixed-btn-icon {
    position: relative;
    z-index: 99999;
}

.fixed-btn-icon a {
    position: fixed;
    bottom: 36px;
    left: 14px;

    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    background-color: #19731f;
    opacity: .8;
    transition: all 0.4s;
    animation: bgZoomInOut 1s alternate infinite;
    border: 1px solid #fff;
}

.fixed-btn-icon a:hover {
    opacity: 1;
}

@keyframes bgZoomInOut {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 32, 80, 0.2);
        transform: rotate(10deg);
    }

    20% {
        box-shadow: 0 0 0 2px rgba(0, 32, 80, 0.2);
    }

    40% {
        box-shadow: 0 0 0 4px rgba(0, 32, 80, 0.2);
        transform: rotate(-10deg);
    }

    60% {
        box-shadow: 0 0 0 6px rgba(0, 32, 80, 0.2);
    }

    80% {
        box-shadow: 0 0 0 8px rgba(0, 32, 80, 0.2);
        transform: rotate(10deg);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 32, 80, 0.2);
    }
}

header .top-header {
    padding: 8px 0;
    background: -webkit-linear-gradient(left, #ff4c00, #ff9200, #ff4c00);
}

header .top-header .left-content {
    display: flex;
    align-items: center;
}

header .top-header .left-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 14px;
    color: #fff;
}

header .top-header .left-content a:last-child {
    margin-right: 0;
}

header .top-header .left-content a svg {
    width: 16px;
    height: 16px;
    padding: 6px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
}

header .top-header .right-content {
    text-align: end;
}

header .top-header .right-content a {
    text-decoration: none;
    color: #fff;
    padding: 3px 7px 3px 50px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    margin-right: 6px;
    position: relative;
    align-items: center;
    background: #000;
    border-radius: 4px;
}

header .top-header .right-content a svg {
    background: #fff;
    color: #000;
    padding: 4px;
    border-radius: 50%;
    width: 11px;
    height: 11px;
    position: absolute;
    left: 12px;
    top: 50%;

    transform: scale(1.6) translateY(-36%);

}

@media (max-width:992px) {
    header .top-header .left-content {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    header .top-header .right-content {
        text-align: center;
    }
}

@media (max-width:568px) {
    header .top-header .left-content a {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        letter-spacing: 0px;
        margin-right: 5px;
        color: #000;
    }

}

header .main-navigation {
    padding: 14px 0;
}

header .main-navigation img {
    width: 100%;
    height: 100%;

}


.btm-header {
    padding: 14px 0;
    background-color: #000;
}


.btm-header marquee {
    color: #fff;
    height: 100%;
}

.btm-header marquee {
    text-transform: capitalize;
}



/**/
.list-columns {
    border-bottom: 1px solid #ffda26;
    border-top: 1px solid #ffda26;
    margin: -8px 0 0 0;
    background: -webkit-linear-gradient(left, #ff4c00, #ff9200, #ff4c00);

}

.list-columns p {
    color: #000000;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    margin: 5px 0 -5px 0;
}

.card-icon-top {
    border-right: 1px solid #ffffff6b;
    padding: 5px 0 10px 0;
    text-align: center;
}
.card-icon-top p{
    color: #fff;
}

.list-columns span {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
}

.list-columns .col-lg-1 {
    padding: 0 4px;
}

.list-columns .container-fluid {
    max-width: 1365px;
}

.card-icon-top img {
    animation: zoom-in-zoom-out 2s ease-out infinite;
    width: 28px;
    margin-top: 7px;
    margin-bottom: 5px;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.5, 1.5);
    }

    100% {
        transform: scale(1, 1);
    }
}


@media (max-width:992px) {
    header .mid-header .right-content {
        text-align: center;
    }

    header .mid-header .left-content {
        text-align: center;
        position: relative;
    }

}

@media (max-width:568px) {
    header .mid-header .right-content a {
        margin-right: 4px;
        gap: 5px;
        letter-spacing: 0;
        padding: 6px 8px;
    }
}