body {
    font-family: "Campton", sans-serif;
}

* {
    scroll-behavior: smooth;
}

.clients img {
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.clients img:hover {
    filter: grayscale(0);
    cursor: pointer;
}

.hero-bg {
    background-image: url('../img/hero/bg_hero.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#hero_careers {
    background-image: url('../img/hero/bg-career.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100vh;
}

.mapouter {
    position: relative;
    text-align: right;
    width: 100%;
    height: 284px;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 284px;
}

.gmap_iframe {
    height: 284px !important;
}

.button-bg {
    background: linear-gradient( 45deg, #121212, #121212, #a9a9a9, #121212, #121212);
    background-size: 1000% 1000%;
    -webkit-animation: buttonAnimate 23s ease infinite;
    -moz-animation: buttonAnimate 23s ease infinite;
    animation: buttonAnimate 23s ease infinite;
}

@-webkit-keyframes buttonAnimate {
    0% {
        background-position: 0% 56%;
    }
    50% {
        background-position: 100% 45%;
    }
    100% {
        background-position: 0% 56%;
    }
}

@-moz-keyframes buttonAnimate {
    0% {
        background-position: 0% 56%;
    }
    50% {
        background-position: 100% 45%;
    }
    100% {
        background-position: 0% 56%;
    }
}

@keyframes buttonAnimate {
    0% {
        background-position: 0% 56%;
    }
    50% {
        background-position: 100% 45%;
    }
    100% {
        background-position: 0% 56%;
    }
}

.text-blue {
    color: #2BACDE;
}

.zoom {
    transition: transform .5s;
    /* Animation */
}

.zoom:hover {
    transform: scale(1.05);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    cursor: pointer;
    background-color: #2BACDE;
    box-shadow: 3px 2px 6px 0px rgba(0, 0, 0, 0.158);
}

@media screen and (min-width:200px) and (max-width:900px) {
    #about_img {
        margin: 0 !important;
        width: 100% !important;
    }
}