.home-testimonial-text{
    height: 130px;
}

.privacy {
    color:  #158C00 !important;
    text-decoration: underline;
}


.site:hover {
    color:  #158C00 !important;
}

.checkbox-form .checkbox{
    margin-top: -14px;
}

/* Cookies banner custom styles */
.cookiesBtn__link {
    background: #158C00 !important;
}

#cookies-policy .cookies__category input:checked+.cookies__box:after {
    background: #158C00 !important;
}

.vist-cookies-policy a{
    color: #158C00 !important;
    font-size: 12px;
}


.vist-cookies-policy a:hover{
    color: #FE7402 !important;
    cursor: pointer;
}
/* Cookies banner custom styles ends*/


/* Slider Testimonal styles */
.testimonal_image{
    border: 1px solid #158C00;
    border-radius: 50%;
    width: 100px !important;
}
/* Slider Testimonal styles ends*/


/* Google Translate styles */
/* Hide Google Translate branding */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-gadget span {
    display: none;
}

/* Style the dropdown container */
#translate-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
    margin-left: 20px;
}

/* Custom styling for the dropdown */
#google_translate_element select {
    padding: 5px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* Google Translate styles ends*/


/* phone number form fiel in enquiry form */
.iti {
    width: 100%;
}

.iti input {
    width: 100% !important;
}
/* phone number form fiel in enquiry form ends */


.linkedin_url_btn:hover{
    color: #158C00 !important;
}

.team-member-bio{
    height: 100px;
}

@media screen and (max-width: 768px) {
    #translate-container{
        margin-top: 15px;
        margin-left: 0px  !important;
    }
}


.logo-slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Logo slider */
.logo-strip {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(250px * 12); /* Total width of all logos */
}

.logo-item {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.brand-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Duplicate the logo strip for seamless looping */
.strip-container {
    display: flex;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6)); /* Half of the total width */
    }
}

/* Pause animation on hover */
.logo-strip:hover {
    animation-play-state: paused;
}

/* Gradient overlay to hide the edges */
.logo-slider-wrapper::before,
.logo-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50px;
    z-index: 2;
}

.logo-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}
