/*  dropdoen of contact us */

.iti__country {
    padding: 5px 10px;
    outline: none;
    color: #fffefd !important;
    /* background: black; */
    background: #0d0c22 !important;
}

.iti__country.iti__highlight {
    background-color: #fffedf !important;
    color: #0C78F3 !important;
}

.iti.iti--allow-dropdown {
    width: 100%;
}

/* Input type tel */

#phone {
    padding-left: 48px;
}

/* responsive css */
@media only screen and (max-width: 767px) {
    .whatsapp-chat {
        width: 30px;
    }
}


/* associated section */

.associated.featured-client .featured-client-wrap .featured-client-inner .grid-image-wrap .image-wrap img {
    margin: 0 auto;
    width: auto;
    height: 100px;
    display: block;
    object-fit: contain;
    padding: 0 10px;
}

.associated.featured-client .featured-client-wrap .featured-client-inner .grid-image-wrap {
    white-space: nowrap;
    animation: scrollingText 15s linear infinite;
}

@media screen and (max-width: 767px) {
    .associated.featured-client .featured-client-wrap .featured-client-inner .grid-image-wrap {
        white-space: nowrap;
        animation: none;
    }
}

@keyframes scrollingText {
    0% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }

    100% {
        transform: translateX(-35%);
        -webkit-transform: translateX(-40%);
    }
}