
.service-element {
    transition: all .2s ease-in-out;
}

.service-element:hover, .service-element.active {
    transform: scale(1.1);
    background-color: rgb(128 128 128 / 6%);
}

.service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    position: absolute;
    transition: height 1s, width 1s, padding 1s, visibility 1s, opacity 0.5s ease-out;
}

#slider {
    -webkit-box-shadow: inset 0px 1px 51px 60px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px 1px 51px 60px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 1px 51px 60px rgba(255, 255, 255, 1);
    background-image: url("images/mdb/world.svg");
    background-size: cover;
    -webkit-animation: slidein 100s;
    animation: slidein 100s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;

    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes slidein {
    from {
        background-position: top;
        background-size: 3000px;
    }
    to {
        background-position: -100px 0px;
        background-size: 2750px;
    }
}

@keyframes slidein {
    from {
        background-position: top;
        background-size: 3000px;
    }
    to {
        background-position: -100px 0px;
        background-size: 2750px;
    }
}

/* Move reCAPTCHA v3 badge to the left */

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
}
.grecaptcha-badge:hover {
    width: 256px !important;
}