.logo {
    width: 200px;
}

#newseletter-input {
    outline: none;
    color: black;
}

#newseletter-input::placeholder {
    color: black;
}

.hero-banner {
    height: calc(100vh - 103px);
}

.dot {
    animation: mymove 2s infinite;
}

@keyframes mymove {
    from {
        margin-top: 6px;
        opacity: 0;
    }

    to {
        margin-top: 38px;
        opacity: 1;
    }
}

/* Clients Logos Scrolling */
/* .logo-slider {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 10px 0;
    background: #fff;
}

.logo-track {
    animation: scroll 10s linear infinite;
}

.logo-track img {
    height: 80px;
    margin: 0 30px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-80%);
    }
} */

/* Clients */
.clientsSwiper {
    width: 100%;
    height: 100%;
    pointer-events: none !important;
    user-select: none !important;
    touch-action: none !important;
}

.clientsSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
}

.clientsSwiper .swiper-slide img {
    width: 150px;
}

.masonry {
    column-count: 3;
    column-gap: 1em;
    /* padding: 1em; */
}

.masonry div {
    width: 100%;
    display: block;
    margin-bottom: 1em;
    break-inside: avoid;
    /* Prevent image splitting */
    /* border-radius: 8px; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hero */
.hero-img {
    position: absolute;
}

@media (max-width: 1023px) {
    .hero-img-1 {
        top: -100px;
        left: -100px;
        width: 250px;
    }

    .hero-img-2 {
        bottom: -150px;
        left: -150px;
        width: 300px;
    }

    .hero-img-3 {
        top: -80px;
        right: -150px;
        width: 300px;
    }

    .hero-img-4 {
        bottom: -80px;
        right: -100px;
        width: 300px;
    }

    .word {
        font-size: 50px;
    }
}

@media (min-width: 1023px) {

    .hero-img-1 {
        top: -200px;
        left: -150px;
        width: 550px;
    }

    .hero-img-2 {
        bottom: -200px;
        left: -200px;
        width: 600px;
    }

    .hero-img-3 {
        top: -110px;
        right: -220px;
        width: 600px;
    }

    .hero-img-4 {
        bottom: -100px;
        right: -220px;
        width: 600px;
    }

    .word {
        font-size: 60px;
    }
}

.word-container {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    margin-top: -200px;
}

.word {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease;
}