.front-socials__items {
    position: relative;
    overflow: hidden;
    user-select: none;
}

.front-socials__items + .front-socials__items {
    margin-top: 20px;
}

.front-socials__items-wrap {
    flex-shrink: 0;
    justify-content: space-around;
    min-width: 100%;
}

.front-socials__items-wrap.marquee {
    animation: scroll 200s linear infinite;
}

.front-socials__items-wrap.reverce {
    animation-direction: reverse;
}

.front-socials__items:hover .front-socials__items-wrap.marquee {
    animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-80% - 20px));
  }
}

.front-socials__item {
    flex-shrink: 0;
    width: 200px;
    height: 80px;

    transform: scale(1);
    transition: transform 0.2s ease-in;
}

.front-socials__item:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.front-socials__item.min {
    width: 80px;
}

.front-socials__item:not(.min) {
    flex-grow: 1;
}

.front-socials__item-inner {
    width: 100%;
    height: 100%;
    padding: 15px 12%;
}

.front-socials__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


@media (max-width: 1199px) {
    .front-socials__item {
        width: 160px;
        height: 64px;
    }

    .front-socials__item.min {
        width: 64px;
    }

    .front-socials__item-inner {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .front-socials__items + .front-socials__items {
        margin-top: 10px;
    }

    .front-socials__item {
        width: 125px;
        height: 50px;
    }

    .front-socials__item.min {
        width: 50px;
    }
}