﻿.banner-section .container {
    position: relative;
    z-index: 3;
}
.banner-section .shape {
    position: absolute;
    bottom: 0;
    right: -300px;
    width: 200px;
    -webkit-animation: run 20s linear infinite;
    animation: run 20s linear infinite;
}
  
@media (max-width: 991px) {
    .banner-section .shape {
        width: 150px;
        animation: run 15s linear infinite;
    }
}

@media (max-width: 767px) {
    .banner-section .shape {
        width: 130px;
        animation: run 10s linear infinite;
    }
}

.banner-section .shape img {
    width: 100%;
}

@-webkit-keyframes run {
    100% {
        right: -300px;
    }

    0% {
        right: calc(100% + 300px);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes run {
    100% {
        right: 0;
    }

    0% {
        right: 100%;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.dropdown-item-button {
    padding: 0rem 0rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
