.fixed-btn-icon {
    position: relative;
    z-index: 99999;
}

.fixed-btn-icon a {
    position: fixed;
    bottom: 36px;
    right: 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);
    }
}

.top-bar {
    margin: 0;
    background: #000;
    overflow: hidden;
}

.top-bar ul.icons {
    margin: 0;
    padding: 6px 0;
    list-style: none;
}

.top-bar ul.icons li {
    margin-right: 10px;
    padding: 0;
    display: inline-block;
}

.top-bar ul.icons li:last-child {
    margin-right: 0;
}

.top-bar ul.icons li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.top-bar ul.icons li a svg {
    color: #000;
    background: linear-gradient(to bottom, #0f3c12 0%, #19731f 100%);
    padding: 10px;
    background: #fed001;
    width: 18px;
    height: 18px;
    border-radius: 0 10px 0 10px;
    transition: 0.8s;
}

.top-bar ul.icons li a:hover i {
    border-radius: 10px 0px 10px 0px;
}

.top-bar .center-box strong {
    color: #fed001;
    justify-content: center;
    font-size: 26px;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 600;
    height: 100%;
    display: flex;
    align-items: center;
    animation: zoom 1s infinite alternate;
}

@keyframes zoom {
    0% {
        transform: scale(.9);
        color: #fed001;
    }

    50% {
        transform: scale(1.2);
        color: #e40000;
    }

    100% {
        transform: scale(0.9);
        color: #fed001;
    }
}

.header-part {
    position: relative;
}

.header-part .logo img {
    width: 100%;
    height: 100%;
}


.mar-part {
    background: #000;
    padding: 10px 0;
}

.mar-part ul.list-icons {
    padding: 0;
    margin: 0;
    text-align: center;
}

.mar-part ul.list-icons li {
    width: 15%;
    height: 80px;
    background: #fff;
    transition: 0.5s;
    padding: 8px 9px;
    font-size: 13px;
    display: inline-block;
    border-radius: 5px;
    transition: 0.6s;
}

.mar-part ul.list-icons img {
    width: 100%;
    height: 100%;
}

.mar-part .right-text {
    background: #fed001;
    padding: 5px 10px 0 10px;
    border-radius: 40px 0 0 40px;
    border: solid 2px #fff;
    border-right: 0;
    position: relative;
    right: -12px;
}

.mar-part .right-text .marq-text {
    font-size: 18px;
    color: #000;
    padding-bottom: 4px;
    font-weight: 500;
}

.header-link {
    background-color: #000;
    padding: 14px 0;
}

.header-link .navbar .nav-item a {
    padding: 10px 20px;
    margin-right: 10px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s;
}

.header-link .navbar .nav-item:hover a {
    color: #fed001;
}


.header-link .navbar .nav-item a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 1px;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s;
}

.header-link .navbar .nav-item:hover a::before {
    width: 100%;
}

.header-link .call-btn a {
    padding: 10px 20px;
    border-radius: 20px 4px;
    background-color: #fed001;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s;
    display: inline-block;
}

.header-link .call-btn a svg {
    margin-right: 10px;
    color: #19731f;
    animation: iconZoom .6s infinite alternate;
}

@keyframes iconZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.6);
    }

    100% {
        transform: scale(1);
    }
}

.header-link .call-btn a:hover {
    background-color: #e40000;
    color: #fff;
    transform: scale(1.1);
}

.header-link .navbar-toggler:focus {
    box-shadow: none;
}

.header-link .navbar-toggler svg {
    color: #fff;
    width: 20px;
    height: 20px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #fff;
    box-shadow: none;
}

@media (min-width:992px) and (max-width:1200px) {
    .top-bar ul.icons li a {
        font-size: 16px;
    }

    .header-link .navbar .nav-item a {
        padding: 10px 10px;
    }

    .mar-part ul.list-icons li {
        width: 18%;
        height: 50px;
        padding: 4px;
    }

    .mar-part ul.list-icons li:last-child {
        display: none;
    }
}

@media (max-width: 991px) {
    .top-bar {
        text-align: center;
        padding-top: 10px;
    }

    .top-bar .top-mr {
        font-size: 16px;
        padding: 10px;
        border-radius: 100px;
        border: 2px solid #fff;
        height: auto;
        margin-bottom: 20px;
    }

    .mar-part ul.list-icons li {
        margin-bottom: 5px;
    }

    .mar-part .right-text {
        position: unset;
        border-radius: 100px;
    }
}

@media (max-width: 767px) {
    .mar-part ul.list-icons li {
        width: 32%;
        height: 100px;
        padding: 4px;
    }
}

@media (max-width: 568px) {
    .top-bar ul.icons li {
        margin-right: 6px;
        padding: 0;
        display: inline-block;
    }

    .top-bar ul.icons li a {
        font-size: 13px;
        gap: 6px;
    }

    .top-bar ul.icons li a svg {
        padding: 6px;
    }

    .mar-part ul.list-icons li {
        width: 32%;
        height: 90px;
    }

}

@media (max-width: 468px) {
    .mar-part ul.list-icons li {
        width: 32%;
        height: 80px;
    }
}